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)); }
public FirewallException(SerializationInfo info, StreamingContext context) { Name = (string)info.GetValue("name", typeof(string)); Options = (WAttributes)info.GetValue("options", typeof(WAttributes)); }
public void SetAttributes(WAttributes attributes) { Attributes = attributes; }