3.5.4.1 FieldGetter

FieldGetter returns the value of the specified Remote Field. For more information about how this method is used for Remote Fields, see [MS-NRTP] sections 3.1.5.1.3 and 3.1.5.2.3.

 void FieldGetter(String typeName, String fieldName, ref 
 System.Object val);
  

typeName:  A string value that specifies the name of the Server Interface containing the Remote Field. The Server Interface MUST be the Server Type of the Server Object.

fieldName:  A string value that specifies the name of the Remote Field whose value is to be retrieved. The Remote Field MUST be defined in the Server Interface specified by the typeName field.

val:  The value of the Remote Field. This is a ref argument. Its value on input MUST be ignored. An implementation MUST set the argument to the value of the Remote Field.

Exceptions:  In addition to the Exceptions common to all Remote Methods in .NET Remoting (as specified in [MS-NRTP] section 3.2.5.1.7), if the Remote Field specified in the fieldName argument is not defined in the Server Interface specified by the typeName argument, a RemotingException (as specified in [MS-NRTP] section 2.2.2.8) MUST be sent back.