ProviderSettings.Name 属性

定义

获取或设置由此类配置的提供程序的名称。Gets or sets the name of the provider configured by this class.

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

属性值

String

提供程序的名称。The name of the provider.

属性

示例

下面的代码示例演示如何访问 Name 属性。The following code example shows how to access the Name property.


Console.WriteLine(
    "Provider settings name: {0}",
    pSettings.Name);

Console.WriteLine( _
"Provider settings name: {0}", _
pSettings.Name)

注解

此属性的值与在 Name name 类配置的提供程序的配置节中出现的特性的值相同 ProviderSettingsThis value of the Name property is the same as the value for the name attribute that appears in the configuration section for the provider that is configured by the ProviderSettings class.

适用于