7 references to AddByte
System.Text.Encoding.CodePages (7)
System\Text\GB18030Encoding.cs (1)
332if (!buffer.AddByte(unchecked((byte)(iBytes >> 8)), unchecked((byte)(iBytes & 0xff))))
System\Text\ISCIIEncoding.cs (2)
232if (!buffer.AddByte(ControlATR, (byte)(indicScript | ControlCodePageStart))) 267if (buffer.AddByte(ControlATR, (byte)(_defaultCodePage | ControlCodePageStart)))
System\Text\ISO2022Encoding.cs (4)
486if (!buffer.AddByte(unchecked((byte)(bLeadByte)), unchecked((byte)(bTrailByte)))) 662if (!buffer.AddByte(bLeadByte, bTrailByte)) 816if (!buffer.AddByte(unchecked((byte)(bLeadByte & 0x7f)), unchecked((byte)(bTrailByte & 0x7f)))) 852if (buffer.AddByte((byte)'~', (byte)'}'))