4 writes to Data
System.Private.Xml (4)
System\Xml\Dom\XmlCharacterData.cs (1)
26set { Data = value; }
System\Xml\Dom\XmlSignificantWhiteSpace.cs (1)
86Data = value;
System\Xml\Dom\XmlText.cs (1)
89Data = value;
System\Xml\Dom\XmlWhitespace.cs (1)
79Data = value;
18 references to Data
Microsoft.Build.Tasks.Core (2)
ManifestUtil\TrustInfo.cs (1)
270commentString = ((XmlComment)previousNode).Data;
ManifestUtil\XmlUtil.cs (1)
56XmlComment childComment = document.CreateComment(((XmlComment)node).Data);
System.Private.Xml (14)
System\Xml\Dom\XmlCDataSection.cs (2)
73return OwnerDocument.CreateCDataSection(Data); 79w.WriteCData(Data);
System\Xml\Dom\XmlCharacterData.cs (1)
25get { return Data; }
System\Xml\Dom\XmlComment.cs (2)
38return OwnerDocument.CreateComment(Data); 44w.WriteComment(Data);
System\Xml\Dom\XmlSignificantWhiteSpace.cs (3)
73return OwnerDocument.CreateSignificantWhitespace(Data); 80return Data; 95w.WriteString(Data);
System\Xml\Dom\XmlText.cs (3)
77return OwnerDocument.CreateTextNode(Data); 84return Data; 124w.WriteString(Data);
System\Xml\Dom\XmlWhitespace.cs (3)
74return Data; 89return OwnerDocument.CreateWhitespace(Data); 95w.WriteWhitespace(Data);
System.Security.Cryptography.Xml (2)
System\Security\Cryptography\Xml\CanonicalXmlCDataSection.cs (2)
27strBuilder.Append(Utils.EscapeCData(Data)); 34byte[] rgbData = Encoding.UTF8.GetBytes(Utils.EscapeCData(Data));