コード例 #1
0
 public void UpdateField(string name, object value)
 {
     if (this.updateFields == null)
     {
         this.updateFields = new CommonPropertiesContainer();
     }
     this.updateFields.Add(name, value);
 }
コード例 #2
0
 public void UpdateFields(Dictionary <string, object> fields)
 {
     if (this.updateFields == null)
     {
         this.updateFields = new CommonPropertiesContainer();
     }
     foreach (string key in fields.Keys)
     {
         this.updateFields.Add(key, fields[key]);
     }
 }