2 writes to socketAsyncEventArgs
System.ServiceModel (2)
System\ServiceModel\Channels\SocketConnection.cs (2)
2182this.socketAsyncEventArgs = listener.TakeSocketAsyncEventArgs(); 2360this.socketAsyncEventArgs = null;
13 references to socketAsyncEventArgs
System.ServiceModel (13)
System\ServiceModel\Channels\SocketConnection.cs (13)
2183this.socketAsyncEventArgs.UserToken = this; 2184this.socketAsyncEventArgs.Completed += acceptAsyncCompleted; 2296SocketAsyncEventArgsPool.CleanupAcceptSocket(this.socketAsyncEventArgs); 2298if (listenSocket.AcceptAsync(this.socketAsyncEventArgs)) 2316Fx.Assert(thisPtr.socketAsyncEventArgs == e, "Got wrong socketAsyncEventArgs"); 2355if (this.socketAsyncEventArgs != null) 2357this.socketAsyncEventArgs.UserToken = null; 2358this.socketAsyncEventArgs.Completed -= acceptAsyncCompleted; 2359this.listener.ReturnSocketAsyncEventArgs(this.socketAsyncEventArgs); 2367if (this.socketAsyncEventArgs.SocketError == SocketError.Success) 2369this.socket = this.socketAsyncEventArgs.AcceptSocket; 2370this.socketAsyncEventArgs.AcceptSocket = null; 2374completionException = new SocketException((int)this.socketAsyncEventArgs.SocketError);