Returns a collection of properties for the type of array specified by the value parameter, using the specified context and attributes.
Assembly: System (in System.dll)
Public Overridable Function GetProperties ( _
context As [%$TOPIC/taw9tc2y_en-us_VS_110_1_0_0_0_0%], _
value As [%$TOPIC/taw9tc2y_en-us_VS_110_1_0_0_0_1%], _
attributes As [%$TOPIC/taw9tc2y_en-us_VS_110_1_0_0_0_2%]() _
) As [%$TOPIC/taw9tc2y_en-us_VS_110_1_0_0_0_3%]
public virtual [%$TOPIC/taw9tc2y_en-us_VS_110_1_0_1_0_0%] GetProperties(
[%$TOPIC/taw9tc2y_en-us_VS_110_1_0_1_0_1%] context,
[%$TOPIC/taw9tc2y_en-us_VS_110_1_0_1_0_2%] value,
[%$TOPIC/taw9tc2y_en-us_VS_110_1_0_1_0_3%][] attributes
)
public:
virtual [%$TOPIC/taw9tc2y_en-us_VS_110_1_0_2_0_0%]^ GetProperties(
[%$TOPIC/taw9tc2y_en-us_VS_110_1_0_2_0_1%]^ context,
[%$TOPIC/taw9tc2y_en-us_VS_110_1_0_2_0_2%]^ value,
array<[%$TOPIC/taw9tc2y_en-us_VS_110_1_0_2_0_3%]^>^ attributes
)
abstract GetProperties :
context:[%$TOPIC/taw9tc2y_en-us_VS_110_1_0_3_0_0%] *
value:[%$TOPIC/taw9tc2y_en-us_VS_110_1_0_3_0_1%] *
attributes:[%$TOPIC/taw9tc2y_en-us_VS_110_1_0_3_0_2%][] -> [%$TOPIC/taw9tc2y_en-us_VS_110_1_0_3_0_3%]
override GetProperties :
context:[%$TOPIC/taw9tc2y_en-us_VS_110_1_0_3_0_4%] *
value:[%$TOPIC/taw9tc2y_en-us_VS_110_1_0_3_0_5%] *
attributes:[%$TOPIC/taw9tc2y_en-us_VS_110_1_0_3_0_6%][] -> [%$TOPIC/taw9tc2y_en-us_VS_110_1_0_3_0_7%]
Parameters
- context
- Type:
System.ComponentModelITypeDescriptorContext
An ITypeDescriptorContext that provides a format context.
- value
- Type:
SystemObject
An Object that specifies the type of array for which to get properties.
- attributes
- Type:
SystemAttribute
An array of type Attribute that is used as a filter.
Return Value
Type: System.ComponentModelPropertyDescriptorCollectionA PropertyDescriptorCollection with the properties that are exposed for this data type, or if there are no properties.
As implemented in this class, this method always returns .
Notes to InheritorsOverride this method if the type you want to convert supports properties.
Use the context parameter to extract additional information about the environment from which this converter is invoked. This parameter can be , so always check it. Also, properties on the context object can return .
The attributes array is used to filter the array. The attributes can have a mix of Type and Attribute objects. Filtering is defined by the following rules:
A Type is treated as a wildcard; it matches a property that has the Type in its set of attributes.
If a property does not have an Attribute of the same class, the property is not included in the returned array.
If the attribute is an instance of Attribute, the property must be an exact match or it is not included in the returned array.
If an Attribute instance is specified and it is the default property, it is included in the returned array even if there is no instance of the Attribute in the property.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.