File: ControlParameter.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 (435 lines) | stat: -rw-r--r-- 27,276 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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
<?xml version="1.0" encoding="utf-8"?>
<Type Name="ControlParameter" FullName="System.Web.UI.WebControls.ControlParameter">
  <TypeSignature Language="C#" Value="public class ControlParameter : System.Web.UI.WebControls.Parameter" />
  <AssemblyInfo>
    <AssemblyName>System.Web</AssemblyName>
    <AssemblyVersion>2.0.0.0</AssemblyVersion>
  </AssemblyInfo>
  <Base>
    <BaseTypeName>System.Web.UI.WebControls.Parameter</BaseTypeName>
  </Base>
  <Interfaces />
  <Attributes>
    <Attribute>
      <AttributeName>System.ComponentModel.DefaultProperty("ControlID")</AttributeName>
    </Attribute>
  </Attributes>
  <Docs>
    <since version=".NET 2.0" />
    <remarks>
      <attribution license="cc4" from="Microsoft" modified="false" />
      <para>You can use the <see cref="T:System.Web.UI.WebControls.ControlParameter" /> class to bind the value of a <see cref="T:System.Web.UI.Control" /> property, such as <see cref="P:System.Web.UI.WebControls.ListControl.SelectedValue" /> or <see cref="P:System.Web.UI.WebControls.ListControl.SelectedIndex" />, to a parameter that is used in a parameterized SQL query, business object method, or filtering expression.</para>
      <para>The <see cref="T:System.Web.UI.WebControls.ControlParameter" /> class provides two properties in addition to those inherited from the <see cref="T:System.Web.UI.WebControls.Parameter" /> class: <see cref="P:System.Web.UI.WebControls.ControlParameter.ControlID" /> and <see cref="P:System.Web.UI.WebControls.ControlParameter.PropertyName" />. The <see cref="P:System.Web.UI.WebControls.ControlParameter.ControlID" /> property identifies which <see cref="T:System.Web.UI.Control" /> instance to bind to and the <see cref="P:System.Web.UI.WebControls.ControlParameter.PropertyName" /> property identifies the public property of the <see cref="T:System.Web.UI.Control" /> from which the <see cref="T:System.Web.UI.WebControls.ControlParameter" /> class retrieves a value. </para>
    </remarks>
    <summary>
      <attribution license="cc4" from="Microsoft" modified="false" />
      <para>Binds the value of a property of a <see cref="T:System.Web.UI.Control" /> to a parameter object. </para>
    </summary>
  </Docs>
  <Members>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public ControlParameter ();" />
      <MemberType>Constructor</MemberType>
      <Parameters />
      <Docs>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>A <see cref="T:System.Web.UI.WebControls.ControlParameter" /> object that is created with the <see cref="M:System.Web.UI.WebControls.ControlParameter.#ctor" /> constructor is initialized with default values for all its properties. The <see cref="P:System.Web.UI.WebControls.ControlParameter.ControlID" /> and <see cref="P:System.Web.UI.WebControls.ControlParameter.PropertyName" /> properties are initialized to <see cref="F:System.String.Empty" />. In addition, the <see cref="P:System.Web.UI.WebControls.Parameter.Name" /> property is initialized to <see cref="F:System.String.Empty" />, the <see cref="P:System.Web.UI.WebControls.Parameter.Type" /> property is initialized to <see cref="F:System.TypeCode.Object" />, the <see cref="P:System.Web.UI.WebControls.Parameter.Direction" /> property is initialized to <see cref="F:System.Data.ParameterDirection.Input" />, and the <see cref="P:System.Web.UI.WebControls.Parameter.DefaultValue" /> property is initialized to null.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Initializes a new unnamed instance of the <see cref="T:System.Web.UI.WebControls.ControlParameter" /> class.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="protected ControlParameter (System.Web.UI.WebControls.ControlParameter original);" />
      <MemberType>Constructor</MemberType>
      <Parameters>
        <Parameter Name="original" Type="System.Web.UI.WebControls.ControlParameter" />
      </Parameters>
      <Docs>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="M:System.Web.UI.WebControls.ControlParameter.#ctor(System.Web.UI.WebControls.ControlParameter)" /> constructor is a protected copy constructor that is used to clone a <see cref="T:System.Web.UI.WebControls.ControlParameter" /> instance. The values of the <see cref="T:System.Web.UI.WebControls.ControlParameter" /> object, including the <see cref="P:System.Web.UI.WebControls.ControlParameter.ControlID" />, <see cref="P:System.Web.UI.WebControls.ControlParameter.PropertyName" />, <see cref="P:System.Web.UI.WebControls.Parameter.Name" />, and <see cref="P:System.Web.UI.WebControls.Parameter.Type" /> properties, are all transferred to the new instance.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.ControlParameter" /> class with values from the specified instance.</para>
        </summary>
        <param name="original">
          <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Web.UI.WebControls.ControlParameter" /> instance from which the current instance is initialized. </param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public ControlParameter (string name, string controlID);" />
      <MemberType>Constructor</MemberType>
      <Parameters>
        <Parameter Name="name" Type="System.String" />
        <Parameter Name="controlID" Type="System.String" />
      </Parameters>
      <Docs>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>A <see cref="T:System.Web.UI.WebControls.ControlParameter" /> object that is created with the <see cref="M:System.Web.UI.WebControls.ControlParameter.#ctor(System.String,System.String)" /> constructor is initialized with the specified parameter name and <see cref="T:System.Web.UI.Control" /> name, which identifies the <see cref="T:System.Web.UI.Control" /> that the parameter binds to. Other properties, including <see cref="P:System.Web.UI.WebControls.ControlParameter.PropertyName" />, <see cref="P:System.Web.UI.WebControls.Parameter.Type" />, and <see cref="P:System.Web.UI.WebControls.Parameter.Direction" />, are initialized with default values.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Initializes a new named instance of the <see cref="T:System.Web.UI.WebControls.ControlParameter" /> class, using the specified control name to identify which control to bind to.</para>
        </summary>
        <param name="name">
          <attribution license="cc4" from="Microsoft" modified="false" />The name of the parameter. </param>
        <param name="controlID">
          <attribution license="cc4" from="Microsoft" modified="false" />The name of the control that the parameter is bound to. The default is <see cref="F:System.String.Empty" />. </param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public ControlParameter (string name, string controlID, string propertyName);" />
      <MemberType>Constructor</MemberType>
      <Parameters>
        <Parameter Name="name" Type="System.String" />
        <Parameter Name="controlID" Type="System.String" />
        <Parameter Name="propertyName" Type="System.String" />
      </Parameters>
      <Docs>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>A <see cref="T:System.Web.UI.WebControls.ControlParameter" /> object that is created with the <see cref="M:System.Web.UI.WebControls.ControlParameter.#ctor(System.String,System.String,System.String)" /> constructor is initialized with the specified parameter name, <see cref="T:System.Web.UI.Control" /> name, and <see cref="P:System.Web.UI.WebControls.ControlParameter.PropertyName" /> property, which identifies the <see cref="T:System.Web.UI.Control" /> that the parameter binds to. Other properties, including <see cref="P:System.Web.UI.WebControls.Parameter.Type" />, <see cref="P:System.Web.UI.WebControls.Parameter.Direction" />, and <see cref="P:System.Web.UI.WebControls.Parameter.ConvertEmptyStringToNull" />, are initialized with default values.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Initializes a new named instance of the <see cref="T:System.Web.UI.WebControls.ControlParameter" /> class, using the specified property name and control name to identify which control to bind to.</para>
        </summary>
        <param name="name">
          <attribution license="cc4" from="Microsoft" modified="false" />The name of the parameter. </param>
        <param name="controlID">
          <attribution license="cc4" from="Microsoft" modified="false" />The name of the control that the parameter is bound to. The default is <see cref="F:System.String.Empty" />. </param>
        <param name="propertyName">
          <attribution license="cc4" from="Microsoft" modified="false" />The name of the property on the control that the parameter is bound to. The default is <see cref="F:System.String.Empty" />. </param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public ControlParameter (string name, TypeCode type, string controlID, string propertyName);" />
      <MemberType>Constructor</MemberType>
      <Parameters>
        <Parameter Name="name" Type="System.String" />
        <Parameter Name="type" Type="System.TypeCode" />
        <Parameter Name="controlID" Type="System.String" />
        <Parameter Name="propertyName" Type="System.String" />
      </Parameters>
      <Docs>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>A <see cref="T:System.Web.UI.WebControls.ControlParameter" /> object that is created with the <see cref="M:System.Web.UI.WebControls.ControlParameter.#ctor(System.String,System.TypeCode,System.String,System.String)" /> constructor is initialized with the specified parameter name, <see cref="P:System.Web.UI.WebControls.Parameter.Type" />, <see cref="T:System.Web.UI.Control" /> name, and <see cref="P:System.Web.UI.WebControls.ControlParameter.PropertyName" /> property. Only the <see cref="P:System.Web.UI.WebControls.Parameter.Direction" /> and <see cref="P:System.Web.UI.WebControls.Parameter.ConvertEmptyStringToNull" /> properties are initialized with default values.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Initializes a new named and strongly typed instance of the <see cref="T:System.Web.UI.WebControls.ControlParameter" /> class, using the specified property name and control name to identify which control to bind to.</para>
        </summary>
        <param name="name">
          <attribution license="cc4" from="Microsoft" modified="false" />The name of the parameter. </param>
        <param name="type">
          <attribution license="cc4" from="Microsoft" modified="false" />The type that the parameter represents. The default is <see cref="F:System.TypeCode.Object" />. </param>
        <param name="controlID">
          <attribution license="cc4" from="Microsoft" modified="false" />The name of the control that the parameter is bound to. The default is <see cref="F:System.String.Empty" />. </param>
        <param name="propertyName">
          <attribution license="cc4" from="Microsoft" modified="false" />The name of the property of the control that the parameter is bound to. The default is <see cref="F:System.String.Empty" />. </param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="Clone">
      <MemberSignature Language="C#" Value="protected override System.Web.UI.WebControls.Parameter Clone ();" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Web.UI.WebControls.Parameter</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="M:System.Web.UI.WebControls.ControlParameter.Clone" /> method calls the <see cref="M:System.Web.UI.WebControls.ControlParameter.#ctor(System.Web.UI.WebControls.ControlParameter)" /> copy constructor to initialize a new instance of the <see cref="T:System.Web.UI.WebControls.ControlParameter" /> class with the values of the current instance.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Returns a duplicate of the current <see cref="T:System.Web.UI.WebControls.ControlParameter" /> instance.</para>
        </summary>
        <returns>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>A <see cref="T:System.Web.UI.WebControls.ControlParameter" /> that is an exact duplicate of the current one.</para>
        </returns>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="ControlID">
      <MemberSignature Language="C#" Value="public string ControlID { set; get; }" />
      <MemberType>Property</MemberType>
      <Attributes>
        <Attribute>
          <AttributeName>System.Web.UI.IDReferenceProperty(typeof(System.Web.UI.Control))</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.ComponentModel.TypeConverter(typeof(System.Web.UI.WebControls.ControlIDConverter))</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.All)</AttributeName>
        </Attribute>
      </Attributes>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="P:System.Web.UI.WebControls.ControlParameter.ControlID" /> property is a required property that identifies the <see cref="T:System.Web.UI.Control" /> instance that the <see cref="T:System.Web.UI.WebControls.ControlParameter" /> object binds to at run time.</para>
          <para>Typically, the <see cref="P:System.Web.UI.WebControls.ControlParameter.ControlID" /> and <see cref="P:System.Web.UI.WebControls.ControlParameter.PropertyName" /> properties are set for the <see cref="M:System.Web.UI.WebControls.ControlParameter.Evaluate(System.Web.HttpContext,System.Web.UI.Control)" /> method to correctly bind to a control. If you do not set the <see cref="P:System.Web.UI.WebControls.ControlParameter.ControlID" /> property, the <see cref="M:System.Web.UI.WebControls.ControlParameter.Evaluate(System.Web.HttpContext,System.Web.UI.Control)" /> method throws an <see cref="T:System.ArgumentException" /> exception when called. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Specifies the name of the control that the <see cref="T:System.Web.UI.WebControls.ControlParameter" /> object binds to.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="Evaluate">
      <MemberSignature Language="C#" Value="protected override object Evaluate (System.Web.HttpContext ctx, System.Web.UI.Control control);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Object</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="ctx" Type="System.Web.HttpContext" />
        <Parameter Name="control" Type="System.Web.UI.Control" />
      </Parameters>
      <Docs>
        <param name="ctx">To be added.</param>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="T:System.Web.UI.WebControls.ControlParameter" /> object attempts to bind to the <see cref="T:System.Web.UI.Control" /> object and property every time the <see cref="M:System.Web.UI.WebControls.ControlParameter.Evaluate(System.Web.HttpContext,System.Web.UI.Control)" /> method is called. The <see cref="M:System.Web.UI.WebControls.ControlParameter.Evaluate(System.Web.HttpContext,System.Web.UI.Control)" /> method returns the value of the control's property that is identified by the combination of the <see cref="P:System.Web.UI.WebControls.ControlParameter.ControlID" /> and <see cref="P:System.Web.UI.WebControls.ControlParameter.PropertyName" /> properties. </para>
          <para>The <see cref="T:System.Web.UI.WebControls.ControlParameter" /> class never uses the <see cref="P:System.Web.UI.WebControls.Parameter.DefaultValue" /> property, which is inherited from <see cref="T:System.Web.UI.WebControls.Parameter" />, when binding to a control's property value.</para>
          <block subset="none" type="note">
            <para>In this implementation of the method, the <paramref name="context" /> parameter is ignored. If the <paramref name="control" /> parameter is null, null is returned.</para>
          </block>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Updates and returns the value of the <see cref="T:System.Web.UI.WebControls.ControlParameter" /> object.</para>
        </summary>
        <returns>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>An <see cref="T:System.Object" /> that represents the updated and current value of the parameter.</para>
        </returns>
        <param name="control">
          <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Web.UI.Control" /> that the parameter is bound to. </param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="PropertyName">
      <MemberSignature Language="C#" Value="public string PropertyName { set; get; }" />
      <MemberType>Property</MemberType>
      <Attributes>
        <Attribute>
          <AttributeName>System.ComponentModel.TypeConverter(typeof(System.Web.UI.WebControls.ControlPropertyNameConverter))</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
        </Attribute>
      </Attributes>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="P:System.Web.UI.WebControls.ControlParameter.PropertyName" /> property identifies the public property of the <see cref="T:System.Web.UI.Control" /> object identified by the <see cref="P:System.Web.UI.WebControls.ControlParameter.ControlID" /> property that the <see cref="T:System.Web.UI.WebControls.ControlParameter" /> object binds to at run time. <see cref="P:System.Web.UI.WebControls.ControlParameter.PropertyName" /> can be set to a simple string, such as "SelectedValue", or an expression using <see cref="Overload:System.Web.UI.DataBinder.Eval" /> syntax to identify complex control properties.</para>
          <para>While the <see cref="P:System.Web.UI.WebControls.ControlParameter.PropertyName" /> property is optional, typically both <see cref="P:System.Web.UI.WebControls.ControlParameter.ControlID" /> and <see cref="P:System.Web.UI.WebControls.ControlParameter.PropertyName" /> properties are set for the <see cref="M:System.Web.UI.WebControls.ControlParameter.Evaluate(System.Web.HttpContext,System.Web.UI.Control)" /> method to correctly bind to a control. If you set the <see cref="P:System.Web.UI.WebControls.ControlParameter.ControlID" /> property but not the <see cref="P:System.Web.UI.WebControls.ControlParameter.PropertyName" /> property, the <see cref="M:System.Web.UI.WebControls.ControlParameter.Evaluate(System.Web.HttpContext,System.Web.UI.Control)" /> method attempts to use the <see cref="T:System.Web.UI.ControlValuePropertyAttribute" /> attribute to identify a default <see cref="P:System.Web.UI.WebControls.ControlParameter.PropertyName" /> property. (It is the responsibility of control authors to specify this attribute.) If this fails, <see cref="M:System.Web.UI.WebControls.ControlParameter.Evaluate(System.Web.HttpContext,System.Web.UI.Control)" /> throws an <see cref="T:System.ArgumentException" /> exception.</para>
          <para>The following table identifies which ASP.NET controls decorate properties with the <see cref="T:System.Web.UI.ControlValuePropertyAttribute" /> attribute.</para>
          <list type="table">
            <listheader>
              <item>
                <term>
                  <para>Control</para>
                </term>
                <description>
                  <para>Property</para>
                </description>
              </item>
            </listheader>
            <item>
              <term>
                <para>
                  <see cref="T:System.Web.UI.WebControls.Calendar" />
                </para>
              </term>
              <description>
                <para>
                  <see cref="P:System.Web.UI.WebControls.Calendar.SelectedDate" />
                </para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="T:System.Web.UI.WebControls.CheckBox" />
                </para>
              </term>
              <description>
                <para>
                  <see cref="P:System.Web.UI.WebControls.CheckBox.Checked" />
                </para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="T:System.Web.UI.WebControls.DataList" />
                </para>
              </term>
              <description>
                <para>
                  <see cref="P:System.Web.UI.WebControls.DataList.SelectedValue" />
                </para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="T:System.Web.UI.WebControls.DetailsView" />
                </para>
              </term>
              <description>
                <para>
                  <see cref="P:System.Web.UI.WebControls.DetailsView.SelectedValue" />
                </para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="T:System.Web.UI.WebControls.FormView" />
                </para>
              </term>
              <description>
                <para>
                  <see cref="P:System.Web.UI.WebControls.FormView.SelectedValue" />
                </para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="T:System.Web.UI.WebControls.GridView" />
                </para>
              </term>
              <description>
                <para>
                  <see cref="P:System.Web.UI.WebControls.GridView.SelectedValue" />
                </para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="T:System.Web.UI.WebControls.Label" />
                </para>
              </term>
              <description>
                <para>
                  <see cref="P:System.Web.UI.WebControls.Label.Text" />
                </para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="T:System.Web.UI.WebControls.ListControl" />
                </para>
              </term>
              <description>
                <para>
                  <see cref="P:System.Web.UI.WebControls.ListControl.SelectedValue" />
                </para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="T:System.Web.UI.WebControls.Menu" />
                </para>
              </term>
              <description>
                <para>
                  <see cref="P:System.Web.UI.WebControls.Menu.SelectedValue" />
                </para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="T:System.Web.UI.WebControls.TextBox" />
                </para>
              </term>
              <description>
                <para>
                  <see cref="P:System.Web.UI.WebControls.TextBox.Text" />
                </para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="T:System.Web.UI.WebControls.TreeView" />
                </para>
              </term>
              <description>
                <para>
                  <see cref="P:System.Web.UI.WebControls.TreeView.SelectedValue" />
                </para>
              </description>
            </item>
          </list>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets or sets the property name of the control identified by the <see cref="P:System.Web.UI.WebControls.ControlParameter.ControlID" /> property that the <see cref="T:System.Web.UI.WebControls.ControlParameter" /> object binds to.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
  </Members>
</Type>