7 overrides of InnerText
dotnet-svcutil-lib (7)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlAttribute.cs (1)
122
public override String
InnerText
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlCharacterData.cs (1)
33
public override string
InnerText
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDeclaration.cs (1)
74
public override string
InnerText
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (1)
1308
public override string
InnerText
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlElement.cs (1)
584
public override string
InnerText
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlEntity.cs (1)
67
public override string
InnerText
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlProcessingInstruction.cs (1)
75
public override string
InnerText
4 writes to InnerText
dotnet-svcutil-lib (4)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXPathNavigator.cs (2)
60
node.
InnerText
= value;
82
node.
InnerText
= value;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlAttribute.cs (2)
129
base.
InnerText
= value;
134
base.
InnerText
= value;
5 references to InnerText
dotnet-svcutil-lib (5)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXPathNavigator.cs (1)
177
return _source.
InnerText
;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlAttribute.cs (1)
128
string innerText = base.
InnerText
;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlElement.cs (1)
588
return base.
InnerText
;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlEntity.cs (1)
69
get { return base.
InnerText
; }
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNode.cs (1)
894
builder.Append(child.
InnerText
);