1 write to _asyncReadEventArgs
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CoreClrSocketConnection.cs (1)
894_asyncReadEventArgs = new SocketAsyncEventArgs();
16 references to _asyncReadEventArgs
dotnet-svcutil-lib (16)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CoreClrSocketConnection.cs (16)
205this.SetUserToken(_asyncReadEventArgs, null); 637this.SetUserToken(_asyncReadEventArgs, this); 644if (offset != _asyncReadEventArgs.Offset || 645size != _asyncReadEventArgs.Count) 647_asyncReadEventArgs.SetBuffer(offset, size); 657_asyncReadSize = _asyncReadEventArgs.BytesTransferred; 689return _socket.ReceiveAsync(_asyncReadEventArgs); 720if (_asyncReadEventArgs.SocketError == SocketError.Success) 725throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new SocketException((int)_asyncReadEventArgs.SocketError)); 745this.SetUserToken(_asyncReadEventArgs, null); 760if (_asyncReadEventArgs != null) 762this._asyncReadEventArgs.Completed -= s_onReceiveAsyncCompleted; 763_asyncReadEventArgs.Dispose(); 886if (_asyncReadEventArgs == null) 895_asyncReadEventArgs.SetBuffer(_readBuffer, 0, _readBuffer.Length); 896this._asyncReadEventArgs.Completed += s_onReceiveAsyncCompleted;