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