共用方式為


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)

備註

這個常數位串變數,其中包含系統所提供的數據保護提供者名稱,以保護組態區段。

適用於

另請參閱