DispatcherExtensions.BeginInvoke 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在 Dispatcher 所建立的執行緒上,以非同步的方式,執行指定的委派。
多載
BeginInvoke(Dispatcher, Action) |
在特定 Dispatcher 所建立的執行緒上,以非同步的方式,根據一般優先權執行指定的委派。 |
BeginInvoke(Dispatcher, Action, DispatcherPriority) |
在特定 Dispatcher 所建立的執行緒上,以非同步的方式,根據特定優先權,執行指定的委派。 |
BeginInvoke(Dispatcher, Action)
在特定 Dispatcher 所建立的執行緒上,以非同步的方式,根據一般優先權執行指定的委派。
public:
[System::Runtime::CompilerServices::Extension]
static System::Windows::Threading::DispatcherOperation ^ BeginInvoke(System::Windows::Threading::Dispatcher ^ dispatcher, Action ^ action);
public static System.Windows.Threading.DispatcherOperation BeginInvoke (this System.Windows.Threading.Dispatcher dispatcher, Action action);
[System.ComponentModel.Browsable(false)]
public static System.Windows.Threading.DispatcherOperation BeginInvoke (this System.Windows.Threading.Dispatcher dispatcher, Action action);
static member BeginInvoke : System.Windows.Threading.Dispatcher * Action -> System.Windows.Threading.DispatcherOperation
[<System.ComponentModel.Browsable(false)>]
static member BeginInvoke : System.Windows.Threading.Dispatcher * Action -> System.Windows.Threading.DispatcherOperation
<Extension()>
Public Function BeginInvoke (dispatcher As Dispatcher, action As Action) As DispatcherOperation
參數
- dispatcher
- Dispatcher
執行委派的發送器。
- action
- Action
要執行的委派,該委派不使用任何引數而且不會傳回值。
傳回
IAsyncResult 物件,表示 BeginInvoke(Dispatcher, Action) 作業的結果。
- 屬性
例外狀況
action
為 null
。
適用於
BeginInvoke(Dispatcher, Action, DispatcherPriority)
在特定 Dispatcher 所建立的執行緒上,以非同步的方式,根據特定優先權,執行指定的委派。
public:
[System::Runtime::CompilerServices::Extension]
static System::Windows::Threading::DispatcherOperation ^ BeginInvoke(System::Windows::Threading::Dispatcher ^ dispatcher, Action ^ action, System::Windows::Threading::DispatcherPriority priority);
public static System.Windows.Threading.DispatcherOperation BeginInvoke (this System.Windows.Threading.Dispatcher dispatcher, Action action, System.Windows.Threading.DispatcherPriority priority);
[System.ComponentModel.Browsable(false)]
public static System.Windows.Threading.DispatcherOperation BeginInvoke (this System.Windows.Threading.Dispatcher dispatcher, Action action, System.Windows.Threading.DispatcherPriority priority);
static member BeginInvoke : System.Windows.Threading.Dispatcher * Action * System.Windows.Threading.DispatcherPriority -> System.Windows.Threading.DispatcherOperation
[<System.ComponentModel.Browsable(false)>]
static member BeginInvoke : System.Windows.Threading.Dispatcher * Action * System.Windows.Threading.DispatcherPriority -> System.Windows.Threading.DispatcherOperation
<Extension()>
Public Function BeginInvoke (dispatcher As Dispatcher, action As Action, priority As DispatcherPriority) As DispatcherOperation
參數
- dispatcher
- Dispatcher
執行委派的發送器。
- action
- Action
要執行的委派,該委派不使用任何引數而且不會傳回值。
- priority
- DispatcherPriority
委派的執行優先權,相對於 Dispatcher 事件佇列中其他暫止的作業。
傳回
IAsyncResult 物件,表示 BeginInvoke(Dispatcher, Action, DispatcherPriority) 作業的結果。
- 屬性
例外狀況
action
為 null
。
priority
不是有效的 DispatcherPriority。