DataFieldConverter Class
.NET Framework 3.0
Provides a type converter that can retrieve a list of data fields 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)
DataFieldConverter can retrieve a list of data fields 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 fields 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 DataFieldConverter with a string property. [TypeConverterAttribute(typeof(DataMemberConverter))] public string dataField { get { return field; } set { field = value; } } private string field;
// Associates the DataFieldConverter with a string property.
/** @attribute TypeConverterAttribute(DataMemberConverter.class)
*/
/** @property
*/
public String get_dataField()
{
return field;
} //get_dataField
/** @property
*/
public void set_dataField(String value)
{
field = value;
} //set_dataField
private String field;
- SecurityPermission for calling unmanaged code. Demand value: Demand; Associated enumeration: UnmanagedCode.
Community Additions
ADD
Show:
Caution: