Base:
method
Write
System.IO.Stream.Write(System.Byte[], System.Int32, System.Int32)
3 overrides of Write
mscorlib (1)
system\io\isolatedstorage\isolatedstoragefilestream.cs (1)
619public override void Write(byte[] buffer, int offset, int count)
System (2)
net\System\Net\Cache\IERequestCache.cs (1)
846public override void Write(byte[] buffer, int offset, int count)
net\System\Net\filewebrequest.cs (1)
615public override void Write(byte[] buffer, int offset, int size) {
20 references to Write
mscorlib (7)
system\io\file.cs (1)
981fs.Write(bytes, 0, bytes.Length);
system\io\isolatedstorage\isolatedstoragefile.cs (1)
2389fs.Write(b, 0, (int)s.Length);
system\io\isolatedstorage\isolatedstoragefilestream.cs (5)
505m_fs.Write(buffer, 0, (int)rem); 527m_fs.Write(buffer, 0, allign); 534m_fs.Write(buffer, 0, s_BlockSize); 539m_fs.Write(buffer, 0, (int) (rem & ((ulong)s_BlockSize - 1))); 637m_fs.Write(buffer, offset, count);
PresentationCore (2)
Core\CSharp\System\Windows\Input\Cursor.cs (2)
280fileStream.Write(cursorData, 0 /*index in array*/, BUFFERSIZE /*bytes to write*/); 284fileStream.Write(cursorData, 0 /*index in array*/, dataSize /*bytes to write*/);
System (2)
net\System\Net\Cache\IERequestCache.cs (1)
857base.Write(buffer, offset, count);
net\System\Net\filewebrequest.cs (1)
618base.Write(buffer, offset, size);
System.AddIn (1)
System\Addin\Hosting\AddInStore.cs (1)
1039s.Write(cache.GetBuffer(), 0, (int) cache.Length);
System.Data (1)
fx\src\data\System\Data\SQLTypes\SQLFileStream.cs (1)
390m_fs.Write(buffer, offset, count);
System.Drawing (1)
commonui\System\Drawing\Image.cs (1)
621fs.Write(rawData, 0, rawData.Length);
System.Web (1)
Configuration\RemoteWebConfigurationHostServer.cs (1)
109tempFileStream.Write(data, 0, data.Length);
System.Web.DataVisualization (4)
WebForm\General\ChartHttpHandler.cs (4)
215_controllerFileStream.Write(data, 0, data.Length); 1531stream.Write(data, 0, data.Length); 1535stream.Write(privacyData, 0, privacyData.Length); 1537stream.Write(_privacyMarker, 0, _privacyMarker.Length);
System.Web.Extensions (1)
ClientServices\ConnectivityStatus.cs (1)
51fs.Write(new byte[0], 0, 0);