2 overrides of OuterXml
System.Private.Xml (2)
System\Xml\Dom\XmlEntity.cs (1)
128public override string OuterXml
System\Xml\Dom\XmlNotation.cs (1)
74public override string OuterXml
16 references to OuterXml
CSharpSyntaxGenerator (1)
SourceWriter.cs (1)
1814string[] lines = element.OuterXml.Split(new string[] { "\r", "\n", "\r\n" }, StringSplitOptions.RemoveEmptyEntries);
System.Configuration.ConfigurationManager (3)
System\Configuration\DpapiProtectedConfigurationProvider.cs (1)
47string text = node.OuterXml;
System\Configuration\ProtectedConfigurationSection.cs (2)
91return resultNode.OuterXml; 109return encNode.OuterXml;
System.Private.Xml (2)
System\Xml\Serialization\SchemaObjectWriter.cs (2)
530WriteAttribute("xml", "", ai.OuterXml); 549WriteAttribute("xml", "", ai.OuterXml);
System.Security.Cryptography.Xml (10)
System\Security\Cryptography\Xml\EncryptedXml.cs (3)
219if (idElem == null || idElem.OuterXml == null) 223inputStream = new MemoryStream(_encoding.GetBytes(idElem.OuterXml)); 715byte[] plainText = (content ? _encoding.GetBytes(inputElement.InnerXml) : _encoding.GetBytes(inputElement.OuterXml));
System\Security\Cryptography\Xml\SignedXmlDebugLog.cs (2)
372context != null ? context.OuterXml : NullString); 402context != null ? context.OuterXml : NullString);
System\Security\Cryptography\Xml\Utils.cs (2)
199using (TextReader stringReader = new StringReader(document.OuterXml)) 219using (TextReader stringReader = new StringReader(elem.OuterXml))
System\Security\Cryptography\Xml\XmlDsigBase64Transform.cs (1)
98sb.Append(result.OuterXml);
System\Security\Cryptography\Xml\XmlDsigXsltTransform.cs (1)
74_xslFragment = firstDataElement.OuterXml.Trim(null);
System\Security\Cryptography\Xml\XmlLicenseTransform.cs (1)
182_license.InnerXml = currentLicenseContext.OuterXml;