ClientBase<TChannel>.ICommunicationObject.BeginClose 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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입니다.
구현
설명
자세한 내용은 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입니다.
구현
설명
자세한 내용은 System.ServiceModel.Channels.CommunicationObject를 참조하세요.