ProtectedConfiguration.DataProtectionProviderName Campo

Definizione

Nome del provider di protezione dei dati.

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

Valore del campo

Esempio

Nell'esempio seguente viene illustrato come utilizzare la DataProtectionProviderName proprietà per recuperare il nome del provider di protezione dati corrente.

// 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)

Commenti

Si tratta di una variabile stringa costante che contiene il nome del provider di protezione dati reso disponibile dal sistema per proteggere una sezione di configurazione.

Si applica a

Vedi anche