IXmlDocParser
Pennington.ApiMetadata
Parses raw xmldoc XML (the string returned by ISymbol.GetDocumentationCommentXml() or the summary/remarks text in DocFx ManagedReference YAML) into a structured ParsedXmlDoc tree.
Methods
Parse
#public ParsedXmlDoc Parse(string xmlDocumentation)
Parses the given xmldoc XML string and returns a structured tree, or Empty when the input is null, empty, or malformed.
Parameters
xmlDocumentationstring
Returns
ParsedXmlDocPennington.ApiMetadata.IXmlDocParser
namespace Pennington.ApiMetadata;
/// Parses raw xmldoc XML (the string returned by ISymbol.GetDocumentationCommentXml() or the summary/remarks text in DocFx ManagedReference YAML) into a structured ParsedXmlDoc tree.
public interface IXmlDocParser
{
/// Parses the given xmldoc XML string and returns a structured tree, or Empty when the input is null, empty, or malformed.
public ParsedXmlDoc Parse(string xmlDocumentation)
;
}