5 overrides of ReadInnerXml
System.Private.DataContractSerialization (1)
System\Xml\XmlDictionaryReader.cs (1)
1531public override string ReadInnerXml()
System.Private.Xml (2)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
721public override string ReadInnerXml()
System\Xml\Xsl\XsltOld\ReaderOutput.cs (1)
433public override string ReadInnerXml()
System.ServiceModel.Primitives (2)
Internals\System\Xml\XmlMtomReader.cs (2)
919public override string ReadInnerXml() 1676public override string ReadInnerXml()
20 references to ReadInnerXml
Microsoft.AspNetCore.Mvc.Formatters.Xml (3)
ProblemDetailsWrapper.cs (1)
77var value = reader.ReadInnerXml();
SerializableErrorWrapper.cs (1)
68var value = reader.ReadInnerXml();
ValidationProblemDetailsWrapper.cs (1)
64var value = reader.ReadInnerXml();
Microsoft.CodeAnalysis.Workspaces (9)
Shared\Utilities\DocumentationComment.cs (9)
235_comment.ExampleText = TrimEachLine(reader.ReadInnerXml()); 239_comment.SummaryText = TrimEachLine(reader.ReadInnerXml()); 243_comment.ReturnsText = TrimEachLine(reader.ReadInnerXml()); 247_comment.ValueText = TrimEachLine(reader.ReadInnerXml()); 251_comment.RemarksText = TrimEachLine(reader.ReadInnerXml()); 256var paramText = reader.ReadInnerXml(); 267var typeParamText = reader.ReadInnerXml(); 278var exceptionText = reader.ReadInnerXml(); 299reader.ReadInnerXml();
PresentationBuildTasks (1)
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\XamlReaderHelper.cs (1)
3899string text = XmlReader.ReadInnerXml();
System.Data.Common (2)
System\Data\SQLTypes\SqlXml.cs (2)
215r.ReadInnerXml(); 225sw.Write(r.ReadInnerXml());
System.Private.DataContractSerialization (1)
System\Xml\XmlDictionaryReader.cs (1)
1533return _reader.ReadInnerXml();
System.Private.Xml (1)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
724return _coreReader.ReadInnerXml();
System.ServiceModel.Primitives (1)
Internals\System\Xml\XmlMtomReader.cs (1)
921return _xmlReader.ReadInnerXml();
System.ServiceModel.Syndication (1)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
588string val = (kind == TextSyndicationContentKind.XHtml) ? reader.ReadInnerXml() : reader.ReadElementString();
System.Xaml (1)
System\Xaml\Parser\XamlScanner.cs (1)
522string xmlData = _xmlReader.ReadInnerXml();