ConfigurationProperty.Type Property

 

This API supports the product infrastructure and is not intended to be used directly from your code.

Gets the type of this ConfigurationProperty object.

Namespace:   System.Configuration
Assembly:  System.Configuration (in System.Configuration.dll)

Public ReadOnly Property Type As Type

Property Value

Type: System.Type

A Type representing the type of this ConfigurationProperty object.

Use Type to determine the fully qualified namespace and class name for this derived instance of ConfigurationProperty.

The following example shows how to get the Type property value for a specified configuration-property object.

Dim type As String = _MaxIdleTime.Type.ToString()
Console.WriteLine("MaxIdleTime type: {0}", type)

.NET Framework
Available since 2.0
Return to top
Show: