ProviderSettings.Type 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 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.