1 write to _asyncWriteEventArgs
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CoreClrSocketConnection.cs (1)
911_asyncWriteEventArgs = new SocketAsyncEventArgs();
13 references to _asyncWriteEventArgs
dotnet-svcutil-lib (13)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CoreClrSocketConnection.cs (13)
382this.SetUserToken(_asyncWriteEventArgs, this); 388_asyncWriteEventArgs.SetBuffer(buffer, offset, size); 390if (_socket.SendAsync(_asyncWriteEventArgs)) 442this.SetUserToken(_asyncWriteEventArgs, null); 460Contract.Assert(eventArgs.BytesTransferred == _asyncWriteEventArgs.Count, "The socket SendAsync did not send all the bytes."); 481if (_asyncWriteEventArgs.SocketError == SocketError.Success) 486throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new SocketException((int)_asyncWriteEventArgs.SocketError)); 492if (_asyncWriteEventArgs != null) 494this._asyncWriteEventArgs.Completed -= s_onSocketSendCompleted; 495_asyncWriteEventArgs.Dispose(); 507this.SetUserToken(_asyncWriteEventArgs, null); 903if (_asyncWriteEventArgs == null) 912this._asyncWriteEventArgs.Completed += s_onSocketSendCompleted;