Beispiel #1
0
 public Element(SerializationInfo info, StreamingContext context)
 {
     XMLRoot     = (string)info.GetValue("xmlroot", typeof(string));
     ElementName = (string)info.GetValue("ename", typeof(string));
     Attributes  = (WAttributes)info.GetValue("waatributes", typeof(WAttributes));
 }
Beispiel #2
0
 public FirewallException(SerializationInfo info, StreamingContext context)
 {
     Name    = (string)info.GetValue("name", typeof(string));
     Options = (WAttributes)info.GetValue("options", typeof(WAttributes));
 }
Beispiel #3
0
 public void SetAttributes(WAttributes attributes)
 {
     Attributes = attributes;
 }