Share via


OutputCacheProfileCollection.Set(OutputCacheProfile) 方法

定義

設定指定的 OutputCacheProfile 物件。

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)

參數

user
OutputCacheProfile

要設定的 OutputCacheProfileCollection 項目。

例外狀況

範例

下列程式碼範例示範如何使用 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

備註

方法 Set 會修改現有的 OutputCacheProfileCollection 專案。

適用於

另請參閱