LocalizableTypeConverter.GetProperties Method

Definition

Overloads

GetProperties(PropertyInfo[])

Get a collection of PropertyDescriptors describing the properties passed in. The ResourceManager will be retrieved from the declaring type of the first property in the list of properties.

GetProperties(ITypeDescriptorContext, Object, Attribute[])

Get a collection of PropertyDescriptors describing the properties of the input object

GetProperties(PropertyInfo[])

Get a collection of PropertyDescriptors describing the properties passed in. The ResourceManager will be retrieved from the declaring type of the first property in the list of properties.

public System.ComponentModel.PropertyDescriptorCollection GetProperties (System.Reflection.PropertyInfo[] properties);
override this.GetProperties : System.Reflection.PropertyInfo[] -> System.ComponentModel.PropertyDescriptorCollection
Public Function GetProperties (properties As PropertyInfo()) As PropertyDescriptorCollection

Parameters

properties
PropertyInfo[]

Returns

Applies to

GetProperties(ITypeDescriptorContext, Object, Attribute[])

Get a collection of PropertyDescriptors describing the properties of the input object

public override System.ComponentModel.PropertyDescriptorCollection GetProperties (System.ComponentModel.ITypeDescriptorContext context, object value, Attribute[] filter);
override this.GetProperties : System.ComponentModel.ITypeDescriptorContext * obj * Attribute[] -> System.ComponentModel.PropertyDescriptorCollection
Public Overrides Function GetProperties (context As ITypeDescriptorContext, value As Object, filter As Attribute()) As PropertyDescriptorCollection

Parameters

context
ITypeDescriptorContext

Unused, the context of the object

value
Object

The object whose properties are being described

filter
Attribute[]

Unused, attributes to filter the properties with.

Returns

A collection of PropertyDescriptors

Applies to