Inheritance: AbstractTaggedArrayTO
コード例 #1
0
ファイル: TaggedDrgArrays.cs プロジェクト: OSEHRA/mdws
 public TaggedDrgArrays(IndexedHashtable t)
 {
     if (t.Count == 0)
     {
         return;
     }
     arrays = new TaggedDrgArray[t.Count];
     for (int i = 0; i < t.Count; i++)
     {
         if (MdwsUtils.isException(t.GetValue(i)))
         {
             fault = new FaultTO((Exception)t.GetValue(i));
         }
         else if (t.GetValue(i) == null)
         {
             arrays[i] = new TaggedDrgArray((string)t.GetKey(i));
         }
         else if (t.GetValue(i).GetType().IsArray)
         {
             arrays[i] = new TaggedDrgArray((string)t.GetKey(i), (Drg[])t.GetValue(i));
         }
         else
         {
             arrays[i] = new TaggedDrgArray((string)t.GetKey(i), (Drg)t.GetValue(i));
         }
     }
     count = t.Count;
 }
コード例 #2
0
 public TaggedDrgArrays(IndexedHashtable t)
 {
     if (t.Count == 0)
     {
         return;
     }
     arrays = new TaggedDrgArray[t.Count];
     for (int i = 0; i < t.Count; i++)
     {
         if (MdwsUtils.isException(t.GetValue(i)))
         {
             fault = new FaultTO((Exception)t.GetValue(i));
         }
         else if (t.GetValue(i) == null)
         {
             arrays[i] = new TaggedDrgArray((string)t.GetKey(i));
         }
         else if (t.GetValue(i).GetType().IsArray)
         {
             arrays[i] = new TaggedDrgArray((string)t.GetKey(i), (Drg[])t.GetValue(i));
         }
         else
         {
             arrays[i] = new TaggedDrgArray((string)t.GetKey(i), (Drg)t.GetValue(i));
         }
     }
     count = t.Count;
 }