File: StaticPartialCachingControl.xml

package info (click to toggle)
mono 6.14.1%2Bds2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,282,732 kB
  • sloc: cs: 11,182,461; xml: 2,850,281; ansic: 699,123; cpp: 122,919; perl: 58,604; javascript: 30,841; asm: 21,845; makefile: 19,602; sh: 10,973; python: 4,772; pascal: 925; sql: 859; sed: 16; php: 1
file content (173 lines) | stat: -rw-r--r-- 13,238 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<?xml version="1.0" encoding="utf-8"?>
<Type Name="StaticPartialCachingControl" FullName="System.Web.UI.StaticPartialCachingControl">
  <TypeSignature Language="C#" Maintainer="auto" Value="public class StaticPartialCachingControl : System.Web.UI.BasePartialCachingControl" />
  <AssemblyInfo>
    <AssemblyName>System.Web</AssemblyName>
    <AssemblyPublicKey>
    </AssemblyPublicKey>
    <AssemblyVersion>1.0.5000.0</AssemblyVersion>
    <AssemblyVersion>2.0.0.0</AssemblyVersion>
  </AssemblyInfo>
  <ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the &lt;link location="node:gtk-sharp/programming/threads"&gt;Gtk# Thread Programming&lt;/link&gt; for details.</ThreadSafetyStatement>
  <Base>
    <BaseTypeName>System.Web.UI.BasePartialCachingControl</BaseTypeName>
  </Base>
  <Interfaces>
  </Interfaces>
  <Docs>
    <remarks>
      <attribution license="cc4" from="Microsoft" modified="false" />
      <para>An instance of this class is created when a user control is specified for output caching, using either an <format type="text/html"><a href="28a9e101-fb44-4198-9cb6-b8a52312fec2">@ OutputCache</a></format> directive in the declarative .ascx file, or the <see cref="T:System.Web.UI.PartialCachingAttribute" /> class in the user control's code-behind file. When the user control is included declaratively in its containing page (as opposed to being dynamically loaded using the <see cref="Overload:System.Web.UI.TemplateControl.LoadControl" /> method in the <see cref="T:System.Web.UI.TemplateControl" /> control class), the <see cref="T:System.Web.UI.StaticPartialCachingControl" /> instance is placed in the control hierarchy of the page as a parent to the cached user control.</para>
    </remarks>
    <summary>
      <attribution license="cc4" from="Microsoft" modified="false" />
      <para>Represents an instance of the <see cref="T:System.Web.UI.UserControl" /> class that is specified for output caching and included declaratively in a page or another user control.</para>
    </summary>
  </Docs>
  <Members>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public StaticPartialCachingControl (string ctrlID, string guid, int duration, string varyByParams, string varyByControls, string varyByCustom, System.Web.UI.BuildMethod buildMethod);" />
      <MemberType>Constructor</MemberType>
      <ReturnValue />
      <Parameters>
        <Parameter Name="ctrlID" Type="System.String" />
        <Parameter Name="guid" Type="System.String" />
        <Parameter Name="duration" Type="System.Int32" />
        <Parameter Name="varyByParams" Type="System.String" />
        <Parameter Name="varyByControls" Type="System.String" />
        <Parameter Name="varyByCustom" Type="System.String" />
        <Parameter Name="buildMethod" Type="System.Web.UI.BuildMethod" />
      </Parameters>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="M:System.Web.UI.StaticPartialCachingControl.#ctor(System.String,System.String,System.Int32,System.String,System.String,System.String,System.Web.UI.BuildMethod)" /> constructor is intended for use by the ASP.NET page framework and should not be called directly by developers.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Creates the <see cref="T:System.Web.UI.StaticPartialCachingControl" /> object to contain the cached server control content.</para>
        </summary>
        <returns>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The instance of the <see cref="T:System.Web.UI.StaticPartialCachingControl" />.</para>
        </returns>
        <param name="ctrlID">
          <attribution license="cc4" from="Microsoft" modified="false" />The identifier assigned to the server control by ASP.NET. </param>
        <param name="guid">
          <attribution license="cc4" from="Microsoft" modified="false" />The globally unique identifier passed from the server control. </param>
        <param name="duration">
          <attribution license="cc4" from="Microsoft" modified="false" />The length of time the server control is to remain in the cache. </param>
        <param name="varyByParams">
          <attribution license="cc4" from="Microsoft" modified="false" />A string of the query string or form POST parameters by which to vary the user control in the cache. </param>
        <param name="varyByControls">
          <attribution license="cc4" from="Microsoft" modified="false" />A string of the server control properties by which to vary the user control in the cache. </param>
        <param name="varyByCustom">
          <attribution license="cc4" from="Microsoft" modified="false" />A user-defined string that contains custom output-cache parameter values.</param>
        <param name="buildMethod">
          <attribution license="cc4" from="Microsoft" modified="false" />A delegate that calls the method to build the <see cref="T:System.Web.UI.StaticPartialCachingControl" />. </param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="BuildCachedControl">
      <MemberSignature Language="C#" Value="public static void BuildCachedControl (System.Web.UI.Control parent, string ctrlID, string guid, int duration, string varyByParams, string varyByControls, string varyByCustom, System.Web.UI.BuildMethod buildMethod);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="parent" Type="System.Web.UI.Control" />
        <Parameter Name="ctrlID" Type="System.String" />
        <Parameter Name="guid" Type="System.String" />
        <Parameter Name="duration" Type="System.Int32" />
        <Parameter Name="varyByParams" Type="System.String" />
        <Parameter Name="varyByControls" Type="System.String" />
        <Parameter Name="varyByCustom" Type="System.String" />
        <Parameter Name="buildMethod" Type="System.Web.UI.BuildMethod" />
      </Parameters>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="M:System.Web.UI.StaticPartialCachingControl.BuildCachedControl(System.Web.UI.Control,System.String,System.String,System.Int32,System.String,System.String,System.String,System.Web.UI.BuildMethod)" /> method builds a cached control with no relationship to a Microsoft SQL Server database table. </para>
          <para>The <see cref="M:System.Web.UI.StaticPartialCachingControl.BuildCachedControl(System.Web.UI.Control,System.String,System.String,System.Int32,System.String,System.String,System.String,System.Web.UI.BuildMethod)" /> method is intended for use by the ASP.NET page framework and should not be called directly by developers.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Builds a <see cref="T:System.Web.UI.StaticPartialCachingControl" /> object with the parameters specified in the user control (.ascx file) and adds it as a parsed sub-object to the containing server control.</para>
        </summary>
        <param name="parent">
          <attribution license="cc4" from="Microsoft" modified="false" />The server control to contain the <see cref="T:System.Web.UI.StaticPartialCachingControl" /> instance. </param>
        <param name="ctrlID">
          <attribution license="cc4" from="Microsoft" modified="false" />The identifier assigned to the control by ASP.NET. </param>
        <param name="guid">
          <attribution license="cc4" from="Microsoft" modified="false" />The globally unique identifier for the cached control. </param>
        <param name="duration">
          <attribution license="cc4" from="Microsoft" modified="false" />The length of time the control's output is cached. </param>
        <param name="varyByParams">
          <attribution license="cc4" from="Microsoft" modified="false" />A string of the query string or form POST parameters by which to vary the server control in the cache. </param>
        <param name="varyByControls">
          <attribution license="cc4" from="Microsoft" modified="false" />A string that lists the server-control properties by which to vary the user control in the cache.</param>
        <param name="varyByCustom">
          <attribution license="cc4" from="Microsoft" modified="false" />A user-defined string that contains custom output-cache parameter values.</param>
        <param name="buildMethod">
          <attribution license="cc4" from="Microsoft" modified="false" />A delegate that calls the method to build the control. </param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="BuildCachedControl">
      <MemberSignature Language="C#" Value="public static void BuildCachedControl (System.Web.UI.Control parent, string ctrlID, string guid, int duration, string varyByParams, string varyByControls, string varyByCustom, string sqlDependency, System.Web.UI.BuildMethod buildMethod);" />
      <MemberType>Method</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="parent" Type="System.Web.UI.Control" />
        <Parameter Name="ctrlID" Type="System.String" />
        <Parameter Name="guid" Type="System.String" />
        <Parameter Name="duration" Type="System.Int32" />
        <Parameter Name="varyByParams" Type="System.String" />
        <Parameter Name="varyByControls" Type="System.String" />
        <Parameter Name="varyByCustom" Type="System.String" />
        <Parameter Name="sqlDependency" Type="System.String" />
        <Parameter Name="buildMethod" Type="System.Web.UI.BuildMethod" />
      </Parameters>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="M:System.Web.UI.StaticPartialCachingControl.BuildCachedControl(System.Web.UI.Control,System.String,System.String,System.Int32,System.String,System.String,System.String,System.String,System.Web.UI.BuildMethod)" /> method builds a cached control with a relationship to a SQL Server database table specified by the <paramref name="sqlDependency" /> parameter.</para>
          <para>The <see cref="M:System.Web.UI.StaticPartialCachingControl.#ctor(System.String,System.String,System.Int32,System.String,System.String,System.String,System.String,System.Web.UI.BuildMethod)" /> method is intended for use by the ASP.NET page framework and should not be called directly by developers.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Builds a <see cref="T:System.Web.UI.StaticPartialCachingControl" /> object with the parameters specified in the user control (.ascx file) and adds it as a parsed sub-object to the containing server control.</para>
        </summary>
        <param name="parent">
          <attribution license="cc4" from="Microsoft" modified="false" />The server control to contain the <see cref="T:System.Web.UI.StaticPartialCachingControl" /> instance. </param>
        <param name="ctrlID">
          <attribution license="cc4" from="Microsoft" modified="false" />The identifier assigned to the control by ASP.NET. </param>
        <param name="guid">
          <attribution license="cc4" from="Microsoft" modified="false" />The globally unique identifier for the cached control. </param>
        <param name="duration">
          <attribution license="cc4" from="Microsoft" modified="false" />The length of time the control's output is cached. </param>
        <param name="varyByParams">
          <attribution license="cc4" from="Microsoft" modified="false" />A string of the query string or form POST parameters by which to vary the server control in the cache. </param>
        <param name="varyByControls">
          <attribution license="cc4" from="Microsoft" modified="false" />A string that lists the server-control properties by which to vary the user control in the cache.</param>
        <param name="varyByCustom">
          <attribution license="cc4" from="Microsoft" modified="false" />A user-defined string that contains custom output-cache parameter values.</param>
        <param name="sqlDependency">
          <attribution license="cc4" from="Microsoft" modified="false" />A semicolon-delimited string that specifies which databases and tables to use for the Microsoft SQL Server cache dependency.</param>
        <param name="buildMethod">
          <attribution license="cc4" from="Microsoft" modified="false" />A delegate that calls the method to build the control.</param>
      </Docs>
    </Member>
  </Members>
</Type>