Condividi tramite


OutputCacheProfileCollection.Set(OutputCacheProfile) Metodo

Definizione

Imposta l'oggetto OutputCacheProfile specificato.

public:
 void Set(System::Web::Configuration::OutputCacheProfile ^ user);
public void Set (System.Web.Configuration.OutputCacheProfile user);
member this.Set : System.Web.Configuration.OutputCacheProfile -> unit
Public Sub Set (user As OutputCacheProfile)

Parametri

user
OutputCacheProfile

Elemento OutputCacheProfileCollection da impostare.

Eccezioni

Esempio

Nell'esempio di codice riportato di seguito viene illustrato come utilizzare il metodo Set.

// Using method RemoveAt.
formsAuthenticationCredentials.Users.RemoveAt(0);

if (!authenticationSection.SectionInformation.IsLocked)
{
    configuration.Save();
}
' Using method RemoveAt.
formsAuthenticationCredentials.Users.RemoveAt(0)

If Not authenticationSection.SectionInformation.IsLocked Then
   configuration.Save()
End If

Commenti

Il Set metodo modifica un elemento esistente OutputCacheProfileCollection .

Si applica a

Vedi anche