Aracılığıyla paylaş


OutputCacheProfileCollection.Get Yöntem

Tanım

Belirtilen OutputCacheProfileCollection öğeyi alır.

Aşırı Yüklemeler

Get(Int32)

Belirtilen dizindeki OutputCacheProfile öğesini alır.

Get(String)

OutputCacheProfile Belirtilen ada sahip öğesini alır.

Get(Int32)

Belirtilen dizindeki OutputCacheProfile öğesini alır.

public:
 System::Web::Configuration::OutputCacheProfile ^ Get(int index);
public System.Web.Configuration.OutputCacheProfile Get (int index);
member this.Get : int -> System.Web.Configuration.OutputCacheProfile
Public Function Get (index As Integer) As OutputCacheProfile

Parametreler

index
Int32

öğesinin OutputCacheProfileCollection dizini.

Döndürülenler

OutputCacheProfile Belirtilen dizindeki öğesi.

Örnekler

Aşağıdaki kod örneğinde yönteminin nasıl kullanılacağı gösterilmektedir Get .

// Get the profile with the specified name.
System.Web.Configuration.OutputCacheProfile outputCacheProfile4 =
  outputCacheProfiles.Get("MyCacheProfile");
'Get the profile with the specified name.
Dim outputCacheProfile4 _
As System.Web.Configuration.OutputCacheProfile = _
outputCacheProfiles.Get("MyCacheProfile")

Ayrıca bkz.

Şunlara uygulanır

Get(String)

OutputCacheProfile Belirtilen ada sahip öğesini alır.

public:
 System::Web::Configuration::OutputCacheProfile ^ Get(System::String ^ name);
public System.Web.Configuration.OutputCacheProfile Get (string name);
member this.Get : string -> System.Web.Configuration.OutputCacheProfile
Public Function Get (name As String) As OutputCacheProfile

Parametreler

name
String

Öğesinin OutputCacheProfileCollection adı.

Döndürülenler

OutputCacheProfile Belirtilen ada sahip öğe.

Örnekler

Aşağıdaki kod örneğinde yönteminin nasıl kullanılacağı gösterilmektedir Get .

// Get the profile with the specified name.
System.Web.Configuration.OutputCacheProfile outputCacheProfile4 =
  outputCacheProfiles.Get("MyCacheProfile");
'Get the profile with the specified name.
Dim outputCacheProfile4 _
As System.Web.Configuration.OutputCacheProfile = _
outputCacheProfiles.Get("MyCacheProfile")

Ayrıca bkz.

Şunlara uygulanır