ConnectionStringSettings.ProviderName 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 provider name property.
public:
 property System::String ^ ProviderName { System::String ^ get(); void set(System::String ^ value); };
	[System.Configuration.ConfigurationProperty("providerName", DefaultValue="System.Data.SqlClient")]
public string ProviderName { get; set; }
	public string ProviderName { get; set; }
	[<System.Configuration.ConfigurationProperty("providerName", DefaultValue="System.Data.SqlClient")>]
member this.ProviderName : string with get, set
	member this.ProviderName : string with get, set
	Public Property ProviderName As String
	Property Value
The ProviderName property.
- Attributes
 
Examples
The following example shows how to use the ProviderName property.
Console.WriteLine($"  Provider Name: {cs.ProviderName}");
Console.WriteLine( _
"  Provider Name: {0}", cs.ProviderName)