OutputCacheProfileCollection.Get 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取指定的 OutputCacheProfileCollection 元素。
重载
Get(Int32) |
获取指定索引处的 OutputCacheProfile 元素。 |
Get(String) |
获取具有指定名称的 OutputCacheProfile 元素。 |
Get(Int32)
获取指定索引处的 OutputCacheProfile 元素。
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
参数
- index
- Int32
OutputCacheProfileCollection 元素的索引。
返回
指定索引处的 OutputCacheProfile 元素。
示例
下面的代码示例说明如何使用 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")
另请参阅
适用于
Get(String)
获取具有指定名称的 OutputCacheProfile 元素。
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
参数
- name
- String
返回
具有指定名称的 OutputCacheProfile 元素。
示例
下面的代码示例说明如何使用 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")