Exemple #1
0
 public void ReadXML(XmlElement node)
 {
     Title      = Utils.XmlGetAttributeString(node, "title", "");
     Protocol   = Utils.XmlGetAttributeString(node, "protocol", "").ToUpperInvariant();
     Port       = Utils.XmlGetAttributeInt(node, "port", 0);
     EntryIndex = Utils.XmlGetAttributeInt(node, "entry_index", 0);
     Specs      = Utils.XmlGetAttributeString(node, "specs", "");
     MinVersion = Utils.XmlGetAttributeString(node, "openvpn_minversion", "");
     Directives = Utils.XmlGetAttributeString(node, "openvpn_directives", "");
 }