Condividi tramite


FormsAuthenticationConfiguration.Credentials Proprietà

Definizione

Ottiene l'insieme FormsAuthenticationCredentials dei nomi utente e delle password.

public:
 property System::Web::Configuration::FormsAuthenticationCredentials ^ Credentials { System::Web::Configuration::FormsAuthenticationCredentials ^ get(); };
[System.Configuration.ConfigurationProperty("credentials")]
public System.Web.Configuration.FormsAuthenticationCredentials Credentials { get; }
[<System.Configuration.ConfigurationProperty("credentials")>]
member this.Credentials : System.Web.Configuration.FormsAuthenticationCredentials
Public ReadOnly Property Credentials As FormsAuthenticationCredentials

Valore della proprietà

Insieme FormsAuthenticationCredentials che contiene i nomi utente e le password.

Attributi

Esempio

Nell'esempio di codice seguente viene illustrato come accedere alla proprietà Credentials. Fare riferimento all'esempio di codice nell'argomento della FormsAuthenticationConfiguration classe per informazioni su come ottenere la sezione .

// Get the current Credentials.
FormsAuthenticationCredentials currentCredentials = 
    formsAuthentication.Credentials;

StringBuilder credentials = new StringBuilder();
// Get all the credentials.
for (System.Int32 i = 0; i < currentCredentials.Users.Count; i++)
{
    credentials.Append("Name: " + 
        currentCredentials.Users[i].Name + 
        " Password: " + 
        currentCredentials.Users[i].Password);
    credentials.Append(Environment.NewLine);
}
' Get the current Credentials.
  Dim currentCredentials _
  As FormsAuthenticationCredentials = _
  formsAuthentication.Credentials

Dim credentials As New StringBuilder()
' Get all the credentials.
Dim i As System.Int32
For i = 0 To currentCredentials.Users.Count - 1
      credentials.Append(("Name: " + _
      currentCredentials.Users(i).Name + _
      " Password: " + _
      currentCredentials.Users(i).Password))
   credentials.Append(Environment.NewLine)
  Next i

Commenti

La Credentials proprietà ottiene i nomi utente e le password da utilizzare durante l'autenticazione basata su form.

Nota

Quando è necessaria la sicurezza, è consigliabile usare modi alternativi per archiviare i nomi utente e le password; ad esempio in un archivio di database. Se si decide di usare questa raccolta, è consigliabile usare la funzionalità di crittografia fornita.

Si applica a