ChannelListenerBase<TChannel>.BeginAcceptChannel Method

Definition

Begins an asynchronous operation to accept a channel of the type specified by the current channel listener.

Overloads

BeginAcceptChannel(AsyncCallback, Object)

Begins an asynchronous operation to accept a channel of the type specified by the current channel listener.

BeginAcceptChannel(TimeSpan, AsyncCallback, Object)

When implemented in a derived class, begins an asynchronous operation to accept a channel of the type specified by the current channel listener within a specified interval of time.

BeginAcceptChannel(AsyncCallback, Object)

Begins an asynchronous operation to accept a channel of the type specified by the current channel listener.

public:
 virtual IAsyncResult ^ BeginAcceptChannel(AsyncCallback ^ callback, System::Object ^ state);
public IAsyncResult BeginAcceptChannel (AsyncCallback callback, object state);
abstract member BeginAcceptChannel : AsyncCallback * obj -> IAsyncResult
override this.BeginAcceptChannel : AsyncCallback * obj -> IAsyncResult
Public Function BeginAcceptChannel (callback As AsyncCallback, state As Object) As IAsyncResult

Parameters

callback
AsyncCallback

The TimeSpan that specifies how long the accept channel operation has to complete before timing out.

state
Object

The AsyncCallback delegate that receives the notification of the asynchronous completion of the accept channel operation.

Returns

The IAsyncResult that references the asynchronous accept channel operation.

Implements

Applies to

BeginAcceptChannel(TimeSpan, AsyncCallback, Object)

When implemented in a derived class, begins an asynchronous operation to accept a channel of the type specified by the current channel listener within a specified interval of time.

public:
 virtual IAsyncResult ^ BeginAcceptChannel(TimeSpan timeout, AsyncCallback ^ callback, System::Object ^ state);
public IAsyncResult BeginAcceptChannel (TimeSpan timeout, AsyncCallback callback, object state);
abstract member BeginAcceptChannel : TimeSpan * AsyncCallback * obj -> IAsyncResult
override this.BeginAcceptChannel : TimeSpan * AsyncCallback * obj -> IAsyncResult
Public Function BeginAcceptChannel (timeout As TimeSpan, callback As AsyncCallback, state As Object) As IAsyncResult

Parameters

timeout
TimeSpan

The TimeSpan that specifies how long the accept channel operation has to complete before timing out.

callback
AsyncCallback

The AsyncCallback delegate that receives the notification of the asynchronous completion of the accept channel operation.

state
Object

An object, specified by the application, that contains state information associated with the asynchronous accept channel operation.

Returns

The IAsyncResult that references the asynchronous accept channel operation.

Implements

Applies to