Gurux.DLMS.GXDLMSTranslator.ReadAllNodes C# (CSharp) Méthode

ReadAllNodes() private static méthode

private static ReadAllNodes ( XmlDocument doc, GXDLMSXmlSettings s ) : void
doc System.Xml.XmlDocument
s GXDLMSXmlSettings
Résultat void
        private static void ReadAllNodes(XmlDocument doc, GXDLMSXmlSettings s)
        {
            if (doc != null)
            {
                foreach (XmlNode node in doc.ChildNodes)
                {
                    if (node.NodeType == XmlNodeType.Element)
                    {
                        ReadNode(node, s);
                    }
                }
            }
        }