共用方式為


ProviderSettings.Type 屬性

定義

取得或設定由這個類別所設定的提供者型別。

public:
 property System::String ^ Type { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("type", IsRequired=true)]
public string Type { get; set; }
public string Type { get; set; }
[<System.Configuration.ConfigurationProperty("type", IsRequired=true)>]
member this.Type : string with get, set
member this.Type : string with get, set
Public Property Type As String

屬性值

提供者型別的完整命名空間和類別名稱,該提供者由這個 ProviderSettings 執行個體設定。

屬性

範例

下列程式碼範例示範如何存取 Type 屬性。

Console.WriteLine(
    "Provider settings type: {0}",
       pSettings.Type);
Console.WriteLine( _
"Provider settings type: {0}", _
pSettings.Type)

備註

屬性 Type 包含 類別所 ProviderSettings 設定之提供者的完整命名空間和類別名稱。

適用於