コード例 #1
0
ファイル: DCPType.cs プロジェクト: galchen/brutile
 public DCPType(XElement node, string @namespace)
 {
     var element = node.Element(XName.Get("HTTP", @namespace));
     if (element != null)
         Http = new Http(element, @namespace);
 }
コード例 #2
0
ファイル: DCPType.cs プロジェクト: galchen/brutile
 public DCPType()
 {
     Http = new Http();
 }