예제 #1
0
파일: Element.cs 프로젝트: glcjr/Wixard
 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));
 }
예제 #2
0
 public FirewallException(SerializationInfo info, StreamingContext context)
 {
     Name    = (string)info.GetValue("name", typeof(string));
     Options = (WAttributes)info.GetValue("options", typeof(WAttributes));
 }
예제 #3
0
파일: Element.cs 프로젝트: glcjr/Wixard
 public void SetAttributes(WAttributes attributes)
 {
     Attributes = attributes;
 }