共用方式為


DispatchSource.Timer 建構函式

定義

多載

DispatchSource.Timer(DispatchQueue)

建立會定期叫用的計時器分派來源。

DispatchSource.Timer(IntPtr)
DispatchSource.Timer(Boolean, DispatchQueue)
DispatchSource.Timer(IntPtr, Boolean)

DispatchSource.Timer(DispatchQueue)

建立會定期叫用的計時器分派來源。

public Timer (CoreFoundation.DispatchQueue queue = null);
new CoreFoundation.DispatchSource.Timer : CoreFoundation.DispatchQueue -> CoreFoundation.DispatchSource.Timer

參數

queue
DispatchQueue

這個分派來源物件的目標佇列。   傳遞 null 以使用預設目標佇列 (預設優先順序的全域並行佇列) 。

適用於

DispatchSource.Timer(IntPtr)

public Timer (IntPtr handle);
new CoreFoundation.DispatchSource.Timer : nativeint -> CoreFoundation.DispatchSource.Timer

參數

handle
IntPtr

nativeint

適用於

DispatchSource.Timer(Boolean, DispatchQueue)

public Timer (bool strict = false, CoreFoundation.DispatchQueue queue = null);
new CoreFoundation.DispatchSource.Timer : bool * CoreFoundation.DispatchQueue -> CoreFoundation.DispatchSource.Timer

參數

strict
Boolean

適用於

DispatchSource.Timer(IntPtr, Boolean)

public Timer (IntPtr handle, bool owns);
new CoreFoundation.DispatchSource.Timer : nativeint * bool -> CoreFoundation.DispatchSource.Timer

參數

handle
IntPtr

nativeint

owns
Boolean

適用於