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!

TypeConverter.CreateInstance (IDictionary)

Creates an instance of this type given a set of property values for the object. This is useful for objects that are immutable, but still want to provide changable properties.

[Visual Basic]
Overloads Public Function CreateInstance( _
   ByVal propertyValues As IDictionary _
) As Object
[C#]
public object CreateInstance(
   IDictionary propertyValues
);
[C++]
public: Object* CreateInstance(
   IDictionary* propertyValues
);
[JScript]
public function CreateInstance(
   propertyValues : IDictionary
) : Object;

Parameters

propertyValues
An IDictionary that represents a dictionary of new property values. The dictionary contains a series of name-value pairs, one for each property returned from GetProperties.

See Also

TypeConverter Class | TypeConverter Members | System.ComponentModel Namespace | TypeConverter.CreateInstance Overload List | IDictionary