mscorlib(4.0.0.0) API with additions
ExpandableObjectConverter.cs
2 
3 namespace System.ComponentModel
4 {
6  [HostProtection(SecurityAction.LinkDemand, SharedState = true)]
8  {
14  public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes)
15  {
16  return TypeDescriptor.GetProperties(value, attributes);
17  }
18 
23  public override bool GetPropertiesSupported(ITypeDescriptorContext context)
24  {
25  return true;
26  }
27  }
28 }
override bool GetPropertiesSupported(ITypeDescriptorContext context)
Gets a value indicating whether this object supports properties using the specified context.
Represents the base class for custom attributes.
Definition: Attribute.cs:15
Definition: __Canon.cs:3
Provides a type converter to convert expandable objects to and from various other representations.
Provides contextual information about a component, such as its container and property descriptor.
SecurityAction
Specifies the security actions that can be performed using declarative security.
Provides information about the characteristics for a component, such as its attributes,...
static PropertyDescriptorCollection GetProperties(Type componentType)
Returns the collection of properties for a specified type of component.
Represents a collection of T:System.ComponentModel.PropertyDescriptor objects.
override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes)
Gets a collection of properties for the type of object specified by the value parameter.
Provides a unified way of converting types of values to other types, as well as for accessing standar...