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 元素。

适用于

另请参阅