예제 #1
0
 public static CT_Sets Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_Sets ctObj = new CT_Sets();
     if (node.Attributes["count"] != null)
         ctObj.count = XmlHelper.ReadUInt(node.Attributes["count"]);
     ctObj.set = new List<CT_Set>();
     foreach (XmlNode childNode in node.ChildNodes)
     {
         if (childNode.LocalName == "set")
             ctObj.set.Add(CT_Set.Parse(childNode, namespaceManager));
     }
     return ctObj;
 }
예제 #2
0
 public CT_TupleCache()
 {
     this.extLstField = new CT_ExtensionList();
     this.serverFormatsField = new CT_ServerFormats();
     this.queryCacheField = new CT_QueryCache();
     this.setsField = new CT_Sets();
     this.entriesField = new CT_PCDSDTCEntries();
 }