5 implementations of BeginAccept
System.ServiceModel (5)
System\ServiceModel\Channels\BufferedConnection.cs (1)
355
public IAsyncResult
BeginAccept
(AsyncCallback callback, object state)
System\ServiceModel\Channels\PipeConnection.cs (1)
2001
public IAsyncResult
BeginAccept
(AsyncCallback callback, object state)
System\ServiceModel\Channels\SharedConnectionListener.cs (1)
72
IAsyncResult IConnectionListener.
BeginAccept
(AsyncCallback callback, object state)
System\ServiceModel\Channels\SocketConnection.cs (1)
2007
public IAsyncResult
BeginAccept
(AsyncCallback callback, object state)
System\ServiceModel\Channels\TracingConnectionListener.cs (1)
67
public IAsyncResult
BeginAccept
(AsyncCallback callback, object state)
3 references to BeginAccept
System.ServiceModel (3)
System\ServiceModel\Channels\BufferedConnection.cs (1)
357
return connectionListener.
BeginAccept
(callback, state);
System\ServiceModel\Channels\ConnectionAcceptor.cs (1)
93
result = listener.
BeginAccept
(acceptCompletedCallback, null);
System\ServiceModel\Channels\TracingConnectionListener.cs (1)
71
return this.listener.
BeginAccept
(callback, state);