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!

IExpando.AddField

Adds the named field to the Reflection object.

[Visual Basic]
Function AddField( _
   ByVal name As String _
) As FieldInfo
[C#]
FieldInfo AddField(
   string name
);
[C++]
FieldInfo* AddField(
   String* name
) = 0;
[JScript]
function AddField(
   name : String
) : FieldInfo;

Parameters

name
The name of the field.

Return Value

A FieldInfo object representing the added field.

See Also

IExpando Interface | IExpando Members | System.Runtime.InteropServices.Expando Namespace