DataMemberConverter Class
.NET Framework 3.0
Provides a type converter that can retrieve a list of data members from the current component's selected data source.
Namespace: System.Web.UI.Design
Assembly: System.Design (in system.design.dll)
Assembly: System.Design (in system.design.dll)
DataMemberConverter provides methods that can retrieve a list of data members from the current data source of a design-time component.
This type converter is used by Visual Studio 2005 to provide the values that appear in the list of data members in the Properties window.
Caution: |
|---|
| You should never access a type converter directly. Instead, call the appropriate converter by using TypeDescriptor. For more information, see the examples in the TypeConverter base class. |
For more information about type converters, see the TypeConverter base class and How to: Implement a Type Converter.
// Associates the DataMemberConverter with a string property. public: [TypeConverterAttribute(DataMemberConverter::typeid)] property String^ dataMember { String^ get() { return member; } void set( String^ value ) { member = value; } } private: String^ member;
// Associates the DataMemberConverter with a string property.
/** @attribute TypeConverterAttribute(DataMemberConverter.class)
*/
/** @property
*/
public String get_dataMember()
{
return member;
} //get_dataMember
/** @property
*/
public void set_dataMember(String value)
{
member = value;
} //set_dataMember
private String member;
- SecurityPermission for calling unmanaged code. Demand value: Demand; Associated enumeration: UnmanagedCode.
Community Additions
ADD
Show:
Caution: