Base:
property
InnerXml
System.Xml.XmlNode.InnerXml
1 override of InnerXml
System.Data.Common (1)
System\Xml\XmlBoundElement.cs (1)
171public override string InnerXml
8 writes to InnerXml
Microsoft.Build (3)
Construction\ProjectExtensionsElement.cs (2)
79XmlElement.InnerXml = value; 153idElement.InnerXml = value;
Utilities\Utilities.cs (1)
87node.InnerXml = s;
Microsoft.Build.Engine (1)
Engine\Project.cs (1)
3058idElement.InnerXml = content;
System.Configuration.ConfigurationManager (2)
System\Configuration\LocalFileSettingsProvider.cs (2)
466valueXml.InnerXml = serializedValue; 539tempElement.InnerXml = escapedString;
System.Data.Common (1)
System\Xml\XmlBoundElement.cs (1)
188base.InnerXml = value;
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\XmlDsigXPathTransform.cs (1)
113element.InnerXml = _xpathexpr!;
15 references to InnerXml
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)
201string innerXml = node.InnerXml;
Microsoft.Build.Engine (2)
Engine\Project.cs (1)
3090return Utilities.RemoveXmlNamespace(idElement.InnerXml);
Items\BuildItem.cs (1)
1624destinationItem.SetMetadata(child.Name, child.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)
173get { 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);
System.Web.Services.Description (1)
System\Web\Services\Description\ServiceDescription.cs (1)
489return _documentationElement.InnerXml;