네임스페이스:ReactiveTests
어셈블리: Tests.System.Reactive(Tests.System.Reactive.dll)
구문
'Declaration
<ExtensionAttribute> _
Public Shared Function Schedule ( _
scheduler As TestScheduler, _
action As Action, _
time As Long _
) As IDisposable
'Usage
Dim scheduler As TestScheduler
Dim action As Action
Dim time As Long
Dim returnValue As IDisposable
returnValue = scheduler.Schedule(action, _
time)
public static IDisposable Schedule(
this TestScheduler scheduler,
Action action,
long time
)
[ExtensionAttribute]
public:
static IDisposable^ Schedule(
TestScheduler^ scheduler,
Action^ action,
long long time
)
static member Schedule :
scheduler:TestScheduler *
action:Action *
time:int64 -> IDisposable
public static function Schedule(
scheduler : TestScheduler,
action : Action,
time : long
) : IDisposable
매개 변수
- scheduler
형식: Microsoft.Reactive.Testing.TestScheduler
- action
형식: System.Action
- time
형식: System.Int64
반환 값
사용 정보
Visual Basic 및 C#에서는 TestScheduler 형식의 모든 개체에서 이 메서드를 instance 메서드로 호출할 수 있습니다. 인스턴스 메서드 구문을 사용하여 이 메서드를 호출할 경우에는 첫 번째 매개 변수를 생략합니다. 자세한 내용은 또는 를 참조하세요.