ConfigurationProperty.Type 属性

定义

获取此 ConfigurationProperty 对象的类型。

此 API 支持产品基础结构,不能在代码中直接使用。

public:
 property Type ^ Type { Type ^ get(); };
public Type Type { get; }
member this.Type : Type
Public ReadOnly Property Type As Type

属性值

一个表示此 Type 对象的类型的 ConfigurationProperty

示例

以下示例演示如何获取 Type 指定的 configuration-property 对象的属性值。

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

注解

使用 Type 确定 此派生实例的完全限定命名空间 ConfigurationProperty和类名。

适用于

另请参阅