4 writes to m_encoding
mscorlib (4)
system\text\encodernls.cs (2)
64this.m_encoding = encoding; 72this.m_encoding = null;
system\text\utf7encoding.cs (1)
986this.m_encoding = (Encoding)info.GetValue("encoding", typeof(Encoding));
system\text\utf8encoding.cs (1)
2440this.m_encoding = (Encoding)info.GetValue("encoding", typeof(Encoding));
8 references to m_encoding
mscorlib (8)
system\text\encodernls.cs (6)
54info.AddValue("encoding", this.m_encoding); 65this.m_fallback = this.m_encoding.EncoderFallback; 128return m_encoding.GetByteCount(chars, count, this); 184return m_encoding.GetBytes(chars, charCount, bytes, byteCount, this); 256bytesUsed = this.m_encoding.GetBytes(chars, charCount, bytes, byteCount, this); 270return m_encoding;
system\text\utf7encoding.cs (1)
999info.AddValue("encoding", this.m_encoding);
system\text\utf8encoding.cs (1)
2466info.AddValue("encoding", this.m_encoding);