NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

TypedReference.MakeTypedReference

Makes a TypedReference for the specified target object using the specifying fields.

[Visual Basic]
Public Shared Function MakeTypedReference( _
   ByVal target As Object, _
   ByVal flds() As FieldInfo _
) As TypedReference
[C#]
public static TypedReference MakeTypedReference(
   object target,
   FieldInfo[] flds
);
[C++]
public: static TypedReference MakeTypedReference(
   Object* target,
   FieldInfo* flds[]
);
[JScript]
public static function MakeTypedReference(
   target : Object,
   flds : FieldInfo[]
) : TypedReference;

Parameters

target
The target object that defines the Type of the TypedReference.
flds
[To be supplied.]

Exceptions

Exception Type Condition
ArgumentNullException target or flds is a null reference (in Visual Basic Nothing).
ArgumentException The flds array has no elements.

See Also

TypedReference Structure | TypedReference Members | System Namespace