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