RasDialOptionsConverter.GetProperties Method (ITypeDescriptorContext, Object, Attribute[])

DotRas SDK

Collapse image Expand Image Copy image CopyHover image
Returns a collection of properties for the type of array specified by the value parameter, using the specified context.

Namespace: DotRas
Assembly: DotRas (in DotRas.dll) Version: 1.3.5166.33435 (1.3.0.0)

Syntax

C#
public override PropertyDescriptorCollection GetProperties(
	ITypeDescriptorContext context,
	Object value,
	Attribute[] attributes
)
Visual Basic
Public Overrides Function GetProperties ( 
	context As ITypeDescriptorContext,
	value As Object,
	attributes As Attribute()
) As PropertyDescriptorCollection
Visual C++
public:
virtual PropertyDescriptorCollection^ GetProperties(
	ITypeDescriptorContext^ context, 
	Object^ value, 
	array<Attribute^>^ attributes
) override
F#
abstract GetProperties : 
        context : ITypeDescriptorContext * 
        value : Object * 
        attributes : Attribute[] -> PropertyDescriptorCollection 
override GetProperties : 
        context : ITypeDescriptorContext * 
        value : Object * 
        attributes : Attribute[] -> PropertyDescriptorCollection 

Parameters

context
Type: System.ComponentModel..::..ITypeDescriptorContext
An ITypeDescriptorContext that provides a format context.
value
Type: System..::..Object
An Object that specifies the type of array for which to get properties.
attributes
Type: array<System..::..Attribute>[]()[][]
An array of attributes that is used as a filter.

Return Value

Type: PropertyDescriptorCollection
A PropertyDescriptorCollection with the properties that are exposed for this data type, or a null reference (Nothing in Visual Basic) if there are no properties.

See Also