SharpMap.Web.Wms.Client.ParseExceptions C# (CSharp) Метод

ParseExceptions() приватный Метод

Parses valid exceptions
private ParseExceptions ( XmlNode xnlExceptionNode ) : void
xnlExceptionNode System.Xml.XmlNode
Результат void
        private void ParseExceptions(XmlNode xnlExceptionNode)
        {
            XmlNodeList xnlFormats = xnlExceptionNode.SelectNodes("sm:Format", nsmgr);
            if (xnlFormats != null)
            {
                _ExceptionFormats = new string[xnlFormats.Count];
                for (int i = 0; i < xnlFormats.Count; i++)
                {
                    _ExceptionFormats[i] = xnlFormats[i].InnerText;
                }
            }
        }