StaticPartialCachingControl 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
创建 StaticPartialCachingControl 对象,以包含缓存的服务器控件内容。
重载
StaticPartialCachingControl(String, String, Int32, String, String, String, BuildMethod)
创建 StaticPartialCachingControl 对象,以包含缓存的服务器控件内容。
public:
StaticPartialCachingControl(System::String ^ ctrlID, System::String ^ guid, int duration, System::String ^ varyByParams, System::String ^ varyByControls, System::String ^ varyByCustom, System::Web::UI::BuildMethod ^ buildMethod);
public StaticPartialCachingControl (string ctrlID, string guid, int duration, string varyByParams, string varyByControls, string varyByCustom, System.Web.UI.BuildMethod buildMethod);
new System.Web.UI.StaticPartialCachingControl : string * string * int * string * string * string * System.Web.UI.BuildMethod -> System.Web.UI.StaticPartialCachingControl
Public Sub New (ctrlID As String, guid As String, duration As Integer, varyByParams As String, varyByControls As String, varyByCustom As String, buildMethod As BuildMethod)
参数
- ctrlID
- String
由 ASP.NET 分配到服务器控件的标识符。
- guid
- String
从服务器控件传递的全局唯一标识符。
- duration
- Int32
服务器控件将在缓存中留存的时长。
- varyByParams
- String
查询字符串或窗体 POST 参数字符串,用以区分缓存中的用户控件。
- varyByControls
- String
服务器控件属性字符串,用以区分缓存中的用户控件。
- varyByCustom
- String
含有自定义输出缓存参数值的用户定义的字符串。
- buildMethod
- BuildMethod
一个委托,调用用于构建 StaticPartialCachingControl 的方法。
注解
构造 StaticPartialCachingControl 函数旨在供 ASP.NET 页面框架使用,不应由开发人员直接调用。
另请参阅
适用于
StaticPartialCachingControl(String, String, Int32, String, String, String, String, BuildMethod)
创建 StaticPartialCachingControl 对象,以包含缓存的服务器控件内容。
public:
StaticPartialCachingControl(System::String ^ ctrlID, System::String ^ guid, int duration, System::String ^ varyByParams, System::String ^ varyByControls, System::String ^ varyByCustom, System::String ^ sqlDependency, System::Web::UI::BuildMethod ^ buildMethod);
public StaticPartialCachingControl (string ctrlID, string guid, int duration, string varyByParams, string varyByControls, string varyByCustom, string sqlDependency, System.Web.UI.BuildMethod buildMethod);
new System.Web.UI.StaticPartialCachingControl : string * string * int * string * string * string * string * System.Web.UI.BuildMethod -> System.Web.UI.StaticPartialCachingControl
Public Sub New (ctrlID As String, guid As String, duration As Integer, varyByParams As String, varyByControls As String, varyByCustom As String, sqlDependency As String, buildMethod As BuildMethod)
参数
- ctrlID
- String
由 ASP.NET 分配到服务器控件的标识符。
- guid
- String
从服务器控件传递的全局唯一标识符。
- duration
- Int32
服务器控件将在缓存中留存的时长。
- varyByParams
- String
查询字符串或窗体 POST 参数字符串,用以区分缓存中的用户控件。
- varyByControls
- String
服务器控件属性字符串,用以区分缓存中的用户控件。
- varyByCustom
- String
含有自定义输出缓存参数值的用户定义的字符串。
- sqlDependency
- String
由分号分隔的字符串,指定用于 Microsoft SQL Server 缓存依赖项的数据库和表。
- buildMethod
- BuildMethod
一个委托,调用用于构建 StaticPartialCachingControl 的方法。
注解
构造 StaticPartialCachingControl 函数旨在供 ASP.NET 页面框架使用,不应由开发人员直接调用。
另请参阅
适用于
StaticPartialCachingControl(String, String, Int32, String, String, String, String, BuildMethod, String)
为 .ascx 文件中定义的控件初始化 StaticPartialCachingControl 类的新实例。
public:
StaticPartialCachingControl(System::String ^ ctrlID, System::String ^ guid, int duration, System::String ^ varyByParams, System::String ^ varyByControls, System::String ^ varyByCustom, System::String ^ sqlDependency, System::Web::UI::BuildMethod ^ buildMethod, System::String ^ providerName);
public StaticPartialCachingControl (string ctrlID, string guid, int duration, string varyByParams, string varyByControls, string varyByCustom, string sqlDependency, System.Web.UI.BuildMethod buildMethod, string providerName);
new System.Web.UI.StaticPartialCachingControl : string * string * int * string * string * string * string * System.Web.UI.BuildMethod * string -> System.Web.UI.StaticPartialCachingControl
Public Sub New (ctrlID As String, guid As String, duration As Integer, varyByParams As String, varyByControls As String, varyByCustom As String, sqlDependency As String, buildMethod As BuildMethod, providerName As String)
参数
- ctrlID
- String
ASP.NET 向控件分配的 ID。
- guid
- String
缓存控件的全局唯一标识符 (GUID)。
- duration
- Int32
对控件的输出进行缓存的时间长度。
- varyByParams
- String
查询字符串或窗体 POST 参数字符串,用以区分缓存中的用户控件。
- varyByControls
- String
一个字符串,列出了用以区别缓存中的用户控件的服务器控件属性。
- varyByCustom
- String
含有自定义输出缓存参数值的用户定义的字符串。
- sqlDependency
- String
由分号分隔的字符串,指定用于 Microsoft SQL Server 缓存依赖项的数据库和表。
- buildMethod
- BuildMethod
调用控件生成方法的委托。
- providerName
- String
用于存储输出缓存控件的提供程序的名称。
注解
可以通过声明方式或在代码中使用 PartialCachingAttribute 来指定控件的输出缓存提供程序。