ProviderSettings Constructors

Definition

Initializes a new instance of the ProviderSettings class.

Overloads

ProviderSettings()

Initializes a new instance of the ProviderSettings class.

ProviderSettings(String, String)

Initializes a new instance of the ProviderSettings class.

Remarks

Use this constructor to create a new ProviderSettings instance.

ProviderSettings()

Source:
ProviderSettings.cs
Source:
ProviderSettings.cs
Source:
ProviderSettings.cs

Initializes a new instance of the ProviderSettings class.

public:
 ProviderSettings();
public ProviderSettings ();
Public Sub New ()

Remarks

Initializes a new instance of the ProviderSettings class.

Use this constructor to create a new ProviderSettings instance.

Applies to

ProviderSettings(String, String)

Source:
ProviderSettings.cs
Source:
ProviderSettings.cs
Source:
ProviderSettings.cs

Initializes a new instance of the ProviderSettings class.

public:
 ProviderSettings(System::String ^ name, System::String ^ type);
public ProviderSettings (string name, string type);
new System.Configuration.ProviderSettings : string * string -> System.Configuration.ProviderSettings
Public Sub New (name As String, type As String)

Parameters

name
String

The name of the provider to configure settings for.

type
String

The type of the provider to configure settings for.

Remarks

Use this constructor to create a new ProviderSettings instance with the specified name and type.

Applies to