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