CSMSL.IO.PepXML.PepXmlReader.PepXmlReader C# (CSharp) Метод

PepXmlReader() публичный Метод

public PepXmlReader ( string filePath ) : System
filePath string
Результат System
        public PepXmlReader(string filePath)
        {
            FilePath = filePath;
            _document = new XmlDocument();
            _document.Load(filePath);
            _root = _document.DocumentElement;
            _nsmgr = new XmlNamespaceManager(_document.NameTable);
            _nsmgr.AddNamespace("pepxml", "http://regis-web.systembiology.net/pepXML");
        }