Base:
property
InnerXml
System.Xml.XmlNode.InnerXml
1 override of InnerXml
System.Data.Common (1)
System\Xml\XmlBoundElement.cs (1)
152public override string InnerXml
4 writes to InnerXml
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!;
6 references to InnerXml
IOperationGenerator (1)
IOperationClassWriter.cs (1)
247string[] lines = el.InnerXml.Split(separators, StringSplitOptions.RemoveEmptyEntries);
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)
715byte[] plainText = (content ? _encoding.GetBytes(inputElement.InnerXml) : _encoding.GetBytes(inputElement.OuterXml));
System\Security\Cryptography\Xml\SignedInfo.cs (1)
249_signatureLength = signatureLengthElement.InnerXml;
System\Security\Cryptography\Xml\XmlDsigXPathTransform.cs (1)
50_xpathexpr = elem.InnerXml.Trim(null);