コード例 #1
0
 internal void AddKeyHash(System.Text.StringBuilder sb)
 {
     sb.Append("SAO ");
     foreach (DictionaryEntry entry in overrides)
     {
         SoapAttributes val = (SoapAttributes)overrides [entry.Key];
         sb.Append(entry.Key.ToString()).Append(' ');
         val.AddKeyHash(sb);
     }
     sb.Append("|");
 }
コード例 #2
0
 internal void AddKeyHash(StringBuilder sb)
 {
     sb.Append("SAO ");
     foreach (object obj in this.overrides)
     {
         DictionaryEntry dictionaryEntry = (DictionaryEntry)obj;
         SoapAttributes  soapAttributes  = (SoapAttributes)this.overrides[dictionaryEntry.Key];
         sb.Append(dictionaryEntry.Key.ToString()).Append(' ');
         soapAttributes.AddKeyHash(sb);
     }
     sb.Append("|");
 }