Base:
method
Read
System.IO.Stream.Read(System.Byte[], System.Int32, System.Int32)
3 overrides of Read
mscorlib (1)
system\io\isolatedstorage\isolatedstoragefilestream.cs (1)
545public override int Read(byte[] buffer, int offset, int count) {
System (2)
net\System\Net\Cache\IERequestCache.cs (1)
643public override int Read(byte[] buffer, int offset, int count)
net\System\Net\filewebrequest.cs (1)
604public override int Read(byte[] buffer, int offset, int size) {
29 references to Read
mscorlib (6)
system\activationcontext.cs (1)
458fs.Read(rawBytes, 0, bufferSize);
system\io\file.cs (1)
927int n = fs.Read(bytes, index, count);
system\io\isolatedstorage\isolatedstoragefile.cs (1)
2768int n = fs.Read(b, offset, length);
system\io\isolatedstorage\isolatedstoragefilestream.cs (1)
546return m_fs.Read(buffer, offset, count);
system\reflection\strongnamekeypair.cs (1)
67keyPairFile.Read(_keyPairArray, 0, length);
system\security\policy\policylevel.cs (1)
811size = stream.Read(data, 0, size);
System (6)
compmod\microsoft\csharp\csharpcodeprovider.cs (1)
3471fs.Read(assemblyBuff, 0, fileLen);
compmod\microsoft\visualbasic\VBCodeProvider.cs (2)
2913fs.Read(b, 0, fileLen); 2957int n = stream.Read(bytes, index, count);
compmod\system\codedom\compiler\CodeCompiler.cs (1)
406fs.Read(b, 0, fileLen);
net\System\Net\Cache\IERequestCache.cs (1)
656return base.Read(buffer, offset, count);
net\System\Net\filewebrequest.cs (1)
607return base.Read(buffer, offset, size);
System.Activities (1)
System\Activities\Debugger\SourceLocationProvider.cs (1)
149fs.Read(buffer, 0, buffer.Length);
System.Data (3)
fx\src\data\System\Data\OleDb\oledbconnectionstring.cs (2)
295int count = fstream.Read(bytes, 0, bytes.Length); 304count = fstream.Read(bytes, 0, bytes.Length);
fx\src\data\System\Data\SQLTypes\SQLFileStream.cs (1)
374return m_fs.Read(buffer, offset, count);
System.Drawing (1)
commonui\System\Drawing\Icon.cs (1)
104f.Read(iconData, 0, iconData.Length);
System.Web (7)
Hosting\IIS7WorkerRequest.cs (1)
1020int bytesRead = f.Read(fileBytes, 0, (int)length);
Hosting\ISAPIWorkerRequest.cs (2)
823int bytesRead = f.Read(fileBytes, 0, (int)length); 1389int bytesRead = f.Read(fileBytes, offset, size);
HttpResponse.cs (2)
2778int bytesRead = f.Read(fileBytes, 0, (int) size); 2940int bytesRead = f.Read(fileBytes, 0, (int)size);
HttpRuntime.cs (1)
1261if (fs.Read(message, 0, length) == length) {
HttpWriter.cs (1)
484int n = f.Read(data, bytesRead, intSize);
System.Web.DataVisualization (1)
WebForm\General\ChartHttpHandler.cs (1)
1606fileStream.Read(fileData, 0, fileData.Length);
System.Windows.Forms (2)
winforms\Managed\System\Resources\ResXFileRef.cs (1)
310s.Read(temp, 0, (int)s.Length);
winforms\Managed\System\WinForms\Cursor.cs (1)
126f.Read(cursorData, 0, Convert.ToInt32(f.Length)); // assume that a cursor is less than 4gig...
System.WorkflowServices (2)
System\Workflow\Runtime\StreamedWorkflowDefinitionContext.cs (2)
66workflowDefStream.Read(workflowDefinition, 0, (int) workflowDefStream.Length); 71ruleDefStream.Read(this.ruleDefinition, 0, (int) ruleDefStream.Length);