Base:
property
InnerXml
System.Xml.XmlNode.InnerXml
1 override of InnerXml
System.Data.Common (1)
System\Xml\XmlBoundElement.cs (1)
152public override string InnerXml
7 writes to InnerXml
Microsoft.Build (3)
Construction\ProjectExtensionsElement.cs (2)
79XmlElement.InnerXml = value; 153idElement.InnerXml = value;
Utilities\Utilities.cs (1)
90node.InnerXml = s;
System.Configuration.ConfigurationManager (2)
System\Configuration\LocalFileSettingsProvider.cs (2)
466valueXml.InnerXml = serializedValue; 539tempElement.InnerXml = escapedString;
System.Data.Common (1)
System\Xml\XmlBoundElement.cs (1)
167base.InnerXml = value;
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\XmlDsigXPathTransform.cs (1)
113element.InnerXml = _xpathexpr!;
13 references to InnerXml
IOperationGenerator (1)
IOperationClassWriter.cs (1)
247string[] lines = el.InnerXml.Split(separators, StringSplitOptions.RemoveEmptyEntries);
Microsoft.Build (5)
Construction\ProjectExtensionsElement.cs (4)
67return Link != null ? ExtensionLink.Content : XmlElement.InnerXml; 114return idElement == null ? String.Empty : Internal.Utilities.RemoveXmlNamespace(idElement.InnerXml); 144if (idElement.InnerXml != value && 145idElement.InnerXml.Replace(ProjectRootElement.EmptyProjectFileXmlNamespace, string.Empty) != value)
Utilities\Utilities.cs (1)
204string innerXml = node.InnerXml;
Microsoft.Build.Engine.UnitTests (1)
Utilities_Tests.cs (1)
333Console.WriteLine("innerXml = " + rootElement.InnerXml);
Microsoft.Build.Tasks.UnitTests (1)
XmlPoke_Tests.cs (1)
310node.InnerXml.ShouldBe(value);
System.Configuration.ConfigurationManager (1)
System\Configuration\LocalFileSettingsProvider.cs (1)
529return tempElement.InnerXml;
System.Data.Common (1)
System\Xml\XmlBoundElement.cs (1)
154get { return base.InnerXml; }
System.Security.Cryptography.Xml (3)
System\Security\Cryptography\Xml\EncryptedXml.cs (1)
757byte[] plainText = (content ? _encoding.GetBytes(inputElement.InnerXml) : _encoding.GetBytes(inputElement.OuterXml));
System\Security\Cryptography\Xml\SignedInfo.cs (1)
252_signatureLength = signatureLengthElement.InnerXml;
System\Security\Cryptography\Xml\XmlDsigXPathTransform.cs (1)
50_xpathexpr = elem.InnerXml.Trim(null);