1 write to _stream
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (1)
461
_stream
= stream;
10 references to _stream
dotnet-svcutil-lib (10)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (10)
494
get { return
_stream
; }
541
_stream
.Dispose();
562
Task localTask =
_stream
.WriteAsync(buffer, offset, size);
620
_stream
.Write(buffer, offset, size);
637
if (
_stream
.CanTimeout)
639
_stream
.ReadTimeout = timeoutInMilliseconds;
647
if (
_stream
.CanTimeout)
649
_stream
.WriteTimeout = timeoutInMilliseconds;
659
return
_stream
.Read(buffer, offset, size);
675
Task<int> localTask =
_stream
.ReadAsync(AsyncReadBuffer, offset, size);