Base:
4 overrides of ReadAsync
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\DetectEofStream.cs (1)
25
public override async Task<int>
ReadAsync
(byte[] buffer, int offset, int count, Threading.CancellationToken cancellationToken)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpChannelHelpers.cs (1)
241
public override Task<int>
ReadAsync
(byte[] buffer, int offset, int count, CancellationToken cancellationToken)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MaxMessageSizeStream.cs (1)
24
public override async Task<int>
ReadAsync
(byte[] buffer, int offset, int count, CancellationToken cancellationToken)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TimeoutStream.cs (1)
46
public override async Task<int>
ReadAsync
(byte[] buffer, int offset, int count, CancellationToken cancellationToken)
4 references to ReadAsync
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\DetectEofStream.cs (1)
31
int returnValue = await base.
ReadAsync
(buffer, offset, count, cancellationToken);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpChannelHelpers.cs (1)
249
return base.
ReadAsync
(buffer, offset, count, cancellationToken);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MaxMessageSizeStream.cs (1)
27
int bytesRead = await base.
ReadAsync
(buffer, offset, count, cancellationToken);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TimeoutStream.cs (1)
53
return await base.
ReadAsync
(buffer, offset, count, cancelToken);