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)
205
this.SetUserToken(
_asyncReadEventArgs
, null);
637
this.SetUserToken(
_asyncReadEventArgs
, this);
644
if (offset !=
_asyncReadEventArgs
.Offset ||
645
size !=
_asyncReadEventArgs
.Count)
647
_asyncReadEventArgs
.SetBuffer(offset, size);
657
_asyncReadSize =
_asyncReadEventArgs
.BytesTransferred;
689
return _socket.ReceiveAsync(
_asyncReadEventArgs
);
720
if (
_asyncReadEventArgs
.SocketError == SocketError.Success)
725
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new SocketException((int)
_asyncReadEventArgs
.SocketError));
745
this.SetUserToken(
_asyncReadEventArgs
, null);
760
if (
_asyncReadEventArgs
!= null)
762
this.
_asyncReadEventArgs
.Completed -= s_onReceiveAsyncCompleted;
763
_asyncReadEventArgs
.Dispose();
886
if (
_asyncReadEventArgs
== null)
895
_asyncReadEventArgs
.SetBuffer(_readBuffer, 0, _readBuffer.Length);
896
this.
_asyncReadEventArgs
.Completed += s_onReceiveAsyncCompleted;