8 writes to m_encoding
mscorlib (8)
system\text\decodernls.cs (2)
60this.m_encoding = encoding; 68this.m_encoding = null;
system\text\gb18030encoding.cs (2)
874this.m_encoding = (Encoding)info.GetValue("m_encoding", typeof(Encoding)); 884this.m_encoding = new GB18030Encoding();
system\text\unicodeencoding.cs (2)
2040this.m_encoding = (Encoding)info.GetValue("m_encoding", typeof(Encoding)); 2048this.m_encoding = new UnicodeEncoding(bigEndian, false);
system\text\utf7encoding.cs (1)
922this.m_encoding = (Encoding)info.GetValue("encoding", typeof(Encoding));
system\text\utf8encoding.cs (1)
2515this.m_encoding = (Encoding)info.GetValue("encoding", typeof(Encoding));
10 references to m_encoding
mscorlib (10)
system\text\decodernls.cs (5)
51info.AddValue("encoding", this.m_encoding); 61this.m_fallback = this.m_encoding.DecoderFallback; 128return m_encoding.GetCharCount(bytes, count, this); 195return m_encoding.GetChars(bytes, byteCount, chars, charCount, this); 268charsUsed = this.m_encoding.GetChars(bytes, byteCount, chars, charCount, this);
system\text\gb18030encoding.cs (1)
899info.AddValue("m_encoding", this.m_encoding);
system\text\unicodeencoding.cs (2)
2062info.AddValue("m_encoding", this.m_encoding); 2068info.AddValue("bigEndian", ((UnicodeEncoding)(this.m_encoding)).bigEndian);
system\text\utf7encoding.cs (1)
935info.AddValue("encoding", this.m_encoding);
system\text\utf8encoding.cs (1)
2541info.AddValue("encoding", this.m_encoding);