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
47 references to OuterXml
CSharpSyntaxGenerator (1)
SourceWriter.cs (1)
1887string[] lines = element.OuterXml.Split(new string[] { "\r", "\n", "\r\n" }, StringSplitOptions.RemoveEmptyEntries);
Microsoft.Build (3)
Construction\ProjectElement.cs (1)
183public string OuterElement => Link != null ? Link.OuterElement : XmlElement.OuterXml;
Evaluation\ProjectRootElementCache.cs (2)
214string diskContent = document.OuterXml; 215string cacheContent = projectRootElement.XmlDocument.OuterXml;
Microsoft.Build.Tasks.Core (5)
ManifestUtil\mansign2.cs (3)
563using (TextReader stringReader = new StringReader(manifestDom.OuterXml)) 742licenseDom.OuterXml + "</msrel:RelData>"; 873byte[] licenseXml = Encoding.UTF8.GetBytes(licenseDom.OuterXml);
ManifestUtil\TrustInfo.cs (1)
465ReadTrustInfo(trustInfoElement.OuterXml);
ManifestUtil\Util.cs (1)
567WriteLogFile(filename, element.OuterXml);
Microsoft.TestPlatform.CrossPlatEngine (3)
AttachmentsProcessing\TestRunAttachmentsProcessingManager.cs (1)
170EqtTrace.Info($"TestRunAttachmentsProcessingManager: Invocation of data collector attachment processor AssemblyQualifiedName: '{dataCollectorAttachmentsProcessor.DataCollectorAttachmentProcessorInstance.GetType().AssemblyQualifiedName}' FriendlyName: '{dataCollectorAttachmentsProcessor.FriendlyName}' with configuration '{(configuration == null ? "null" : configuration.OuterXml)}'");
DataCollection\InProcDataCollectionExtensionManager.cs (1)
103configuration?.OuterXml);
DataCollection\ProxyDataCollectionManager.cs (1)
366return document.OuterXml;
Microsoft.TestPlatform.Utilities (2)
CodeCoverageRunSettingsProcessor.cs (2)
291exclusionCache.Add(child.OuterXml); 302if (exclusionCache.Contains(child.OuterXml))
Microsoft.VisualStudio.TestPlatform.Common (5)
Utilities\FakesUtilities.cs (1)
54? doc.OuterXml
Utilities\RunSettingsProviderExtensions.cs (4)
86runSettingsProvider.UpdateRunSettings(xmlDocument.OuterXml); 126runSettingsProvider.UpdateRunSettings(xmlDocument.OuterXml); 151runSettingsProvider.UpdateRunSettings(xmlDocument.OuterXml); 195return document.OuterXml;
Microsoft.Web.XmlTransform (8)
XmlElementContext.cs (1)
211XmlReader reader = new XmlTextReader(new StringReader(sourceNode.OuterXml));
XmlFileInfoDocument.cs (2)
137_reader = new XmlTextReader(new StringReader(element.OuterXml)); 149clone = ReadNode(new XmlTextReader(new StringReader(element.OuterXml)));
XmlFormatter.cs (4)
243if (FindLastNewLine(node.OuterXml) < 0 && 244FindLastNewLine(PreviousNode.OuterXml) >= 0) { 277string whitespace = node.OuterXml; 400string whitespace = siblingNode.OuterXml;
XmlTransforms.cs (1)
196string outerXml = $" {TargetNode.OuterXml} ";
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)
239if (idElem == null || idElem.OuterXml == null) 243inputStream = new MemoryStream(_encoding.GetBytes(idElem.OuterXml)); 740byte[] 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;
System.ServiceModel.Primitives (2)
System\IdentityModel\Tokens\GenericXmlSecurityKeyIdentifierClause.cs (2)
43if (originalNode.OuterXml == newNode.OuterXml)
System.Speech (1)
Result\RecognizedPhrase.cs (1)
78_smlContent = document.OuterXml;
vstest.console (1)
Processors\RunSettingsArgumentProcessor.cs (1)
105_runSettingsManager.UpdateRunSettings(document.OuterXml);
vstest.console.arm64 (1)
src\vstest\src\vstest.console\Processors\RunSettingsArgumentProcessor.cs (1)
105_runSettingsManager.UpdateRunSettings(document.OuterXml);