ConfigurationProperty.Converter Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the TypeConverter used to convert this ConfigurationProperty into an XML representation for writing to the configuration file.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
property System::ComponentModel::TypeConverter ^ Converter { System::ComponentModel::TypeConverter ^ get(); };
public System.ComponentModel.TypeConverter Converter { get; }
member this.Converter : System.ComponentModel.TypeConverter
Public ReadOnly Property Converter As TypeConverter
Property Value
A TypeConverter used to convert this ConfigurationProperty into an XML representation for writing to the configuration file.
Exceptions
This ConfigurationProperty cannot be converted.
Examples
The following code example shows how to use the Converter property to get the TypeConverter for a specified configuration-property object.
string converter = _MaxIdleTime.Converter.ToString();
Console.WriteLine("MaxIdleTime coverter: {0}", converter);
Dim converter As String = _MaxIdleTime.Converter.ToString()
Console.WriteLine("MaxIdleTime coverter: {0}", converter)