OutputCacheProfileCollection.Add(OutputCacheProfile) Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Fügt der Auflistung ein OutputCacheProfile Objekt hinzu.
public:
void Add(System::Web::Configuration::OutputCacheProfile ^ name);
public void Add(System.Web.Configuration.OutputCacheProfile name);
member this.Add : System.Web.Configuration.OutputCacheProfile -> unit
Public Sub Add (name As OutputCacheProfile)
Parameter
- name
- OutputCacheProfile
Der Name des OutputCacheProfile Objekts, das der Auflistung hinzugefügt werden soll.
Ausnahmen
Das OutputCacheProfile Objekt ist bereits in der Auflistung vorhanden, oder die Auflistung ist schreibgeschützt.
Beispiele
Das folgende Codebeispiel zeigt, wie die Add Methode verwendet wird.
// Execute the Add method.
System.Web.Configuration.OutputCacheProfile outputCacheProfile0 =
new System.Web.Configuration.OutputCacheProfile("MyCacheProfile");
outputCacheProfile0.Location =
System.Web.UI.OutputCacheLocation.Any;
outputCacheProfile0.NoStore = false;
outputCacheProfiles.Add(outputCacheProfile0);
// Update if not locked.
if (!outputCacheSettings.IsReadOnly())
{
webConfig.Save();
}
' Execute the Add method.
Dim outputCacheProfile0 _
As New System.Web.Configuration.OutputCacheProfile( _
"MyCacheProfile")
outputCacheProfile0.Location = _
System.Web.UI.OutputCacheLocation.Any
outputCacheProfile0.NoStore = _
False
outputCacheProfiles.Add(outputCacheProfile0)
' Update if not locked.
If Not outputCacheSettings.IsReadOnly() Then
webConfig.Save()
End If
Hinweise
Die Auflistung kann kein OutputCacheProfile Objekt mit demselben Namen enthalten.