ClientBase<TChannel>.ICommunicationObject.BeginClose メソッド

定義

ClientBase<TChannel>を閉じる非同期操作を開始します。

オーバーロード

名前 説明
ICommunicationObject.BeginClose(AsyncCallback, Object)

ClientBase<TChannel>を閉じる非同期操作を開始します。

ICommunicationObject.BeginClose(TimeSpan, AsyncCallback, Object)

指定したタイムアウトで ClientBase<TChannel> を閉じる非同期操作を開始します。

ICommunicationObject.BeginClose(AsyncCallback, Object)

ソース:
ClientBase.cs
ソース:
ClientBase.cs
ソース:
ClientBase.cs

ClientBase<TChannel>を閉じる非同期操作を開始します。

 virtual IAsyncResult ^ System.ServiceModel.ICommunicationObject.BeginClose(AsyncCallback ^ callback, System::Object ^ state) = System::ServiceModel::ICommunicationObject::BeginClose;
IAsyncResult ICommunicationObject.BeginClose(AsyncCallback callback, object state);
abstract member System.ServiceModel.ICommunicationObject.BeginClose : AsyncCallback * obj -> IAsyncResult
override this.System.ServiceModel.ICommunicationObject.BeginClose : AsyncCallback * obj -> IAsyncResult
Function BeginClose (callback As AsyncCallback, state As Object) As IAsyncResult Implements ICommunicationObject.BeginClose

パラメーター

callback
AsyncCallback

完了時にコールバックを受け取るメソッド。

state
Object

状態データ。

返品

非同期の閉じる操作を参照する IAsyncResult

実装

注釈

詳細については、System.ServiceModel.Channels.CommunicationObjectを参照してください。

適用対象

ICommunicationObject.BeginClose(TimeSpan, AsyncCallback, Object)

ソース:
ClientBase.cs
ソース:
ClientBase.cs
ソース:
ClientBase.cs

指定したタイムアウトで ClientBase<TChannel> を閉じる非同期操作を開始します。

 virtual IAsyncResult ^ System.ServiceModel.ICommunicationObject.BeginClose(TimeSpan timeout, AsyncCallback ^ callback, System::Object ^ state) = System::ServiceModel::ICommunicationObject::BeginClose;
IAsyncResult ICommunicationObject.BeginClose(TimeSpan timeout, AsyncCallback callback, object state);
abstract member System.ServiceModel.ICommunicationObject.BeginClose : TimeSpan * AsyncCallback * obj -> IAsyncResult
override this.System.ServiceModel.ICommunicationObject.BeginClose : TimeSpan * AsyncCallback * obj -> IAsyncResult
Function BeginClose (timeout As TimeSpan, callback As AsyncCallback, state As Object) As IAsyncResult Implements ICommunicationObject.BeginClose

パラメーター

timeout
TimeSpan

呼び出しが完了する必要がある期間。

callback
AsyncCallback

操作が完了したときに呼び出されるコールバック オブジェクト。

state
Object

状態データ。

返品

非同期の終了操作を参照する IAsyncResult

実装

注釈

詳細については、System.ServiceModel.Channels.CommunicationObjectを参照してください。

適用対象