コード例 #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
ファイル: FirewallException.cs プロジェクト: glcjr/Wixard
 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;
 }