2 writes to m_encoding
System.Security (2)
system\security\cryptography\xml\encryptedxml.cs (2)
124m_encoding = Encoding.UTF8; 186set { m_encoding = value; }
7 references to m_encoding
System.Security (7)
system\security\cryptography\xml\encryptedxml.cs (7)
185get { return m_encoding; } 234inputStream = new MemoryStream(m_encoding.GetBytes(GetIdElement(m_document, idref).OuterXml)); 241inputStream = new MemoryStream(m_encoding.GetBytes(idElem.OuterXml)); 692byte[] plainText = (content ? m_encoding.GetBytes(inputElement.InnerXml) : m_encoding.GetBytes(inputElement.OuterXml)); 753string decryptedString = m_encoding.GetString(decryptedData); 774dummy.InnerXml = m_encoding.GetString(decryptedData);