ProtectedConfiguration.DataProtectionProviderName 字段

定义

数据保护提供程序的名称。

public: System::String ^ DataProtectionProviderName;
public const string DataProtectionProviderName;
val mutable DataProtectionProviderName : string
Public Const DataProtectionProviderName As String 

字段值

示例

以下示例演示如何使用 DataProtectionProviderName 属性检索当前数据保护提供程序的名称。

// Get the current provider name.
string dataProtectionProviderName =
   ProtectedConfiguration.DataProtectionProviderName;
Console.WriteLine(
    "Data protection provider name: {0}",
     dataProtectionProviderName);
' Get the current provider name.
  Dim dataProtectionProviderName As String = _
  ProtectedConfiguration.DataProtectionProviderName
  Console.WriteLine( _
  "Data protection provider name: {0}", _
  dataProtectionProviderName)

注解

这是一个常量字符串变量,其中包含系统提供的数据保护提供程序的名称,用于保护配置节。

适用于

另请参阅