Example #1
0
 /// <summary>
 /// Gets a char 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.CharField GetField(Fields.CharField field)
 {
     field.Obj = GetChar(field.Tag);
     return(field);
 }
Example #2
0
 public void GetField(Fields.CharField field)
 {
     field.Obj = GetChar(field.Tag);
 }