ProviderSettings.Type Property

Definition

Gets or sets the type of the provider configured by this class.

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

Property Value

The fully qualified namespace and class name for the type of provider configured by this ProviderSettings instance.

Attributes

Examples

The following code example shows how to access the Type property.

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

Remarks

The Type property contains the fully qualified namespace and class name for the provider configured by the ProviderSettings class.

Applies to