JwtWebApi.Areas.HelpPage.XmlDocumentationProvider.XmlDocumentationProvider C# (CSharp) Méthode

XmlDocumentationProvider() public méthode

Initializes a new instance of the XmlDocumentationProvider class.
public XmlDocumentationProvider ( string documentPath ) : System
documentPath string The physical path to XML document.
Résultat System
        public XmlDocumentationProvider(string documentPath)
        {
            if (documentPath == null)
            {
                throw new ArgumentNullException("documentPath");
            }
            XPathDocument xpath = new XPathDocument(documentPath);
            _documentNavigator = xpath.CreateNavigator();
        }