2 writes to _encoding
System.Security.Cryptography.Xml (2)
System\Security\Cryptography\Xml\EncryptedXml.cs (2)
99_encoding = Encoding.UTF8; 167set { _encoding = value; }
6 references to _encoding
System.Security.Cryptography.Xml (6)
System\Security\Cryptography\Xml\EncryptedXml.cs (6)
166get { return _encoding; } 226inputStream = new MemoryStream(_encoding.GetBytes(idElem.OuterXml)); 757byte[] plainText = (content ? _encoding.GetBytes(inputElement.InnerXml) : _encoding.GetBytes(inputElement.OuterXml)); 833string decryptedString = _encoding.GetString(decryptedData); 857dummy.InnerXml = _encoding.GetString(decryptedData);