Base:
method
Read
System.IO.Stream.Read(System.Byte[], System.Int32, System.Int32)
2 overrides of Read
mscorlib (1)
system\io\unmanagedmemorystreamwrapper.cs (1)
99public override int Read([In, Out] byte[] buffer, int offset, int count) {
WindowsBase (1)
Base\MS\Internal\IO\Packaging\TrackingMemoryStream.cs (1)
49public override int Read(byte[] buffer, int offset, int count)
31 references to Read
mscorlib (2)
system\io\memorystream.cs (1)
393int n = Read(buffer, offset, count);
system\security\permissionset.cs (1)
2244ms.Read( retval, 0, retval.Length );
System (1)
net\System\Net\_ConnectStream.cs (1)
3167int result = Read(buffer, offset, count);
System.Data.Services.Client (1)
System\Data\Services\Client\DataServiceContext.cs (1)
3817numRead = m.Read(completeBuffer, 0, completeBuffer.Length);
System.IdentityModel (1)
System\IdentityModel\WrappedReader.cs (1)
187int read = this.contentStream.Read(buffer, offset, count);
System.IO.Log (2)
System\IO\Log\FileLogRecordStream.cs (2)
104int bytesRead = this.Stream.Read(buffer, offset, count); 115return this.Stream.Read(buffer, offset + bytesRead, count - bytesRead) + bytesRead;
System.Runtime.Serialization (1)
System\Xml\XmlMtomReader.cs (1)
1281int actual = binHexStream.Read(buffer, offset + read, count - read);
System.ServiceModel (13)
System\ServiceModel\MsmqIntegration\ActiveXSerializer.cs (13)
108count = stream.Read(bytes, 0, 1); 117count = stream.Read(bytes, 0, 16); 127count = stream.Read(bytes, 0, 8); 137count = stream.Read(bytes, 0, 8); 148count = stream.Read(bytes, 0, 1); 157count = stream.Read(bytes, 0, 2); 166count = stream.Read(bytes, 0, 2); 175count = stream.Read(bytes, 0, 4); 184count = stream.Read(bytes, 0, 4); 193count = stream.Read(bytes, 0, 8); 202count = stream.Read(bytes, 0, 8); 211count = stream.Read(bytes, 0, 4); 220count = stream.Read(bytes, 0, 8);
System.Transactions (1)
System\Transactions\TransactionManager.cs (1)
552streamToWrite.Read( returnValue, 0, Convert.ToInt32( streamToWrite.Length, CultureInfo.InvariantCulture ) );
System.Web (1)
Configuration\RemoteWebConfigurationHostStream.cs (1)
254return _MemoryStream.Read(buffer, offset, count);
System.Web.DataVisualization (3)
WebForm\General\ChartHttpHandler.cs (3)
1617stream.Read(privacyMarkerStream, 0, privacyMarkerStream.Length); 1625stream.Read(privacyDataFromStream, 0, privacyDataFromStream.Length); 1650stream.Read(data, 0, (int)data.Length);
System.Web.Services (1)
System\Web\Services\Discovery\DiscoveryRequestHandler.cs (1)
107int bytesRead = memStream.Read(data, 0, data.Length);
System.Windows.Forms (1)
winforms\Managed\System\WinForms\Control.cs (1)
18045stream.Read(bytes, 0, bytes.Length);
System.Workflow.Runtime (1)
Tracking\SqlTrackingService.cs (1)
2473read = stream.Read(state, totalRead, cbToRead);
WindowsBase (2)
Base\MS\Internal\IO\Packaging\CompoundFile\RightsManagementEncryptedStream.cs (1)
506bytesRead = memStreamBlock.Stream.Read(buffer, bufferOffset, (int)overlapBlockSize);
Base\MS\Internal\IO\Packaging\TrackingMemoryStream.cs (1)
51int result = base.Read(buffer, offset, count);