33 overrides of WriteByte
mscorlib (6)
system\io\bufferedstream.cs (1)
1252public override void WriteByte(Byte value) {
system\io\filestream.cs (1)
2414public override void WriteByte(byte value)
system\io\memorystream.cs (1)
634public override void WriteByte(byte value) {
system\io\stream.cs (2)
975public override void WriteByte(byte value) 1277public override void WriteByte(byte b)
system\io\unmanagedmemorystream.cs (1)
674public override void WriteByte(byte value) {
PresentationCore (1)
Shared\MS\Internal\IO\SynchronizingStream.cs (1)
85public override void WriteByte(byte b)
PresentationFramework (2)
src\Framework\MS\Internal\AppModel\BamlStream.cs (1)
272public override void WriteByte(
src\Framework\MS\Internal\Navigation\BindStream.cs (1)
432public override void WriteByte(
System (3)
net\System\Net\WebSockets\WebSocketHttpListenerDuplexStream.cs (1)
573public override void WriteByte(byte value)
sys\system\configuration\ClientSettingsStore.cs (1)
452public override void WriteByte(byte value) {
sys\system\io\ports\SerialStream.cs (1)
1214public override void WriteByte(byte value)
System.Core (1)
System\IO\Pipes\PipeStream.cs (1)
729public override void WriteByte(byte value) {
System.Data (3)
fx\src\data\System\Data\SQLTypes\SQLBytes.cs (1)
761 public override void WriteByte(byte value) {
fx\src\data\System\Data\SQLTypes\SQLFileStream.cs (1)
406public override void WriteByte(byte value)
fx\src\data\System\Data\SQLTypes\SqlXml.cs (1)
440 public override void WriteByte(byte value) {
System.IO.Log (3)
System\IO\Log\FileLogRecordStream.cs (1)
244public override void WriteByte(byte value)
System\IO\Log\FileRegion.cs (1)
180public override void WriteByte(byte value)
System\IO\Log\LogLogRecord.cs (1)
199public override void WriteByte(byte value)
System.Runtime.Remoting (3)
channels\core\chunkedmemorystream.cs (1)
325public override void WriteByte(byte value)
channels\http\httpstreams.cs (2)
84public override void WriteByte(byte value) 172public override void WriteByte(byte value)
System.Runtime.Serialization (2)
System\Runtime\Serialization\Json\JsonEncodingStreamWrapper.cs (1)
292public override void WriteByte(byte b)
System\Xml\EncodingStreamWrapper.cs (1)
698public override void WriteByte(byte b)
System.ServiceModel (3)
System\ServiceModel\Channels\BufferedOutputAsyncStream.cs (1)
319public override void WriteByte(byte value)
System\ServiceModel\Channels\DelegatingStream.cs (1)
162public override void WriteByte(byte value)
System\ServiceModel\Channels\SingletonConnectionReader.cs (1)
1698public override void WriteByte(byte value)
System.ServiceModel.Internals (1)
System\Runtime\BufferedOutputStream.cs (1)
303public override void WriteByte(byte value)
System.Web (1)
Configuration\RemoteWebConfigurationHostStream.cs (1)
286public override void WriteByte(byte val)
System.Web.Services (2)
System\Web\Services\Protocols\BufferedResponseStream.cs (1)
104public override void WriteByte(byte value) {
System\Web\Services\Protocols\SoapExtensionStream.cs (1)
138public override void WriteByte(byte value) {
System.Xml (1)
System\Xml\XmlDownloadManager.cs (1)
180public override void WriteByte( byte value ) {
WindowsBase (1)
Base\MS\Internal\IO\Packaging\CompoundFile\VersionedStream.cs (1)
77public override void WriteByte(byte b)
45 references to WriteByte
mscorlib (3)
system\io\binarywriter.cs (2)
152OutStream.WriteByte(value); 161OutStream.WriteByte((byte) value);
system\io\stream.cs (1)
1280_stream.WriteByte(b);
PresentationCore (6)
Core\CSharp\MS\Internal\Ink\InkSerializedFormat\InkSerializer.cs (1)
2124strm.WriteByte(bCompAlgo);
Core\CSharp\MS\Internal\Ink\InkSerializedFormat\SerializationHelper.cs (4)
51strm.WriteByte((byte)Value); 55strm.WriteByte((byte)(0x0080 | (Value & 0x7f))); 76strm.WriteByte((byte)ulValue); 80strm.WriteByte((byte)(0x0080 | (ulValue & 0x7f)));
Shared\MS\Internal\IO\SynchronizingStream.cs (1)
90_baseStream.WriteByte(b);
PresentationFramework (8)
src\Framework\MS\Internal\AppModel\ApplicationProxyInternal.cs (4)
1144stream.WriteByte((byte)((value & 0xFF000000) >> 24)); 1145stream.WriteByte((byte)((value & 0x00FF0000) >> 16)); 1146stream.WriteByte((byte)((value & 0x0000FF00) >> 8)); 1147stream.WriteByte((byte)((value & 0x000000FF)));
src\Framework\MS\Internal\AppModel\BamlStream.cs (1)
276_stream.WriteByte(value);
src\Framework\MS\Internal\Navigation\BindStream.cs (1)
436_stream.WriteByte(value);
src\Framework\System\Windows\Documents\RtfToXamlLexer.cs (2)
265imageStream.WriteByte(tokenChar); 277imageStream.WriteByte((byte)(firstHex << 4 | secondHex));
System (2)
net\System\Net\WebSockets\WebSocketHttpListenerDuplexStream.cs (1)
575m_OutputStream.WriteByte(value);
sys\system\configuration\ClientSettingsStore.cs (1)
461_originalStream.WriteByte(value);
System.Data (6)
fx\src\data\System\Data\Sql\sqlnorm.cs (5)
175s.WriteByte(0); 180s.WriteByte(1); 292s.WriteByte((byte)(b?1:0)); 316s.WriteByte(b); 336s.WriteByte(b);
fx\src\data\System\Data\SQLTypes\SqlXml.cs (1)
445 m_stream.WriteByte(value);
System.Data.Entity.Design (1)
System\Data\Entity\Design\AspNet\BuildProviderUtils.cs (1)
44resStream.WriteByte((byte)byteRead);
System.Runtime.Remoting (2)
channels\http\httpsocketmanager.cs (1)
138outputStream.WriteByte((byte)' ');
channels\http\httpstreams.cs (1)
86_outputStream.WriteByte(value);
System.Runtime.Serialization (2)
System\Runtime\Serialization\Json\JsonEncodingStreamWrapper.cs (1)
296this.stream.WriteByte(b);
System\Xml\EncodingStreamWrapper.cs (1)
702this.stream.WriteByte(b);
System.ServiceModel (3)
System\ServiceModel\Channels\DelegatingStream.cs (1)
164stream.WriteByte(value);
System\ServiceModel\Channels\HttpChannelHelpers.cs (1)
4028BaseStream.WriteByte(value);
System\ServiceModel\Channels\SingletonConnectionReader.cs (1)
1701base.WriteByte(value);
System.Web.Services (1)
System\Web\Services\Protocols\SoapExtensionStream.cs (1)
141innerStream.WriteByte(value);
System.Xml (9)
System\Xml\BinaryXml\SqlUtils.cs (8)
92strm.WriteByte((byte)(this.m_bLen * 4 + 3)); 93strm.WriteByte(this.m_bPrec); 94strm.WriteByte(this.m_bScale); 95strm.WriteByte(0 == this.m_bSign ? (byte)1 : (byte)0); 109strm.WriteByte((byte)(val & 0xFF)); 110strm.WriteByte((byte)((val >> 8) & 0xFF)); 111strm.WriteByte((byte)((val >> 16) & 0xFF)); 112strm.WriteByte((byte)((val >> 24) & 0xFF));
System\Xml\XmlDownloadManager.cs (1)
181stream.WriteByte( value );
WindowsBase (2)
Base\MS\Internal\IO\Packaging\CompoundFile\VersionedStream.cs (1)
81_stream.WriteByte(b);
Base\MS\Internal\IO\Packaging\CompoundFile\VersionedStreamOwner.cs (1)
67BaseStream.WriteByte(b);