ClientBase<TChannel>.ICommunicationObject.BeginClose 메서드

정의

ClientBase<TChannel>를 닫기 위한 비동기 작업을 시작합니다.

오버로드

ICommunicationObject.BeginClose(AsyncCallback, Object)

ClientBase<TChannel>를 닫기 위한 비동기 작업을 시작합니다.

ICommunicationObject.BeginClose(TimeSpan, AsyncCallback, Object)

지정된 시간 제한 내에 ClientBase<TChannel>를 닫기 위한 비동기 작업을 시작합니다.

ICommunicationObject.BeginClose(AsyncCallback, Object)

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

비동기 닫기 작업을 참조하는 IAsyncResult입니다.

구현

설명

자세한 내용은 System.ServiceModel.Channels.CommunicationObject를 참조하세요.

적용 대상

ICommunicationObject.BeginClose(TimeSpan, AsyncCallback, Object)

지정된 시간 제한 내에 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

비동기 닫기 시작 작업을 참조하는 IAsyncResult입니다.

구현

설명

자세한 내용은 System.ServiceModel.Channels.CommunicationObject를 참조하세요.

적용 대상