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!

PropertyValue.MakeArray

Use this to store an array.

[Visual Basic]
Public Shared Function MakeArray( _
   ByVal service As IServiceObjectProvider, _
   ByVal className As String, _
   ByVal elems() As PropertyValue _
) As PropertyValue
[C#]
public static PropertyValue MakeArray(
   IServiceObjectProvider service,
   string className,
   PropertyValue[] elems
);
[C++]
public: static PropertyValue* MakeArray(
   IServiceObjectProvider* service,
   String* className,
   PropertyValue* elems[]
);
[JScript]
public static function MakeArray(
   service : IServiceObjectProvider,
   className : String,
   elems : PropertyValue[]
) : PropertyValue;

Parameters

service
[To be supplied.]
className
the array type, like Integer[]
elems
the values of the array, each represented by a PropertyValue

See Also

PropertyValue Class | PropertyValue Members | System.ComponentModel.Design Namespace