Base:
4 overrides of Read
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\DetectEofStream.cs (1)
49public override int Read(byte[] buffer, int offset, int count)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpChannelHelpers.cs (1)
252public override int Read(byte[] buffer, int offset, int count)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MaxMessageSizeStream.cs (1)
37public override int Read(byte[] buffer, int offset, int count)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TimeoutStream.cs (1)
33public override int Read(byte[] buffer, int offset, int count)
3 references to Read
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\DetectEofStream.cs (1)
55int returnValue = base.Read(buffer, offset, count);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpChannelHelpers.cs (1)
260return base.Read(buffer, offset, count);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MaxMessageSizeStream.cs (1)
40return FinishRead(base.Read(buffer, offset, count));