示例#1
0
 /// <summary>
 /// Gets a boolean field; saves its value into the parameter object, which is also the return value.
 /// </summary>
 /// <param name="field">this field's tag is used to extract the value from the message; that value is saved back into this object</param>
 /// <exception cref="FieldNotFoundException">thrown if <paramref name="field"/> isn't found</exception>
 /// <returns><paramref name="field"/></returns>
 public Fields.BooleanField GetField(Fields.BooleanField field)
 {
     field.Obj = GetBoolean(field.Tag);
     return(field);
 }
示例#2
0
 public void GetField(Fields.BooleanField field)
 {
     field.Obj = GetBoolean(field.Tag);
 }