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.GetProperties (Object)

Retrieves the set of properties for this type. By default, a type has does not return any properties. An easy implementation of this method can just call TypeDescriptor.GetProperties for the correct data type.

[Visual Basic]
Overloads Public Function GetProperties( _
   ByVal value As Object _
) As PropertyDescriptorCollection
[C#]
public PropertyDescriptorCollection GetProperties(
   object value
);
[C++]
public: PropertyDescriptorCollection* GetProperties(
   Object* value
);
[JScript]
public function GetProperties(
   value : Object
) : PropertyDescriptorCollection;

Parameters

value
The value of the object to get the properties for.

Return Value

A PropertyDescriptorCollection that specifies the set of properties for this data type. this will return null if

The set of properties that should be exposed for this data type. If no properties should be exposed, thsi may return null. The default implementation always returns null.

Remarks

As implemented in this class, returns a null reference (in Visual Basic Nothing).

See Also

TypeConverter Class | TypeConverter Members | System.ComponentModel Namespace | TypeConverter.GetProperties Overload List