Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18427 lines
883 KiB

  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>System.Web</name>
  5. </assembly>
  6. <members>
  7. <member name="M:System.Web.SRDescriptionAttribute.#ctor(System.String)">
  8. <summary>
  9. Constructs a new sys description.
  10. </summary>
  11. <param name="description">
  12. description text.
  13. </param>
  14. </member>
  15. <member name="P:System.Web.SRDescriptionAttribute.Description">
  16. <summary>
  17. Retrieves the description text.
  18. </summary>
  19. <returns>
  20. description
  21. </returns>
  22. </member>
  23. <member name="T:System.Web.BeginEventHandler">
  24. <summary>
  25. <para> Represents the method
  26. that handles asynchronous events such as application events. This delegate is called at the
  27. start of an asynchronous operation.</para>
  28. </summary>
  29. <param name="sender">The source of the event.</param>
  30. <param name=" e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
  31. <param name=" cb">The delegate to call when the asynchronous method call is complete. If <paramref name="cb" /> is <see langword="null" /> , the delegate is not called.</param>
  32. <param name=" extraData">Any additional data needed to process the request.</param>
  33. <returns>
  34. <para>The <see cref="T:System.IAsyncResult" /> that represents the result of
  35. the <see langword="BeginEventHandler" /> operation.</para>
  36. </returns>
  37. </member>
  38. <member name="T:System.Web.EndEventHandler">
  39. <summary>
  40. <para>Represents the method that handles asynchronous events
  41. such as application events. This delegate is called by the event source when
  42. completion of the asynchronous operation is signaled by a callback to the
  43. <see cref="T:System.Web.BeginEventHandler" />
  44. delegate.</para>
  45. </summary>
  46. <param name="ar">The <see cref="T:System.IAsyncResult" /> that is the result of the <see cref="T:System.Web.BeginEventHandler" /> operation.</param>
  47. </member>
  48. <member name="T:System.Web.HttpApplication">
  49. <summary>
  50. <para> Defines the methods, properties, and events common to all
  51. application objects within an ASP.NET application. This class is the
  52. base class for applications defined
  53. by the user in the global.asax file.</para>
  54. </summary>
  55. </member>
  56. <member name="T:System.Web.IHttpAsyncHandler">
  57. <summary>
  58. <para>When implemented by a class, defines the contract that HTTP asynchronous handler objects must
  59. implement.</para>
  60. </summary>
  61. </member>
  62. <member name="T:System.Web.IHttpHandler">
  63. <summary>
  64. <para> Defines the contract that ASP.NET implements to synchronously process HTTP
  65. Web requests using custom HTTP handlers.</para>
  66. </summary>
  67. </member>
  68. <member name="M:System.Web.IHttpHandler.ProcessRequest(System.Web.HttpContext)">
  69. <summary>
  70. <para> Enables processing of HTTP Web requests by a custom
  71. <see langword="HttpHandler " />
  72. that implements the <see cref="T:System.Web.IHttpHandler" /> interface.
  73. </para>
  74. </summary>
  75. <param name="context">An <see cref="T:System.Web.HttpContext" /> object that provides references to the intrinsic server objects (for example, <see langword="Request" />, <see langword="Response" />, <see langword="Session" />, and <see langword="Server" />)<see langword="" /> used to service HTTP requests. </param>
  76. </member>
  77. <member name="P:System.Web.IHttpHandler.IsReusable">
  78. <summary>
  79. <para> Gets a value indicating whether another request can use
  80. the <see cref="T:System.Web.IHttpHandler" />
  81. instance.</para>
  82. </summary>
  83. </member>
  84. <member name="M:System.Web.IHttpAsyncHandler.BeginProcessRequest(System.Web.HttpContext,System.AsyncCallback,System.Object)">
  85. <summary>
  86. <para>Initiates an asynchronous call to the HTTP handler.</para>
  87. </summary>
  88. <param name="context">An <see cref="T:System.Web.HttpContext" /> object that provides references to intrinsic server objects (for example, <see langword="Request" />, <see langword="Response" />, <see langword="Session" />, and <see langword="Server" />)<see langword="" /> used to service HTTP requests. </param>
  89. <param name=" cb">The <see cref="T:System.AsyncCallback" /> to call when the asynchronous method call is complete. If <paramref name="cb" /> is a null reference (<see langword="Nothing" /> in Visual Basic), the delegate is not called.</param>
  90. <param name=" extraData">Any extra data needed to process the request.</param>
  91. <returns>
  92. <para>An <see cref="T:System.IAsyncResult" />that contains information about the status of the process.</para>
  93. </returns>
  94. </member>
  95. <member name="M:System.Web.IHttpAsyncHandler.EndProcessRequest(System.IAsyncResult)">
  96. <summary>
  97. <para> Executes clean-up code when the process ends.</para>
  98. </summary>
  99. <param name="result">An <see cref="T:System.IAsyncResult" /> that contains information about the status of the process. </param>
  100. </member>
  101. <member name="M:System.Web.HttpApplication.CompleteRequest">
  102. <summary>
  103. <para>Causes ASP.NET to bypass all events in the HTTP pipeline chain of
  104. execution and directly execute <see cref="E:System.Web.HttpApplication.EndRequest" />.
  105. </para>
  106. </summary>
  107. </member>
  108. <member name="M:System.Web.HttpApplication.AddOnBeginRequestAsync(System.Web.BeginEventHandler,System.Web.EndEventHandler)">
  109. <summary>
  110. <para>Adds the specified <see cref="E:System.Web.HttpApplication.BeginRequest" /> event to the collection of asynchronous
  111. <see langword="BeginRequest" /> event handlers for the current request.</para>
  112. </summary>
  113. <param name="bh">The <see cref="T:System.Web.BeginEventHandler" /> delegate that starts asynchronous processing of the event.</param>
  114. <param name=" eh">The <see cref="T:System.Web.EndEventHandler" /> delegate that ends asynchronous processing of the event.</param>
  115. </member>
  116. <member name="M:System.Web.HttpApplication.AddOnAuthenticateRequestAsync(System.Web.BeginEventHandler,System.Web.EndEventHandler)">
  117. <summary>
  118. <para>Adds the specified <see cref="E:System.Web.HttpApplication.AuthenticateRequest" /> event to
  119. the collection of asynchronous <see langword="AuthenticateRequest" />
  120. event handlers for the current request.</para>
  121. </summary>
  122. <param name="bh">The <see cref="T:System.Web.BeginEventHandler" /> delegate that starts asynchronous processing of the event.</param>
  123. <param name=" eh">The <see cref="T:System.Web.EndEventHandler" /> delegate that ends asynchronous processing of the event.</param>
  124. </member>
  125. <member name="M:System.Web.HttpApplication.AddOnAuthorizeRequestAsync(System.Web.BeginEventHandler,System.Web.EndEventHandler)">
  126. <summary>
  127. <para>Adds the specified <see cref="E:System.Web.HttpApplication.AuthorizeRequest" /> event to the collection of asynchronous
  128. <see langword="AuthorizeRequest" /> event handlers for the current request.</para>
  129. </summary>
  130. <param name="bh">The <see cref="T:System.Web.BeginEventHandler" /> delegate that starts asynchronous processing of the event.</param>
  131. <param name=" eh">The <see cref="T:System.Web.EndEventHandler" /> delegate that ends asynchronous processing of the event.</param>
  132. </member>
  133. <member name="M:System.Web.HttpApplication.AddOnResolveRequestCacheAsync(System.Web.BeginEventHandler,System.Web.EndEventHandler)">
  134. <summary>
  135. <para>Adds the specified <see cref="E:System.Web.HttpApplication.ResolveRequestCache" /> event handler to the collection of asynchronous
  136. <see langword="ResolveRequestCache" /> event handlers for the current request.</para>
  137. </summary>
  138. <param name="bh">The <see cref="T:System.Web.BeginEventHandler" /> delegate that starts asynchronous processing of the event.</param>
  139. <param name=" eh">The <see cref="T:System.Web.EndEventHandler" /> delegate that ends asynchronous processing of the event.</param>
  140. </member>
  141. <member name="M:System.Web.HttpApplication.AddOnAcquireRequestStateAsync(System.Web.BeginEventHandler,System.Web.EndEventHandler)">
  142. <summary>
  143. <para>Adds the specified <see cref="E:System.Web.HttpApplication.AcquireRequestState" /> event to
  144. the collection of <see langword="AcquireRequestState" /> event
  145. handlers for the current request.</para>
  146. </summary>
  147. <param name="bh">The <see cref="T:System.Web.BeginEventHandler" /> delegate that starts asynchronous processing of the event.</param>
  148. <param name=" eh">The <see cref="T:System.Web.EndEventHandler" /> delegate that ends asynchronous processing of the event.</param>
  149. </member>
  150. <member name="M:System.Web.HttpApplication.AddOnPreRequestHandlerExecuteAsync(System.Web.BeginEventHandler,System.Web.EndEventHandler)">
  151. <summary>
  152. <para>Adds the specified <see cref="E:System.Web.HttpApplication.PreRequestHandlerExecute" /> event to the collection of asynchronous
  153. <see langword="PreRequestHandlerExecute" /> event handlers for the current request.</para>
  154. </summary>
  155. <param name="bh">The <see cref="T:System.Web.BeginEventHandler" /> delegate that starts asynchronous processing of the event.</param>
  156. <param name=" eh">The <see cref="T:System.Web.EndEventHandler" /> delegate that ends asynchronous processing of the event.</param>
  157. </member>
  158. <member name="M:System.Web.HttpApplication.AddOnPostRequestHandlerExecuteAsync(System.Web.BeginEventHandler,System.Web.EndEventHandler)">
  159. <summary>
  160. <para>Adds the specified <see cref="E:System.Web.HttpApplication.PostRequestHandlerExecute" /> event to the
  161. collection of asynchronous <see langword="PostRequestHandlerExecute" />
  162. event handlers for the current request.</para>
  163. </summary>
  164. <param name="bh">The <see cref="T:System.Web.BeginEventHandler" /> delegate that starts asynchronous processing of the event.</param>
  165. <param name=" eh">
  166. <para>The <see cref="T:System.Web.EndEventHandler" /> delegate that ends asynchronous processing of the event.</para>
  167. </param>
  168. </member>
  169. <member name="M:System.Web.HttpApplication.AddOnReleaseRequestStateAsync(System.Web.BeginEventHandler,System.Web.EndEventHandler)">
  170. <summary>
  171. <para>Adds the specified <see cref="E:System.Web.HttpApplication.ReleaseRequestState" /> event to the collection of asynchronous
  172. <see langword="ReleaseRequestState" /> event handlers for the current request.</para>
  173. </summary>
  174. <param name="bh">The <see cref="T:System.Web.BeginEventHandler" /> delegate that starts asynchronous processing of the event.</param>
  175. <param name=" eh">The <see cref="T:System.Web.EndEventHandler" /> delegate that ends asynchronous processing of the event.</param>
  176. </member>
  177. <member name="M:System.Web.HttpApplication.AddOnUpdateRequestCacheAsync(System.Web.BeginEventHandler,System.Web.EndEventHandler)">
  178. <summary>
  179. <para>Adds the specified <see cref="E:System.Web.HttpApplication.UpdateRequestCache" /> event to the collection of asynchronous
  180. <see langword="UpdateRequestCache" /> event handlers for the current request.</para>
  181. </summary>
  182. <param name="bh">The <see cref="T:System.Web.BeginEventHandler" /> delegate that starts asynchronous processing of the event.</param>
  183. <param name=" eh">The <see cref="T:System.Web.EndEventHandler" /> delegate that ends asynchronous processing of the event.</param>
  184. </member>
  185. <member name="M:System.Web.HttpApplication.AddOnEndRequestAsync(System.Web.BeginEventHandler,System.Web.EndEventHandler)">
  186. <summary>
  187. <para>Adds the specified <see cref="E:System.Web.HttpApplication.EndRequest" /> event to the collection of asynchronous
  188. <see langword="EndRequest" /> event handlers for the current request.</para>
  189. </summary>
  190. <param name="bh">The <see cref="T:System.Web.BeginEventHandler" /> delegate that starts asynchronous processing of the event.</param>
  191. <param name=" eh">The <see cref="T:System.Web.EndEventHandler" /> delegate that ends asynchronous processing of the event.</param>
  192. </member>
  193. <member name="M:System.Web.HttpApplication.Init">
  194. <summary>
  195. <para>
  196. Executes custom
  197. initialization code after all event-handler modules
  198. have been added.</para>
  199. </summary>
  200. </member>
  201. <member name="M:System.Web.HttpApplication.Dispose">
  202. <summary>
  203. <para> Cleans up the instance variables of a
  204. module.
  205. </para>
  206. </summary>
  207. </member>
  208. <member name="M:System.Web.HttpApplication.GetVaryByCustomString(System.Web.HttpContext,System.String)">
  209. <summary>
  210. <para>Provides an application-wide implementation of the <see cref="P:System.Web.UI.PartialCachingAttribute.VaryByCustom" /> property.</para>
  211. </summary>
  212. <param name="context">An <see cref="T:System.Web.HttpContext" /> that contains information about the current Web request</param>
  213. <param name=" custom">The custom string that specifies which cached response is used to response to the current request.</param>
  214. <returns>
  215. <para> If
  216. the value of the <paramref name="custom" /> parameter is "browser", the browser's
  217. <see cref="P:System.Web.HttpBrowserCapabilities.Type" /> ; otherwise,
  218. <see langword="null" /> .</para>
  219. </returns>
  220. </member>
  221. <member name="P:System.Web.HttpApplication.Context">
  222. <summary>
  223. <para>
  224. Gets HTTP-specific information about the current instance
  225. of the application.
  226. </para>
  227. </summary>
  228. </member>
  229. <member name="E:System.Web.HttpApplication.Disposed">
  230. <summary>
  231. <para> Occurs when ASP.NET completes the chain of execution
  232. when responding to a request.</para>
  233. </summary>
  234. </member>
  235. <member name="P:System.Web.HttpApplication.Events">
  236. <summary>
  237. <para>Gets the list of event handler delegates that process all
  238. application events.</para>
  239. </summary>
  240. </member>
  241. <member name="P:System.Web.HttpApplication.Request">
  242. <summary>
  243. <para>Gets the intrinsic request<see langword=" " /> object
  244. for the current request.</para>
  245. </summary>
  246. </member>
  247. <member name="P:System.Web.HttpApplication.Response">
  248. <summary>
  249. <para>Gets the intrinsic response<see langword=" " />
  250. object for the current
  251. request.</para>
  252. </summary>
  253. </member>
  254. <member name="P:System.Web.HttpApplication.Session">
  255. <summary>
  256. <para> Gets the intrinsic session<see langword=" " /> object that provides access to session data.
  257. </para>
  258. </summary>
  259. </member>
  260. <member name="P:System.Web.HttpApplication.Application">
  261. <summary>
  262. <para>Gets the state (a collection of all files, pages,
  263. handlers, modules, and code) for the current request.</para>
  264. </summary>
  265. </member>
  266. <member name="P:System.Web.HttpApplication.Server">
  267. <summary>
  268. Gets the intrinsic server<see langword=" " />object for the current request.
  269. </summary>
  270. </member>
  271. <member name="P:System.Web.HttpApplication.User">
  272. <summary>
  273. <para>Gets the intrinsic user object for the current request.</para>
  274. </summary>
  275. </member>
  276. <member name="P:System.Web.HttpApplication.Modules">
  277. <summary>
  278. <para> Gets the collection of modules for the current application.</para>
  279. </summary>
  280. </member>
  281. <member name="E:System.Web.HttpApplication.AcquireRequestState">
  282. <summary>
  283. <para> Occurs when ASP.NET acquires the current state (for
  284. example, session state) associated with the current request.</para>
  285. </summary>
  286. </member>
  287. <member name="E:System.Web.HttpApplication.AuthenticateRequest">
  288. <summary>
  289. <para> Occurs when a security module has established the identity of the user.</para>
  290. </summary>
  291. </member>
  292. <member name="E:System.Web.HttpApplication.AuthorizeRequest">
  293. <summary>
  294. <para> Occurs when a security module has verified user authorization.</para>
  295. </summary>
  296. </member>
  297. <member name="E:System.Web.HttpApplication.BeginRequest">
  298. <summary>
  299. <para>Occurs as the first event in the HTTP pipeline
  300. chain of execution when ASP.NET responds to a request.</para>
  301. </summary>
  302. </member>
  303. <member name="E:System.Web.HttpApplication.EndRequest">
  304. <summary>
  305. <para> Occurs as the last event to in the HTTP pipeline chain of execution
  306. when ASP.NET responds to a request.</para>
  307. </summary>
  308. </member>
  309. <member name="E:System.Web.HttpApplication.Error">
  310. <summary>
  311. <para> Occurs when an unhandled exception is
  312. thrown.</para>
  313. </summary>
  314. </member>
  315. <member name="E:System.Web.HttpApplication.PreSendRequestHeaders">
  316. <summary>
  317. <para> Occurs just before ASP.NET sends HTTP headers
  318. to the client.</para>
  319. </summary>
  320. </member>
  321. <member name="E:System.Web.HttpApplication.PreSendRequestContent">
  322. <summary>
  323. <para> Occurs just before ASP.NET sends content to the client.</para>
  324. </summary>
  325. </member>
  326. <member name="E:System.Web.HttpApplication.PreRequestHandlerExecute">
  327. <summary>
  328. <para> Occurs just before ASP.NET begins executing a handler such as
  329. a page or XML Web service.</para>
  330. </summary>
  331. </member>
  332. <member name="E:System.Web.HttpApplication.PostRequestHandlerExecute">
  333. <summary>
  334. <para> Occurs when the ASP.NET handler (page,
  335. XML Web service) finishes execution.</para>
  336. </summary>
  337. </member>
  338. <member name="E:System.Web.HttpApplication.ReleaseRequestState">
  339. <summary>
  340. <para> Occurs after ASP.NET finishes executing all request
  341. handlers. This event causes state
  342. modules to save the current state data.</para>
  343. </summary>
  344. </member>
  345. <member name="E:System.Web.HttpApplication.ResolveRequestCache">
  346. <summary>
  347. <para> Occurs when ASP.NET completes an authorization event to let
  348. the caching modules serve requests from the cache, bypassing execution of the handler
  349. (the page or Web service, for example).</para>
  350. </summary>
  351. </member>
  352. <member name="E:System.Web.HttpApplication.UpdateRequestCache">
  353. <summary>
  354. <para> Occurs when ASP.NET finishes executing a handler in order
  355. to let caching modules store responses that will be used to serve
  356. subsequent requests from the cache.</para>
  357. </summary>
  358. </member>
  359. <member name="P:System.Web.HttpApplication.Site">
  360. <summary>
  361. <para>Provides a site interface for an <see cref="T:System.ComponentModel.IComponent" /> implementation.</para>
  362. </summary>
  363. </member>
  364. <member name="T:System.Web.HttpApplicationState">
  365. <summary>
  366. <para> Enables sharing of global information across multiple sessions
  367. and requests within an ASP.NET application.</para>
  368. </summary>
  369. </member>
  370. <member name="M:System.Web.HttpApplicationState.Add(System.String,System.Object)">
  371. <summary>
  372. <para>Adds a new object to the <see cref="T:System.Web.HttpApplicationState" />
  373. collection.</para>
  374. </summary>
  375. <param name="name">The name of the object to be added to the collection.</param>
  376. <param name=" value">The value of the object.</param>
  377. </member>
  378. <member name="M:System.Web.HttpApplicationState.Set(System.String,System.Object)">
  379. <summary>
  380. <para>Updates the value of an object
  381. in an <see cref="T:System.Web.HttpApplicationState" /> collection.</para>
  382. </summary>
  383. <param name="name">The name of the object to be updated.</param>
  384. <param name=" value">The updated value of the object.</param>
  385. </member>
  386. <member name="M:System.Web.HttpApplicationState.Remove(System.String)">
  387. <summary>
  388. <para>Removes the named object from an <see cref="T:System.Web.HttpApplicationState" />
  389. collection.</para>
  390. </summary>
  391. <param name="name">The name of the object to be removed from the collection.</param>
  392. </member>
  393. <member name="M:System.Web.HttpApplicationState.RemoveAt(System.Int32)">
  394. <summary>
  395. <para>Removes an object from an <see cref="T:System.Web.HttpApplicationState" />
  396. collection by index.</para>
  397. </summary>
  398. <param name="index">The position in the collection of the item to be removed.</param>
  399. </member>
  400. <member name="M:System.Web.HttpApplicationState.Clear">
  401. <summary>
  402. <para>Removes all objects from an <see cref="T:System.Web.HttpApplicationState" />
  403. collection.</para>
  404. </summary>
  405. </member>
  406. <member name="M:System.Web.HttpApplicationState.RemoveAll">
  407. <summary>
  408. <para>Removes all objects from an <see cref="T:System.Web.HttpApplicationState" />
  409. collection.</para>
  410. </summary>
  411. </member>
  412. <member name="M:System.Web.HttpApplicationState.Get(System.String)">
  413. <summary>
  414. <para> Gets an <see cref="T:System.Web.HttpApplicationState" /> object by name.</para>
  415. </summary>
  416. <param name="name">The name of the object.</param>
  417. <returns>
  418. <para>The object referenced by <paramref name="name" />.</para>
  419. </returns>
  420. </member>
  421. <member name="M:System.Web.HttpApplicationState.Get(System.Int32)">
  422. <summary>
  423. <para> Gets an <see cref="T:System.Web.HttpApplicationState" />
  424. object by numerical index.</para>
  425. </summary>
  426. <param name="index">The index of the application state object.</param>
  427. <returns>
  428. <para> The object referenced by <paramref name="index" /> .</para>
  429. </returns>
  430. </member>
  431. <member name="M:System.Web.HttpApplicationState.GetKey(System.Int32)">
  432. <summary>
  433. <para> Gets an <see cref="T:System.Web.HttpApplicationState" /> object name by index.</para>
  434. </summary>
  435. <param name="index">The index of the application state object.</param>
  436. <returns>
  437. <para>The name under which the application state object was saved.</para>
  438. </returns>
  439. </member>
  440. <member name="M:System.Web.HttpApplicationState.Lock">
  441. <summary>
  442. <para>Locks access to an <see cref="T:System.Web.HttpApplicationState" />
  443. variable to facilitate access
  444. synchronization.</para>
  445. </summary>
  446. </member>
  447. <member name="M:System.Web.HttpApplicationState.UnLock">
  448. <summary>
  449. <para>Unlocks access to an <see cref="T:System.Web.HttpApplicationState" /> variable to facilitate access
  450. synchronization.</para>
  451. </summary>
  452. </member>
  453. <member name="P:System.Web.HttpApplicationState.Count">
  454. <summary>
  455. <para> Gets the number of objects in the <see cref="T:System.Web.HttpApplicationState" />
  456. collection.</para>
  457. </summary>
  458. </member>
  459. <member name="P:System.Web.HttpApplicationState.Item(System.String)">
  460. <summary>
  461. <para> Gets the value of a single <see cref="T:System.Web.HttpApplicationState" /> object by name.</para>
  462. </summary>
  463. <param name="name">The name of the object in the collection.</param>
  464. </member>
  465. <member name="P:System.Web.HttpApplicationState.Item(System.Int32)">
  466. <summary>
  467. <para> Gets a single <see cref="T:System.Web.HttpApplicationState" />
  468. object by index.</para>
  469. </summary>
  470. <param name="index">The numerical index of the object in the collection.</param>
  471. </member>
  472. <member name="P:System.Web.HttpApplicationState.AllKeys">
  473. <summary>
  474. <para> Gets the access keys in the <see cref="T:System.Web.HttpApplicationState" />
  475. collection.</para>
  476. </summary>
  477. </member>
  478. <member name="P:System.Web.HttpApplicationState.Contents">
  479. <summary>
  480. <para> Gets a reference to the <see cref="T:System.Web.HttpApplicationState" /> object.</para>
  481. </summary>
  482. </member>
  483. <member name="P:System.Web.HttpApplicationState.StaticObjects">
  484. <summary>
  485. <para>Gets all objects declared by an &lt;object&gt; tag where the scope is set to
  486. "Application" within the ASP.NET application.</para>
  487. </summary>
  488. </member>
  489. <member name="T:System.Web.HttpBrowserCapabilities">
  490. <summary>
  491. <para> Enables the server to gather information on
  492. the capabilities of the browser that is running on the client.</para>
  493. </summary>
  494. </member>
  495. <member name="T:System.Web.Configuration.HttpCapabilitiesBase">
  496. <summary>
  497. <para>Defines the base class for client user-agent capabilities.</para>
  498. </summary>
  499. </member>
  500. <member name="M:System.Web.Configuration.HttpCapabilitiesBase.GetConfigCapabilities(System.String,System.Web.HttpRequest)">
  501. <summary>
  502. <para>Returns individual browser capabilities for the current request.</para>
  503. </summary>
  504. <param name="configKey">The name of the configuration section of the capability.</param>
  505. <param name=" request">The <see cref="T:System.Web.HttpRequest" /> that contains the server variables used during evaluation. Usually the current <see langword="HttpRequest" /> .</param>
  506. <returns>
  507. <para>An <see cref="T:System.Web.Configuration.HttpCapabilitiesBase" /> that provides access to individual user-agent
  508. capabilities.</para>
  509. </returns>
  510. </member>
  511. <member name="P:System.Web.Configuration.HttpCapabilitiesBase.Item(System.String)">
  512. <summary>
  513. <para>Gets the value of the specified browser capability.</para>
  514. </summary>
  515. <param name="key">The name of the browser capability to retrieve.</param>
  516. </member>
  517. <member name="P:System.Web.HttpBrowserCapabilities.ClrVersion">
  518. <summary>
  519. <para> Gets the version number of the
  520. .NET common language runtime installed on the client.</para>
  521. </summary>
  522. </member>
  523. <member name="P:System.Web.HttpBrowserCapabilities.Type">
  524. <summary>
  525. Gets the name and major (that is, integer) version
  526. number of the client browser.
  527. </summary>
  528. </member>
  529. <member name="P:System.Web.HttpBrowserCapabilities.Browser">
  530. <summary>
  531. <para> Gets the browser string (if any) that was
  532. transmitted in the <see langword="User-Agent " /> header.</para>
  533. </summary>
  534. </member>
  535. <member name="P:System.Web.HttpBrowserCapabilities.Version">
  536. <summary>
  537. <para> Gets the full (integer and
  538. decimal) version number of the client browser.</para>
  539. </summary>
  540. </member>
  541. <member name="P:System.Web.HttpBrowserCapabilities.MajorVersion">
  542. <summary>
  543. <para>Gets the major (that is, integer) version number of the client browser.</para>
  544. </summary>
  545. </member>
  546. <member name="P:System.Web.HttpBrowserCapabilities.MinorVersion">
  547. <summary>
  548. <para>Gets the minor (that is, decimal) version number of the client browser.</para>
  549. </summary>
  550. </member>
  551. <member name="P:System.Web.HttpBrowserCapabilities.Platform">
  552. <summary>
  553. <para>Gets the name of the platform that the client uses.</para>
  554. </summary>
  555. </member>
  556. <member name="P:System.Web.HttpBrowserCapabilities.EcmaScriptVersion">
  557. <summary>
  558. <para>Gets the version number of ECMA script that the client browser supports.</para>
  559. </summary>
  560. </member>
  561. <member name="P:System.Web.HttpBrowserCapabilities.MSDomVersion">
  562. <summary>
  563. <para>Gets the version of Microsoft HTML (MSHTML) Document Object Model (DOM)
  564. that the client browser supports.</para>
  565. </summary>
  566. </member>
  567. <member name="P:System.Web.HttpBrowserCapabilities.W3CDomVersion">
  568. <summary>
  569. <para>Gets the version of the World Wide Web Consortium (W3C) XML
  570. Document Object Model (DOM) that the client browser supports.</para>
  571. </summary>
  572. </member>
  573. <member name="P:System.Web.HttpBrowserCapabilities.Beta">
  574. <summary>
  575. <para>Gets a value indicating whether the browser is a beta release.</para>
  576. </summary>
  577. </member>
  578. <member name="P:System.Web.HttpBrowserCapabilities.Crawler">
  579. <summary>
  580. <para>Gets a value indicating whether the client browser is a Web crawler search engine.</para>
  581. </summary>
  582. </member>
  583. <member name="P:System.Web.HttpBrowserCapabilities.AOL">
  584. <summary>
  585. <para> Gets a value indicating whether the client is an America Online (AOL) browser.</para>
  586. </summary>
  587. </member>
  588. <member name="P:System.Web.HttpBrowserCapabilities.Win16">
  589. <summary>
  590. <para>Gets a value indicating whether the client is a Win16-based computer.</para>
  591. </summary>
  592. </member>
  593. <member name="P:System.Web.HttpBrowserCapabilities.Win32">
  594. <summary>
  595. <para>Gets a value indicating whether the client is a Win32-based computer.</para>
  596. </summary>
  597. </member>
  598. <member name="P:System.Web.HttpBrowserCapabilities.Frames">
  599. <summary>
  600. <para>Gets a value indicating whether the client browser supports HTML frames.</para>
  601. </summary>
  602. </member>
  603. <member name="P:System.Web.HttpBrowserCapabilities.Tables">
  604. <summary>
  605. <para>Gets a value indicating whether the client browser supports HTML tables.</para>
  606. </summary>
  607. </member>
  608. <member name="P:System.Web.HttpBrowserCapabilities.Cookies">
  609. <summary>
  610. <para>Gets a value indicating whether the client browser supports cookies.</para>
  611. </summary>
  612. </member>
  613. <member name="P:System.Web.HttpBrowserCapabilities.VBScript">
  614. <summary>
  615. <para>Gets a value indicating whether the client browser supports VBScript.</para>
  616. </summary>
  617. </member>
  618. <member name="P:System.Web.HttpBrowserCapabilities.JavaScript">
  619. <summary>
  620. <para>Gets a value indicating whether the client browser supports JavaScript.</para>
  621. </summary>
  622. </member>
  623. <member name="P:System.Web.HttpBrowserCapabilities.JavaApplets">
  624. <summary>
  625. <para>Gets a value indicating whether the client browser supports Java applets.</para>
  626. </summary>
  627. </member>
  628. <member name="P:System.Web.HttpBrowserCapabilities.ActiveXControls">
  629. <summary>
  630. <para>Gets a value indicating whether the client browser supports ActiveX controls.</para>
  631. </summary>
  632. </member>
  633. <member name="P:System.Web.HttpBrowserCapabilities.BackgroundSounds">
  634. <summary>
  635. <para>Gets a value indicating whether the client browser supports background sounds.</para>
  636. </summary>
  637. </member>
  638. <member name="P:System.Web.HttpBrowserCapabilities.CDF">
  639. <summary>
  640. <para>Gets a value indicating whether the client browser supports Channel Definition Format (CDF) for webcasting.</para>
  641. </summary>
  642. </member>
  643. <member name="T:System.Web.HttpCacheVaryByParams">
  644. <summary>
  645. <para> Provides a type-safe way to set the <see cref="P:System.Web.HttpCachePolicy.VaryByParams" /> property that identifies the HTTP
  646. <see langword="Get" /> or <see langword="Post" />
  647. parameters that ASP.NET uses to choose a response from multiple cached
  648. responses.</para>
  649. </summary>
  650. </member>
  651. <member name="P:System.Web.HttpCacheVaryByParams.Item(System.String)">
  652. <summary>
  653. <para>Gets or sets the name of the HTTP <see langword="Get" />
  654. or <see langword="Post" /> parameter that is used to select one of several different cached responses.</para>
  655. </summary>
  656. <param name="header">The name of the custom header.</param>
  657. </member>
  658. <member name="P:System.Web.HttpCacheVaryByParams.IgnoreParams">
  659. <summary>
  660. <para> Gets or sets a value indicating whether HTTP header cache-control parameters are
  661. ignored.</para>
  662. </summary>
  663. </member>
  664. <member name="T:System.Web.HttpCacheability">
  665. <summary>
  666. <para> Provides enumerated values that are used to set
  667. the <see langword="Cache-Control " /> HTTP header.</para>
  668. </summary>
  669. </member>
  670. <member name="F:System.Web.HttpCacheability.NoCache">
  671. <summary>
  672. <para>Sets the <see langword="Cache-Control: no-cache " /> header. Without
  673. a field name, the directive applies to the entire request and a shared
  674. (proxy server) cache must force a successful revalidation with the origin Web server before
  675. satisfying the request. With a field name, the directive applies only
  676. to the named field;the rest of the response may be supplied from a
  677. shared cache.</para>
  678. <para>For more information, refer to RFC 2616: Hypertext Transfer Protocol --
  679. HTTP/1.1, available on the World Wide Web Consortium's site at
  680. http://www.w3c.org. See section 14.9 "Cache-Control" and section 13, "Caching in
  681. HTTP" for complete details.</para>
  682. <para>Note: <see langword="NoCache " />
  683. does not send the common HTTP 1.0 request directive
  684. <see langword="Pragma: no-cache" />.</para>
  685. </summary>
  686. </member>
  687. <member name="F:System.Web.HttpCacheability.Private">
  688. <summary>
  689. <para>Default value. Sets <see langword="Cache-Control: private " /> to specify that the response is cacheable only on the client and not by
  690. shared (proxy server) caches.</para>
  691. </summary>
  692. </member>
  693. <member name="F:System.Web.HttpCacheability.Server">
  694. <summary>
  695. <para> Specifies that the response is cached only at the origin
  696. server. Similar to the <see langword="NoCache " />option. Clients receive a
  697. <see langword="Cache-Control: no-cache " />directive but the document is cached on
  698. the origin
  699. server.</para>
  700. </summary>
  701. </member>
  702. <member name="F:System.Web.HttpCacheability.Public">
  703. <summary>
  704. <para>Sets <see langword="Cache-Control: public " /> to specify that the response is cacheable by clients and shared (proxy) caches.</para>
  705. </summary>
  706. </member>
  707. <member name="T:System.Web.HttpCacheRevalidation">
  708. <summary>
  709. <para> Provides enumerated values that are used to set revalidation-specific <see langword=" Cache-Control " /> HTTP
  710. headers.</para>
  711. </summary>
  712. </member>
  713. <member name="F:System.Web.HttpCacheRevalidation.AllCaches">
  714. <summary>
  715. <para>Sets the <see langword="Cache-Control: must-revalidate " /> HTTP header.</para>
  716. </summary>
  717. </member>
  718. <member name="F:System.Web.HttpCacheRevalidation.ProxyCaches">
  719. <summary>
  720. <para>Sets the <see langword="Cache-Control: proxy-revalidate " /> HTTP header.</para>
  721. </summary>
  722. </member>
  723. <member name="F:System.Web.HttpCacheRevalidation.None">
  724. <summary>
  725. <para> Default value. If this value is set,
  726. no cache-revalidation directive is sent.</para>
  727. </summary>
  728. </member>
  729. <member name="T:System.Web.HttpValidationStatus">
  730. <summary>
  731. <para>Provides enumerated values that indicate cache validation status.</para>
  732. </summary>
  733. </member>
  734. <member name="F:System.Web.HttpValidationStatus.Invalid">
  735. <summary>
  736. <para> Indicates that the cache is invalid. The item is evicted
  737. from the cache and the request is handled as a cache
  738. miss.</para>
  739. </summary>
  740. </member>
  741. <member name="F:System.Web.HttpValidationStatus.IgnoreThisRequest">
  742. <summary>
  743. <para>Indicates that the request is treated as a cache miss
  744. and the page is executed. The cache is not invalidated.</para>
  745. </summary>
  746. </member>
  747. <member name="F:System.Web.HttpValidationStatus.Valid">
  748. <summary>
  749. <para> Indicates that the cache is
  750. valid.</para>
  751. </summary>
  752. </member>
  753. <member name="T:System.Web.HttpCacheValidateHandler">
  754. <summary>
  755. <para>Delegate method that is called when a cached item is validated. Cache items
  756. invalidated within the method are treated as cache misses.</para>
  757. </summary>
  758. <param name="context">The <see cref="T:System.Web.HttpContext" /> object containing information about the current request.</param>
  759. <param name=" data">User-supplied data used to validate the cached item.</param>
  760. <param name=" validationStatus">An <see cref="T:System.Web.HttpValidationStatus" /> enumeration value. Your delegate should set this value to indicate the result of the validation.</param>
  761. </member>
  762. <member name="P:System.Web.HttpCachePolicySettings.NoServerCaching">
  763. </member>
  764. <member name="T:System.Web.HttpCachePolicy">
  765. <summary>
  766. <para> Contains methods for setting
  767. cache-specific HTTP headers and for controlling the ASP.NET page output cache.</para>
  768. </summary>
  769. </member>
  770. <member name="M:System.Web.HttpCachePolicy.SetNoServerCaching">
  771. <summary>
  772. <para> Stops all origin-server caching for the current response. </para>
  773. </summary>
  774. </member>
  775. <member name="M:System.Web.HttpCachePolicy.SetVaryByCustom(System.String)">
  776. <summary>
  777. <para>Sets the <see langword="Vary " />HTTP
  778. header to the specified text string.</para>
  779. </summary>
  780. <param name="custom">The text to set the <see langword="Vary" /> header to.</param>
  781. </member>
  782. <member name="M:System.Web.HttpCachePolicy.AppendCacheExtension(System.String)">
  783. <summary>
  784. <para>Appends the specified text to
  785. the <see langword="Cache-Control " /> HTTP
  786. header.</para>
  787. </summary>
  788. <param name="extension">The text to append to the <see langword="Cache-Control" /> header.</param>
  789. </member>
  790. <member name="M:System.Web.HttpCachePolicy.SetNoTransforms">
  791. <summary>
  792. <para>Sets the <see langword="CacheControl: no-transform " />
  793. directive.</para>
  794. </summary>
  795. </member>
  796. <member name="M:System.Web.HttpCachePolicy.SetCacheability(System.Web.HttpCacheability)">
  797. <summary>
  798. <para>Sets the <see langword="Cache-Control " /> header to one of the values of
  799. <see cref="T:System.Web.HttpCacheability" />
  800. .</para>
  801. </summary>
  802. <param name="cacheability">An <see cref="T:System.Web.HttpCacheability" /> enumeration value.</param>
  803. </member>
  804. <member name="M:System.Web.HttpCachePolicy.SetCacheability(System.Web.HttpCacheability,System.String)">
  805. <summary>
  806. <para> Sets the <see langword="Cache-Control " /> header to one of the values of <see cref="T:System.Web.HttpCacheability" /> and
  807. appends an extension to the directive.</para>
  808. </summary>
  809. <param name="cacheability">The <see cref="T:System.Web.HttpCacheability" /> enumeration value to set the header to.</param>
  810. <param name=" field">The cache control extension to add to the header.</param>
  811. </member>
  812. <member name="M:System.Web.HttpCachePolicy.SetNoStore">
  813. <summary>
  814. <para>
  815. Sets the <see langword="Cache-Control: no-store " />
  816. directive.</para>
  817. </summary>
  818. </member>
  819. <member name="M:System.Web.HttpCachePolicy.SetExpires(System.DateTime)">
  820. <summary>
  821. <para> Sets the <see langword="Expires " /> HTTP header to an absolute date and time.</para>
  822. </summary>
  823. <param name="date">The absolute <see cref="T:System.DateTime" /> value to set the <see langword="Expires" />header to.</param>
  824. </member>
  825. <member name="M:System.Web.HttpCachePolicy.SetMaxAge(System.TimeSpan)">
  826. <summary>
  827. <para>Sets the <see langword="Cache-Control: max-age " />HTTP header based on the specified time span.</para>
  828. </summary>
  829. <param name="delta">The time span used to set the <see langword="Cache" />-<see langword="Control: max-age" /> header.</param>
  830. </member>
  831. <member name="M:System.Web.HttpCachePolicy.SetProxyMaxAge(System.TimeSpan)">
  832. <summary>
  833. <para>Sets the <see langword="Cache-Control: s-maxage " /> HTTP header based on the specified time span.</para>
  834. </summary>
  835. <param name="delta">The time span used to set the <see langword="Cache-Control: s-maxage" /> header.</param>
  836. </member>
  837. <member name="M:System.Web.HttpCachePolicy.SetSlidingExpiration(System.Boolean)">
  838. <summary>
  839. <para>
  840. Sets cache expiration to sliding.</para>
  841. </summary>
  842. <param name="slide">
  843. <see langword="true" /> or <see langword="false" /> .</param>
  844. </member>
  845. <member name="M:System.Web.HttpCachePolicy.SetValidUntilExpires(System.Boolean)">
  846. <summary>
  847. <para>Specifies whether the ASP.NET cache should ignore
  848. HTTP <see langword="Cache-Control" /> headers sent by the client that
  849. invalidate the cache.</para>
  850. </summary>
  851. <param name="validUntilExpires">
  852. <see langword="true" /> if the cache ignores <see langword="Cache-Control" /> invalidation headers; otherwise, <see langword="false" />.</param>
  853. </member>
  854. <member name="M:System.Web.HttpCachePolicy.SetRevalidation(System.Web.HttpCacheRevalidation)">
  855. <summary>
  856. <para>Sets the <see langword="Cache-Control " />HTTP header
  857. to either the <see langword="must-revalidate " />or the
  858. <see langword="proxy-revalidate " />directives based on the supplied enumeration
  859. value.</para>
  860. </summary>
  861. <param name="revalidation">The <see cref="T:System.Web.HttpCacheRevalidation" /> enumeration value to set the <see langword="Cache-Control" /> header to.</param>
  862. </member>
  863. <member name="M:System.Web.HttpCachePolicy.SetETag(System.String)">
  864. <summary>
  865. <para>Sets the <see langword="ETag " /> HTTP header to the specified string.</para>
  866. </summary>
  867. <param name="etag">The text to use for the <see langword="ETag" /> header.</param>
  868. </member>
  869. <member name="M:System.Web.HttpCachePolicy.SetLastModified(System.DateTime)">
  870. <summary>
  871. <para>Sets the <see langword="Last-Modified " />HTTP header to the <see cref="T:System.DateTime" /> value supplied.</para>
  872. </summary>
  873. <param name="date">The new <see cref="T:System.DateTime" /> value for the <see langword="Last-Modified" /> header.</param>
  874. </member>
  875. <member name="M:System.Web.HttpCachePolicy.SetLastModifiedFromFileDependencies">
  876. <summary>
  877. <para>Sets the <see langword="Last-Modified " />HTTP header based on the time stamps
  878. of the handler's file dependencies.</para>
  879. </summary>
  880. </member>
  881. <member name="M:System.Web.HttpCachePolicy.SetETagFromFileDependencies">
  882. <summary>
  883. <para>Sets the <see langword="ETag" /> HTTP header based on the time stamps of
  884. the handler's file dependencies.</para>
  885. </summary>
  886. </member>
  887. <member name="M:System.Web.HttpCachePolicy.AddValidationCallback(System.Web.HttpCacheValidateHandler,System.Object)">
  888. <summary>
  889. <para>Registers a validation callback for the current response.</para>
  890. </summary>
  891. <param name="handler">The <see cref="T:System.Web.HttpCacheValidateHandler" /> value.</param>
  892. <param name="data">The arbitrary user-supplied data that is passed back to the <see langword="AddValidationCallback" /> delegate.</param>
  893. </member>
  894. <member name="P:System.Web.HttpCachePolicy.VaryByHeaders">
  895. <summary>
  896. <para> Gets the list of all HTTP headers that will be
  897. used to vary cache output.</para>
  898. </summary>
  899. </member>
  900. <member name="P:System.Web.HttpCachePolicy.VaryByParams">
  901. <summary>
  902. <para>Gets the list of parameters received by a <see langword="GET " />(querystring) or <see langword="POST " />(in the body of the HTTP
  903. request) that affect
  904. caching.</para>
  905. </summary>
  906. </member>
  907. <member name="T:System.Web.HttpCacheVaryByHeaders">
  908. <summary>
  909. <para> Provides a type-safe way to set the <see cref="P:System.Web.HttpCachePolicy.VaryByHeaders" /> property that identifies the request
  910. headers that ASP.NET adds to the <see langword="Vary" />
  911. HTTP header sent to the
  912. client.</para>
  913. </summary>
  914. </member>
  915. <member name="M:System.Web.HttpCacheVaryByHeaders.VaryByUnspecifiedParameters">
  916. <summary>
  917. <para>Causes ASP.NET to set the <see langword="Vary" /> HTTP
  918. header to the value * (an asterisk) and causes
  919. all other <see langword="Vary" />
  920. header information to be dropped.</para>
  921. </summary>
  922. </member>
  923. <member name="P:System.Web.HttpCacheVaryByHeaders.AcceptTypes">
  924. <summary>
  925. <para> Gets or sets a value indicating whether the origin server
  926. adds the <see langword="Accept" /> field to the
  927. <see langword="Vary" />
  928. HTTP header.</para>
  929. </summary>
  930. </member>
  931. <member name="P:System.Web.HttpCacheVaryByHeaders.UserLanguage">
  932. <summary>
  933. <para> Gets or sets a value indicating whether the origin
  934. server adds the <see langword="Accept-Language" /> field to the
  935. <see langword="Vary" />
  936. HTTP header.</para>
  937. </summary>
  938. </member>
  939. <member name="P:System.Web.HttpCacheVaryByHeaders.UserAgent">
  940. <summary>
  941. Gets or sets a value indicating whether
  942. the origin server adds the <see langword="User-Agent" /> header to the
  943. <see langword="Vary" /> HTTP header.
  944. </summary>
  945. </member>
  946. <member name="P:System.Web.HttpCacheVaryByHeaders.UserCharSet">
  947. <summary>
  948. <para> Gets or sets a value indicating whether the
  949. origin server adds the <see langword="Accept-Charset" /> field
  950. to the
  951. <see langword="Vary" />
  952. HTTP header.</para>
  953. </summary>
  954. </member>
  955. <member name="P:System.Web.HttpCacheVaryByHeaders.Item(System.String)">
  956. <summary>
  957. <para> Gets or sets a custom header field that the origin server
  958. adds to the <see langword="Vary" /> HTTP
  959. header.</para>
  960. </summary>
  961. <param name="header">The name of the custom header.</param>
  962. </member>
  963. <member name="T:System.Web.HttpClientCertificate">
  964. <summary>
  965. <para> Provides the client certificate fields issued by the client in response to the server's request for the client's identity.</para>
  966. </summary>
  967. </member>
  968. <member name="M:System.Web.HttpClientCertificate.Get(System.String)">
  969. <summary>
  970. <para>Returns individual client certificate fields by name.</para>
  971. </summary>
  972. <param name="field">The item in the collection to retrieve.</param>
  973. <returns>
  974. <para>The value of the item specified by <paramref name="field." /></para>
  975. </returns>
  976. </member>
  977. <member name="P:System.Web.HttpClientCertificate.Cookie">
  978. <summary>
  979. <para>Gets the unique ID for the client certificate, if provided.</para>
  980. </summary>
  981. </member>
  982. <member name="P:System.Web.HttpClientCertificate.Certificate">
  983. <summary>
  984. <para>Gets a string containing the binary stream of the entire certificate content, in ASN.1 format.</para>
  985. </summary>
  986. </member>
  987. <member name="P:System.Web.HttpClientCertificate.Flags">
  988. <summary>
  989. <para>A set of flags that provide additional client certificate information. </para>
  990. </summary>
  991. </member>
  992. <member name="P:System.Web.HttpClientCertificate.KeySize">
  993. <summary>
  994. <para> Gets the number of bits in the digital certificate key size.
  995. For example, 128. </para>
  996. </summary>
  997. </member>
  998. <member name="P:System.Web.HttpClientCertificate.SecretKeySize">
  999. <summary>
  1000. <para>Gets the number of bits in the server certificate
  1001. private key. For example, 1024.</para>
  1002. </summary>
  1003. </member>
  1004. <member name="P:System.Web.HttpClientCertificate.Issuer">
  1005. <summary>
  1006. <para> A string that contains a list of subfield values containing
  1007. information about the certificate issuer.</para>
  1008. </summary>
  1009. </member>
  1010. <member name="P:System.Web.HttpClientCertificate.ServerIssuer">
  1011. <summary>
  1012. <para>Gets the issuer field of the server certificate.</para>
  1013. </summary>
  1014. </member>
  1015. <member name="P:System.Web.HttpClientCertificate.Subject">
  1016. <summary>
  1017. <para>Gets the subject field of the client certificate.</para>
  1018. </summary>
  1019. </member>
  1020. <member name="P:System.Web.HttpClientCertificate.ServerSubject">
  1021. <summary>
  1022. <para>Gets the subject field of the server certificate.</para>
  1023. </summary>
  1024. </member>
  1025. <member name="P:System.Web.HttpClientCertificate.SerialNumber">
  1026. <summary>
  1027. <para> Provides the certificate serial number as an
  1028. ASCII representation of hexadecimal bytes separated by hyphens. For example,
  1029. 04-67-F3-02.</para>
  1030. </summary>
  1031. </member>
  1032. <member name="P:System.Web.HttpClientCertificate.ValidFrom">
  1033. <summary>
  1034. <para> Gets the date when the certificate becomes valid. The date varies with
  1035. international settings. </para>
  1036. </summary>
  1037. </member>
  1038. <member name="P:System.Web.HttpClientCertificate.ValidUntil">
  1039. <summary>
  1040. <para> Gets the certificate expiration date.</para>
  1041. </summary>
  1042. </member>
  1043. <member name="P:System.Web.HttpClientCertificate.CertEncoding">
  1044. <summary>
  1045. <para> Gets the encoding of the certificate.</para>
  1046. </summary>
  1047. </member>
  1048. <member name="P:System.Web.HttpClientCertificate.PublicKey">
  1049. <summary>
  1050. <para>Gets the public key binary value from the certificate.</para>
  1051. </summary>
  1052. </member>
  1053. <member name="P:System.Web.HttpClientCertificate.BinaryIssuer">
  1054. <summary>
  1055. <para>Gets or sets the certificate issuer, in binary format.</para>
  1056. </summary>
  1057. </member>
  1058. <member name="P:System.Web.HttpClientCertificate.IsPresent">
  1059. <summary>
  1060. <para>Gets a value that indicates whether the client certificate is present.</para>
  1061. </summary>
  1062. </member>
  1063. <member name="P:System.Web.HttpClientCertificate.IsValid">
  1064. <summary>
  1065. <para>Gets a value that indicates whether the client
  1066. certificate is valid.</para>
  1067. </summary>
  1068. </member>
  1069. <member name="T:System.Web.HttpContext">
  1070. <summary>
  1071. <para> Encapsulates all HTTP-specific information about an individual HTTP request.</para>
  1072. </summary>
  1073. </member>
  1074. <member name="M:System.Web.HttpContext.#ctor(System.Web.HttpRequest,System.Web.HttpResponse)">
  1075. <summary>
  1076. <para> Initializes a new instance of the <see cref="T:System.Web.HttpContext" /> class.
  1077. </para>
  1078. </summary>
  1079. <param name="request">The <see cref="T:System.Web.HttpRequest" /> object for the current HTTP request. </param>
  1080. <param name=" response">The <see cref="T:System.Web.HttpResponse" /> object for the current HTTP request. </param>
  1081. </member>
  1082. <member name="M:System.Web.HttpContext.#ctor(System.Web.HttpWorkerRequest)">
  1083. <summary>
  1084. <para> Initializes a new instance of the <see cref="T:System.Web.HttpContext" /> class.
  1085. </para>
  1086. </summary>
  1087. <param name="wr">The <see cref="T:System.Web.HttpWorkerRequest" /> object for the current HTTP request. </param>
  1088. </member>
  1089. <member name="M:System.Web.HttpContext.AddError(System.Exception)">
  1090. <summary>
  1091. <para> Adds an exception to the exception collection for the current HTTP request.
  1092. </para>
  1093. </summary>
  1094. <param name="errorInfo">The <see cref="T:System.Exception" /> object to add to the exception collection. </param>
  1095. </member>
  1096. <member name="M:System.Web.HttpContext.ClearError">
  1097. <summary>
  1098. <para> Clears all errors for the current HTTP request.
  1099. </para>
  1100. </summary>
  1101. </member>
  1102. <member name="M:System.Web.HttpContext.GetConfig(System.String)">
  1103. <summary>
  1104. <para>Returns requested configuration information for the current HTTP
  1105. request.</para>
  1106. </summary>
  1107. <param name="name">The configuration tag that information is requested for.</param>
  1108. <returns>
  1109. <para>The object containing the requested configuration information.</para>
  1110. </returns>
  1111. </member>
  1112. <member name="M:System.Web.HttpContext.GetAppConfig(System.String)">
  1113. <summary>
  1114. <para>Returns requested configuration information for the
  1115. current application</para>
  1116. </summary>
  1117. <param name="name">The application configuration tag that information is requested for.</param>
  1118. <returns>
  1119. <para>An object containing configuration information.</para>
  1120. </returns>
  1121. </member>
  1122. <member name="M:System.Web.HttpContext.RewritePath(System.String)">
  1123. <summary>
  1124. <para> Assigns an internal rewrite path.</para>
  1125. </summary>
  1126. <param name="path">The internal rewrite path.</param>
  1127. </member>
  1128. <member name="P:System.Web.HttpContext.Current">
  1129. <summary>
  1130. <para> Gets the <see cref="T:System.Web.HttpContext" /> object for the current HTTP request.</para>
  1131. </summary>
  1132. </member>
  1133. <member name="P:System.Web.HttpContext.ApplicationInstance">
  1134. <summary>
  1135. <para> Gets or sets the <see cref="T:System.Web.HttpApplication" /><see langword=" " /> object for the current HTTP request.</para>
  1136. </summary>
  1137. </member>
  1138. <member name="P:System.Web.HttpContext.Application">
  1139. <summary>
  1140. <para> Gets the <see cref="T:System.Web.HttpApplicationState" /> object for the current
  1141. HTTP request.
  1142. </para>
  1143. </summary>
  1144. </member>
  1145. <member name="P:System.Web.HttpContext.Handler">
  1146. <summary>
  1147. <para> Gets or sets the <see cref="T:System.Web.IHttpHandler" /> object
  1148. for the current HTTP request.</para>
  1149. </summary>
  1150. </member>
  1151. <member name="P:System.Web.HttpContext.Request">
  1152. <summary>
  1153. <para> Gets the <see cref="T:System.Web.HttpRequest" /> object
  1154. for the current HTTP request.</para>
  1155. </summary>
  1156. </member>
  1157. <member name="P:System.Web.HttpContext.Response">
  1158. <summary>
  1159. <para> Gets the <see cref="T:System.Web.HttpResponse" /> object
  1160. for the current HTTP response.</para>
  1161. </summary>
  1162. </member>
  1163. <member name="P:System.Web.HttpContext.Trace">
  1164. <summary>
  1165. <para> Gets the <see cref="T:System.Web.TraceContext" /> object for the current HTTP
  1166. response.</para>
  1167. </summary>
  1168. </member>
  1169. <member name="P:System.Web.HttpContext.Items">
  1170. <summary>
  1171. <para> Gets a key-value collection that can be
  1172. used to organize and share data between an <see cref="T:System.Web.IHttpModule" /> and an <see cref="T:System.Web.IHttpHandler" /> during
  1173. an HTTP
  1174. request.
  1175. </para>
  1176. </summary>
  1177. </member>
  1178. <member name="P:System.Web.HttpContext.Session">
  1179. <summary>
  1180. <para> Gets the <see cref="T:System.Web.SessionState.HttpSessionState" /> instance for the current HTTP request.
  1181. </para>
  1182. </summary>
  1183. </member>
  1184. <member name="P:System.Web.HttpContext.Server">
  1185. <summary>
  1186. <para> Gets the <see cref="T:System.Web.HttpServerUtility" /> object
  1187. that provides methods used
  1188. in processing Web
  1189. requests.</para>
  1190. </summary>
  1191. </member>
  1192. <member name="P:System.Web.HttpContext.Error">
  1193. <summary>
  1194. <para> Gets the first
  1195. error (if any) accumulated during HTTP request processing.
  1196. </para>
  1197. </summary>
  1198. </member>
  1199. <member name="P:System.Web.HttpContext.AllErrors">
  1200. <summary>
  1201. <para> Gets an array of errors accumulated while processing an HTTP
  1202. request.
  1203. </para>
  1204. </summary>
  1205. </member>
  1206. <member name="P:System.Web.HttpContext.User">
  1207. <summary>
  1208. <para> Gets or sets security information for the current HTTP request.
  1209. </para>
  1210. </summary>
  1211. </member>
  1212. <member name="P:System.Web.HttpContext.SkipAuthorization">
  1213. <summary>
  1214. <para>Gets or sets a value that specifies whether the
  1215. URLAuthorization module will skip the authorization check for the
  1216. current request. </para>
  1217. </summary>
  1218. </member>
  1219. <member name="P:System.Web.HttpContext.IsDebuggingEnabled">
  1220. <summary>
  1221. <para> Gets a value indicating whether the current HTTP request is in debug mode.
  1222. </para>
  1223. </summary>
  1224. </member>
  1225. <member name="P:System.Web.HttpContext.IsCustomErrorEnabled">
  1226. <summary>
  1227. <para> Gets a value indicating whether custom errors are enabled for the current HTTP request.
  1228. </para>
  1229. </summary>
  1230. </member>
  1231. <member name="P:System.Web.HttpContext.Timestamp">
  1232. <summary>
  1233. <para>Gets the initial timestamp of the current HTTP request.</para>
  1234. </summary>
  1235. </member>
  1236. <member name="P:System.Web.HttpContext.Cache">
  1237. <summary>
  1238. <para> Gets the <see cref="T:System.Web.Caching.Cache" /> object for the current HTTP request.
  1239. </para>
  1240. </summary>
  1241. </member>
  1242. <member name="T:System.Web.HttpCookie">
  1243. <summary>
  1244. <para> Provides a type-safe way to
  1245. create and manipulate individual HTTP cookies.</para>
  1246. </summary>
  1247. </member>
  1248. <member name="M:System.Web.HttpCookie.#ctor(System.String)">
  1249. <summary>
  1250. <para> Creates and names a new
  1251. cookie.</para>
  1252. </summary>
  1253. <param name="name">The name of the new cookie.</param>
  1254. </member>
  1255. <member name="M:System.Web.HttpCookie.#ctor(System.String,System.String)">
  1256. <summary>
  1257. <para>
  1258. Creates, names, and assigns a value to a new
  1259. cookie.</para>
  1260. </summary>
  1261. <param name="name">The name of the new cookie.</param>
  1262. <param name=" value">The value of the new cookie.</param>
  1263. </member>
  1264. <member name="P:System.Web.HttpCookie.Name">
  1265. <summary>
  1266. <para>Gets or
  1267. sets the name of a cookie.</para>
  1268. </summary>
  1269. </member>
  1270. <member name="P:System.Web.HttpCookie.Path">
  1271. <summary>
  1272. <para>Gets or sets the virtual path to transmit with the
  1273. current cookie.</para>
  1274. </summary>
  1275. </member>
  1276. <member name="P:System.Web.HttpCookie.Secure">
  1277. <summary>
  1278. <para>Gets or sets a value indicating whether to transmit the cookie securely (that is, over HTTPS only).</para>
  1279. </summary>
  1280. </member>
  1281. <member name="P:System.Web.HttpCookie.Domain">
  1282. <summary>
  1283. <para> Gets or sets the domain to associate the cookie with.</para>
  1284. </summary>
  1285. </member>
  1286. <member name="P:System.Web.HttpCookie.Expires">
  1287. <summary>
  1288. <para>Gets or sets the expiration date and time for the cookie.</para>
  1289. </summary>
  1290. </member>
  1291. <member name="P:System.Web.HttpCookie.Value">
  1292. <summary>
  1293. <para>Gets
  1294. or
  1295. sets an individual cookie value.</para>
  1296. </summary>
  1297. </member>
  1298. <member name="P:System.Web.HttpCookie.HasKeys">
  1299. <summary>
  1300. <para> Gets
  1301. a value indicating whether a cookie has subkeys.</para>
  1302. </summary>
  1303. </member>
  1304. <member name="P:System.Web.HttpCookie.Values">
  1305. <summary>
  1306. <para>Gets a collection of key-and-value value pairs that are contained within a single cookie object.</para>
  1307. </summary>
  1308. </member>
  1309. <member name="P:System.Web.HttpCookie.Item(System.String)">
  1310. <summary>
  1311. <para>Shortcut for
  1312. <see langword="HttpCookie.Values[" />key<see langword="]. " /> This property
  1313. is provided for compatibility with previous versions of ASP.</para>
  1314. </summary>
  1315. <param name="key">Key (index) of cookie value.</param>
  1316. </member>
  1317. <member name="T:System.Web.HttpCookieCollection">
  1318. <summary>
  1319. <para>
  1320. Provides a type-safe
  1321. way to manipulate HTTP cookies.
  1322. </para>
  1323. </summary>
  1324. </member>
  1325. <member name="M:System.Web.HttpCookieCollection.#ctor">
  1326. <summary>
  1327. <para>Initializes a new instance of the <see cref="T:System.Web.HttpCookieCollection" />
  1328. class.</para>
  1329. </summary>
  1330. </member>
  1331. <member name="M:System.Web.HttpCookieCollection.Add(System.Web.HttpCookie)">
  1332. <summary>
  1333. <para>Adds the specified cookie to the cookie collection.</para>
  1334. </summary>
  1335. <param name="cookie">The <see cref="T:System.Web.HttpCookie" /> to add to the collection.</param>
  1336. </member>
  1337. <member name="M:System.Web.HttpCookieCollection.CopyTo(System.Array,System.Int32)">
  1338. <summary>
  1339. <para>Copies members of the cookie collection to an
  1340. <see cref="T:System.Array" /> beginning at the
  1341. specified index of the array.</para>
  1342. </summary>
  1343. <param name="dest">The destination <see cref="T:System.Array" />.</param>
  1344. <param name=" index">The index of the destination array where copying starts.</param>
  1345. </member>
  1346. <member name="M:System.Web.HttpCookieCollection.Set(System.Web.HttpCookie)">
  1347. <summary>
  1348. <para> Updates the value of an existing cookie in a cookie collection.</para>
  1349. </summary>
  1350. <param name="cookie">The <see cref="T:System.Web.HttpCookie" /> object to update.</param>
  1351. </member>
  1352. <member name="M:System.Web.HttpCookieCollection.Remove(System.String)">
  1353. <summary>
  1354. <para>Removes the cookie with the specified name from the collection.</para>
  1355. </summary>
  1356. <param name="name">The name of the cookie to remove from the collection.</param>
  1357. </member>
  1358. <member name="M:System.Web.HttpCookieCollection.Clear">
  1359. <summary>
  1360. <para>Clears all cookies from the cookie collection.</para>
  1361. </summary>
  1362. </member>
  1363. <member name="M:System.Web.HttpCookieCollection.GetKey(System.Int32)">
  1364. <summary>
  1365. <para>Returns the key (name) of the cookie at the specified numerical index.</para>
  1366. </summary>
  1367. <param name="index">The index of the key to retrieve from the collection.</param>
  1368. <returns>
  1369. <para>The name of the cookie specified by <paramref name="index" />.</para>
  1370. </returns>
  1371. </member>
  1372. <member name="P:System.Web.HttpCookieCollection.Item(System.String)">
  1373. <summary>
  1374. <para> Gets the cookie with the specified name from the cookie collection.</para>
  1375. </summary>
  1376. <param name="name">Name of cookie to retrieve.</param>
  1377. </member>
  1378. <member name="P:System.Web.HttpCookieCollection.Item(System.Int32)">
  1379. <summary>
  1380. <para> Gets the
  1381. cookie
  1382. with the specified numerical index from the cookie collection.</para>
  1383. </summary>
  1384. <param name="index">The index of the cookie to retrieve from the collection.</param>
  1385. </member>
  1386. <member name="P:System.Web.HttpCookieCollection.AllKeys">
  1387. <summary>
  1388. <para>Gets a string array containing all the keys (cookie names) in the cookie collection.</para>
  1389. </summary>
  1390. </member>
  1391. <member name="M:System.Web.HttpDebugHandler.ProcessRequest(System.Web.HttpContext)">
  1392. <summary>
  1393. <para>Drives web processing execution.</para>
  1394. </summary>
  1395. <param name="context">HttpContext object.</param>
  1396. </member>
  1397. <member name="P:System.Web.HttpDebugHandler.IsReusable">
  1398. <summary>
  1399. <para>Indicates whether an HttpDebugHandler instance can be recycled and used for
  1400. another request.</para>
  1401. </summary>
  1402. <returns>
  1403. <para>Always returns <see langword="true " />for
  1404. HttpDebugHandler<see langword="." /></para>
  1405. </returns>
  1406. </member>
  1407. <member name="T:System.Web.HttpException">
  1408. <summary>
  1409. <para> Provides a means of generating HTTP exceptions.</para>
  1410. </summary>
  1411. </member>
  1412. <member name="M:System.Web.HttpException.CreateFromLastError(System.String)">
  1413. <summary>
  1414. <para>Creates a new <see cref="T:System.Exception" /> based on the error code returned from the Win32 API
  1415. <see langword="GetLastError()" /> method. </para>
  1416. </summary>
  1417. <param name="message">The message to be displayed to the client when the exception is thrown. </param>
  1418. <returns>
  1419. <para>An <see langword="Exception" /> based
  1420. on the error code that is returned from a
  1421. call to the Win32 API <see langword="GetLastError()" /> method.</para>
  1422. </returns>
  1423. </member>
  1424. <member name="M:System.Web.HttpException.#ctor">
  1425. <summary>
  1426. <para>Constructs an empty <see langword="Exception " />
  1427. object.</para>
  1428. </summary>
  1429. </member>
  1430. <member name="M:System.Web.HttpException.#ctor(System.String)">
  1431. <summary>
  1432. <para> Constructs an <see cref="T:System.Exception" /> using a supplied error message.
  1433. </para>
  1434. </summary>
  1435. <param name="message"> The message displayed to the client when the exception is thrown. </param>
  1436. </member>
  1437. <member name="M:System.Web.HttpException.#ctor(System.String,System.Int32)">
  1438. <summary>
  1439. <para>Constructs an <see cref="T:System.Exception" /> using error message and an exception code.</para>
  1440. </summary>
  1441. <param name="message"> The error message displayed to the client when the exception is thrown. </param>
  1442. <param name=" hr">The exception code that defines the error.</param>
  1443. </member>
  1444. <member name="M:System.Web.HttpException.#ctor(System.String,System.Exception)">
  1445. <summary>
  1446. <para>Constructs an <see cref="T:System.Exception" /> using an error message and the
  1447. <see cref="P:System.Exception.InnerException" /> property.</para>
  1448. </summary>
  1449. <param name="message">The message displayed to the client when the exception is thrown. </param>
  1450. <param name=" innerException">The <see cref="P:System.Exception.InnerException" />, if any, that threw the current exception.</param>
  1451. </member>
  1452. <member name="M:System.Web.HttpException.#ctor(System.Int32,System.String,System.Exception)">
  1453. <summary>
  1454. <para>Constructs an <see cref="T:System.Exception" /> using an HTTP error code, an error message,
  1455. and the <see cref="P:System.Exception.InnerException" />
  1456. property.
  1457. </para>
  1458. </summary>
  1459. <param name="httpCode">The HTTP error code displayed to the client. </param>
  1460. <param name=" message">The message displayed to the client. </param>
  1461. <param name=" innerException">The <see cref="P:System.Exception.InnerException" /> , if any, that threw the current exception.</param>
  1462. </member>
  1463. <member name="M:System.Web.HttpException.#ctor(System.Int32,System.String)">
  1464. <summary>
  1465. <para>Constructs an <see cref="T:System.Exception" /> using
  1466. an HTTP error code and an error message.</para>
  1467. </summary>
  1468. <param name="httpCode"> The HTTP error code displayed on the client. </param>
  1469. <param name=" message">The message displayed to the client when the exception is thrown.</param>
  1470. </member>
  1471. <member name="M:System.Web.HttpException.#ctor(System.Int32,System.String,System.Int32)">
  1472. <summary>
  1473. <para> Constructs an <see cref="T:System.Exception" /> using HTTP error code, an error message, and an exception
  1474. code.</para>
  1475. </summary>
  1476. <param name="httpCode">The HTTP error code displayed on the client.</param>
  1477. <param name=" message">The error message displayed to the client. </param>
  1478. <param name=" hr">The error code that defines the error.</param>
  1479. </member>
  1480. <member name="M:System.Web.HttpException.GetHttpCode">
  1481. <summary>
  1482. <para>Returns the HTTP error code to send back to the client.
  1483. If there is a nonzero HTTP code, it is returned. Otherwise, the <see cref="P:System.Exception.InnerException" />
  1484. code is returned. If neither an <see cref="P:System.Exception.InnerException" /> code nor a
  1485. nonzero HTTP code is available,
  1486. the HTTP error code 500 is returned.</para>
  1487. </summary>
  1488. <returns>
  1489. <para>The HTTP code representing the exception.</para>
  1490. </returns>
  1491. </member>
  1492. <member name="M:System.Web.HttpException.GetHtmlErrorMessage">
  1493. <summary>
  1494. <para>Returns the HTML error message to send back to the
  1495. client.</para>
  1496. </summary>
  1497. <returns>
  1498. <para>The HTML error message.</para>
  1499. </returns>
  1500. </member>
  1501. <member name="T:System.Web.HttpCompileException">
  1502. <summary>
  1503. <para>The exception that is thrown when a compiler error occurs.</para>
  1504. </summary>
  1505. </member>
  1506. <member name="P:System.Web.HttpCompileException.Results">
  1507. <summary>
  1508. <para>Gets compiler output and error information for
  1509. the exception. </para>
  1510. </summary>
  1511. </member>
  1512. <member name="P:System.Web.HttpCompileException.SourceCode">
  1513. <summary>
  1514. <para>Gets a string containing the
  1515. source code being compiled when the error occurs. </para>
  1516. </summary>
  1517. </member>
  1518. <member name="T:System.Web.HttpParseException">
  1519. <summary>
  1520. <para>The exception that is thrown when a parse error occurs.</para>
  1521. </summary>
  1522. </member>
  1523. <member name="P:System.Web.HttpParseException.FileName">
  1524. <summary>
  1525. <para>Gets the name of the file being parsed when the error occurs.</para>
  1526. </summary>
  1527. </member>
  1528. <member name="P:System.Web.HttpParseException.Line">
  1529. <summary>
  1530. <para>Gets the number of the line being parsed when the error occurs.</para>
  1531. </summary>
  1532. </member>
  1533. <member name="T:System.Web.HttpFileCollection">
  1534. <summary>
  1535. <para> Provides access to and organizes files uploaded by a
  1536. client.</para>
  1537. </summary>
  1538. </member>
  1539. <member name="M:System.Web.HttpFileCollection.CopyTo(System.Array,System.Int32)">
  1540. <summary>
  1541. <para> Copies members of the file collection to an
  1542. <see cref="T:System.Array" /> beginning at the specified index of the array.</para>
  1543. </summary>
  1544. <param name="dest">The destination <see cref="T:System.Array" />.</param>
  1545. <param name=" index">The index of the destination array where copying starts.</param>
  1546. </member>
  1547. <member name="M:System.Web.HttpFileCollection.GetKey(System.Int32)">
  1548. <summary>
  1549. <para>Returns the name of the <see cref="T:System.Web.HttpFileCollection" /> member with
  1550. the specified numerical index.</para>
  1551. </summary>
  1552. <param name="index">The index of the object name to be returned.</param>
  1553. <returns>
  1554. <para>The name of the <see langword="HttpFileCollection" /> member specified by
  1555. <paramref name="index." /></para>
  1556. </returns>
  1557. </member>
  1558. <member name="P:System.Web.HttpFileCollection.Item(System.String)">
  1559. <summary>
  1560. <para>Gets the object with the specified name from the file collection.</para>
  1561. </summary>
  1562. <param name="name">Name of item to be returned.</param>
  1563. </member>
  1564. <member name="P:System.Web.HttpFileCollection.Item(System.Int32)">
  1565. <summary>
  1566. <para>Gets the object with the specified numerical index from
  1567. the <see cref="T:System.Web.HttpFileCollection" />
  1568. . </para>
  1569. </summary>
  1570. <param name="index">The index of the item to get from the file collection.</param>
  1571. </member>
  1572. <member name="P:System.Web.HttpFileCollection.AllKeys">
  1573. <summary>
  1574. <para>Gets a string array containing the keys (names) of all members in the file collection.</para>
  1575. </summary>
  1576. </member>
  1577. <member name="T:System.Web.HttpModuleCollection">
  1578. <summary>
  1579. <para>Provides a means of indexing and retrieving a collection
  1580. of <see cref="T:System.Web.IHttpModule" />
  1581. objects.</para>
  1582. </summary>
  1583. </member>
  1584. <member name="M:System.Web.HttpModuleCollection.CopyTo(System.Array,System.Int32)">
  1585. <summary>
  1586. <para>Copies members of the module collection to an
  1587. <see cref="T:System.Array" /> beginning
  1588. at the specified index of the array.</para>
  1589. </summary>
  1590. <param name="dest">The destination <see langword="Array" />.</param>
  1591. <param name=" index">The index of the destination <see langword="Array" /> where copying starts.</param>
  1592. </member>
  1593. <member name="M:System.Web.HttpModuleCollection.Get(System.String)">
  1594. <summary>
  1595. <para>Returns the <see cref="T:System.Web.IHttpModule" /> object with the specified name
  1596. from the <see cref="T:System.Web.HttpModuleCollection" />
  1597. .</para>
  1598. </summary>
  1599. <param name="name">Key of the item to be retrieved.</param>
  1600. <returns>
  1601. <para>The <see langword="IHttpModule" /> member specified by <paramref name="name" />.</para>
  1602. </returns>
  1603. </member>
  1604. <member name="M:System.Web.HttpModuleCollection.Get(System.Int32)">
  1605. <summary>
  1606. <para>Returns the <see cref="T:System.Web.IHttpModule" />object with the specified index from
  1607. the <see cref="T:System.Web.HttpModuleCollection" />
  1608. .</para>
  1609. </summary>
  1610. <param name="index">Index of the <see cref="T:System.Web.IHttpModule" /> object to return from the collection.</param>
  1611. <returns>
  1612. <para>The <see langword="IHttpModule" /> member specified by <paramref name="index" />.</para>
  1613. </returns>
  1614. </member>
  1615. <member name="M:System.Web.HttpModuleCollection.GetKey(System.Int32)">
  1616. <summary>
  1617. <para>Returns the key (name) of the <see cref="T:System.Web.IHttpModule" /> object
  1618. at the specified numerical index..</para>
  1619. </summary>
  1620. <param name="index">Index of the key to retrieve from the collection.</param>
  1621. <returns>
  1622. <para>The name of the <see langword="IHttpModule" /> member specified by <paramref name="index" />.</para>
  1623. </returns>
  1624. </member>
  1625. <member name="P:System.Web.HttpModuleCollection.Item(System.String)">
  1626. <summary>
  1627. <para>Gets the <see cref="T:System.Web.IHttpModule" /><see langword=" " />object with the
  1628. specified name from the <see cref="T:System.Web.HttpModuleCollection" />
  1629. .</para>
  1630. </summary>
  1631. <param name="name">Key of the item to be retrieved.</param>
  1632. </member>
  1633. <member name="P:System.Web.HttpModuleCollection.Item(System.Int32)">
  1634. <summary>
  1635. <para>Gets the <see cref="T:System.Web.IHttpModule" /> object with the specified numerical
  1636. index from the <see cref="T:System.Web.HttpModuleCollection" />
  1637. .</para>
  1638. </summary>
  1639. <param name="index">The index of the <see cref="T:System.Web.IHttpModule" /> object to retrieve from the collection. </param>
  1640. </member>
  1641. <member name="P:System.Web.HttpModuleCollection.AllKeys">
  1642. <summary>
  1643. <para>Gets a string array containing all the keys (module
  1644. names) in the <see cref="T:System.Web.HttpModuleCollection" />.
  1645. </para>
  1646. </summary>
  1647. </member>
  1648. <member name="M:System.Web.HttpNotFoundHandler.ProcessRequest(System.Web.HttpContext)">
  1649. <summary>
  1650. <para>Drives web processing execution.</para>
  1651. </summary>
  1652. <param name="context">HttpContext object.</param>
  1653. </member>
  1654. <member name="P:System.Web.HttpNotFoundHandler.IsReusable">
  1655. <summary>
  1656. <para>Indicates whether an HttpNotFoundHandler instance can be recycled and used
  1657. for another request.</para>
  1658. </summary>
  1659. <returns>
  1660. <para>Always returns <see langword="true" /> for
  1661. HttpNotFoundHandler.</para>
  1662. </returns>
  1663. </member>
  1664. <member name="M:System.Web.HttpForbiddenHandler.ProcessRequest(System.Web.HttpContext)">
  1665. </member>
  1666. <member name="P:System.Web.HttpForbiddenHandler.IsReusable">
  1667. </member>
  1668. <member name="M:System.Web.HttpMethodNotAllowedHandler.ProcessRequest(System.Web.HttpContext)">
  1669. <summary>
  1670. <para> Drives
  1671. web processing execution.</para>
  1672. </summary>
  1673. <param name="context">HttpContext object</param>
  1674. </member>
  1675. <member name="P:System.Web.HttpMethodNotAllowedHandler.IsReusable">
  1676. <summary>
  1677. <para>Indicates whether an HttpForbiddenHandler instance can be recycled and used
  1678. for another request.</para>
  1679. </summary>
  1680. <returns>
  1681. <para>Always returns <see langword="true" /> for HttpForbiddenHandler.</para>
  1682. </returns>
  1683. </member>
  1684. <member name="M:System.Web.HttpNotImplementedHandler.ProcessRequest(System.Web.HttpContext)">
  1685. <summary>
  1686. <para>Drives web processing execution.</para>
  1687. </summary>
  1688. <param name="context">HttpContext object</param>
  1689. </member>
  1690. <member name="P:System.Web.HttpNotImplementedHandler.IsReusable">
  1691. <summary>
  1692. <para>Indicates whether an HttpNotImplementedHandler instance can be recycled and
  1693. used for another request.</para>
  1694. </summary>
  1695. <returns>
  1696. <para>Always returns <see langword="true" /> for HttpForbiddenHandler.</para>
  1697. </returns>
  1698. </member>
  1699. <member name="T:System.Web.HttpPostedFile">
  1700. <summary>
  1701. <para>Provides a way to access individual files that
  1702. have been uploaded by a client.</para>
  1703. </summary>
  1704. </member>
  1705. <member name="M:System.Web.HttpPostedFile.SaveAs(System.String)">
  1706. <summary>
  1707. <para> Saves an uploaded MIME message body to a file on the server.</para>
  1708. </summary>
  1709. <param name="filename">The name of the file.</param>
  1710. </member>
  1711. <member name="P:System.Web.HttpPostedFile.FileName">
  1712. <summary>
  1713. <para> Gets the fully-qualified name of the file on the client's computer (for
  1714. example "C:\MyFiles\Test.txt").</para>
  1715. </summary>
  1716. </member>
  1717. <member name="P:System.Web.HttpPostedFile.ContentType">
  1718. <summary>
  1719. <para> Gets the MIME content type of a file sent by a client.</para>
  1720. </summary>
  1721. </member>
  1722. <member name="P:System.Web.HttpPostedFile.ContentLength">
  1723. <summary>
  1724. <para>Gets the size in bytes of an uploaded file.</para>
  1725. </summary>
  1726. </member>
  1727. <member name="P:System.Web.HttpPostedFile.InputStream">
  1728. <summary>
  1729. <para> Gets a <see cref="T:System.IO.Stream" /> object which points to an uploaded file to prepare for
  1730. reading the contents of the file.</para>
  1731. </summary>
  1732. </member>
  1733. <member name="T:System.Web.HttpRequest">
  1734. <summary>
  1735. <para> Enables ASP.NET to read the HTTP values sent by
  1736. a client during a Web request.</para>
  1737. </summary>
  1738. </member>
  1739. <member name="M:System.Web.HttpRequest.BinaryRead(System.Int32)">
  1740. <summary>
  1741. <para>Performs a binary read of a specified number of bytes from the current input
  1742. stream.</para>
  1743. </summary>
  1744. <param name="count">Number of bytes to read.</param>
  1745. <returns>
  1746. <para>A <see langword="byte" /> array.</para>
  1747. </returns>
  1748. </member>
  1749. <member name="M:System.Web.HttpRequest.MapImageCoordinates(System.String)">
  1750. <summary>
  1751. <para> Maps an incoming image-field form parameter to appropriate x/y
  1752. coordinate values.</para>
  1753. </summary>
  1754. <param name="imageFieldName">A string reference to a form image map.</param>
  1755. <returns>
  1756. <para>A two-dimensional array of <see langword="integers" />.</para>
  1757. </returns>
  1758. </member>
  1759. <member name="M:System.Web.HttpRequest.SaveAs(System.String,System.Boolean)">
  1760. <summary>
  1761. <para>Saves an HTTP request to disk.</para>
  1762. </summary>
  1763. <param name="filename">A string reference to a physical drive path.</param>
  1764. <param name="includeHeaders">A <see langword="Boolean" /> value specifying whether an HTTP header should be saved to disk.</param>
  1765. </member>
  1766. <member name="M:System.Web.HttpRequest.MapPath(System.String)">
  1767. <summary>
  1768. <para>Maps the specified virtual path to a physical path.</para>
  1769. </summary>
  1770. <param name="virtualPath">The virtual path (absolute or relative) for the current request.</param>
  1771. <returns>
  1772. <para>The physical path on the server specified by <paramref name="virtualPath" />.</para>
  1773. </returns>
  1774. </member>
  1775. <member name="M:System.Web.HttpRequest.MapPath(System.String,System.String,System.Boolean)">
  1776. <summary>
  1777. <para>Maps the specified virtual path to a physical path.</para>
  1778. </summary>
  1779. <param name="virtualPath">The virtual path (absolute or relative) for the current request.</param>
  1780. <param name="baseVirtualDir">The virtual base directory path used for relative resolution.</param>
  1781. <param name="allowCrossAppMapping">If <see langword="true" />, the <paramref name="virtualPath " /> may belong to another application.</param>
  1782. <returns>
  1783. <para>The physical path on the server.</para>
  1784. </returns>
  1785. </member>
  1786. <member name="P:System.Web.HttpRequest.HttpMethod">
  1787. <summary>
  1788. <para> Gets the HTTP data transfer method (such as
  1789. <see langword="GET" />, <see langword="POST" />, or <see langword="HEAD" /> ) used by the client.</para>
  1790. </summary>
  1791. </member>
  1792. <member name="P:System.Web.HttpRequest.RequestType">
  1793. <summary>
  1794. <para>Gets or sets the HTTP data transfer method
  1795. (<see langword="GET" /> or <see langword="POST" /> ) used by
  1796. the client.</para>
  1797. </summary>
  1798. </member>
  1799. <member name="P:System.Web.HttpRequest.ContentType">
  1800. <summary>
  1801. <para> Gets the MIME content type of the incoming request.</para>
  1802. </summary>
  1803. </member>
  1804. <member name="P:System.Web.HttpRequest.ContentLength">
  1805. <summary>
  1806. <para>Specifies the length, in bytes, of content sent by the client.</para>
  1807. </summary>
  1808. </member>
  1809. <member name="P:System.Web.HttpRequest.ContentEncoding">
  1810. <summary>
  1811. <para> Gets the character set of the entity-body.</para>
  1812. </summary>
  1813. </member>
  1814. <member name="P:System.Web.HttpRequest.AcceptTypes">
  1815. <summary>
  1816. <para> Gets a string array of client-supported MIME accept types.</para>
  1817. </summary>
  1818. </member>
  1819. <member name="P:System.Web.HttpRequest.IsAuthenticated">
  1820. <summary>
  1821. <para>
  1822. Gets a
  1823. value indicating whether the user has been authenticated.</para>
  1824. </summary>
  1825. </member>
  1826. <member name="P:System.Web.HttpRequest.IsSecureConnection">
  1827. <summary>
  1828. <para> Gets a value indicting whether the HTTP connection uses secure sockets (that is, HTTPS).</para>
  1829. </summary>
  1830. </member>
  1831. <member name="P:System.Web.HttpRequest.Path">
  1832. <summary>
  1833. <para> Gets
  1834. the virtual
  1835. path of the current request.</para>
  1836. </summary>
  1837. </member>
  1838. <member name="P:System.Web.HttpRequest.FilePath">
  1839. <summary>
  1840. <para> Gets the virtual path of the current request.</para>
  1841. </summary>
  1842. </member>
  1843. <member name="P:System.Web.HttpRequest.CurrentExecutionFilePath">
  1844. <summary>
  1845. <para>Gets the virtual path of the current request.</para>
  1846. </summary>
  1847. </member>
  1848. <member name="P:System.Web.HttpRequest.PathInfo">
  1849. <summary>
  1850. <para>Gets additional path information for a resource with a
  1851. URL extension.</para>
  1852. </summary>
  1853. </member>
  1854. <member name="P:System.Web.HttpRequest.PhysicalPath">
  1855. <summary>
  1856. <para> Gets the physical
  1857. file
  1858. system path corresponding to the requested URL.</para>
  1859. </summary>
  1860. </member>
  1861. <member name="P:System.Web.HttpRequest.ApplicationPath">
  1862. <summary>
  1863. <para> Gets the ASP.NET
  1864. application's virtual application root path on the server.</para>
  1865. </summary>
  1866. </member>
  1867. <member name="P:System.Web.HttpRequest.PhysicalApplicationPath">
  1868. <summary>
  1869. <para> Gets the physical file system path
  1870. of the currently executing server application's root directory.</para>
  1871. </summary>
  1872. </member>
  1873. <member name="P:System.Web.HttpRequest.UserAgent">
  1874. <summary>
  1875. <para> Gets the raw user agent
  1876. string of the client browser.</para>
  1877. </summary>
  1878. </member>
  1879. <member name="P:System.Web.HttpRequest.UserLanguages">
  1880. <summary>
  1881. <para> Gets a sorted
  1882. string array of client language preferences.</para>
  1883. </summary>
  1884. </member>
  1885. <member name="P:System.Web.HttpRequest.Browser">
  1886. <summary>
  1887. <para> Gets information about the requesting client's browser
  1888. capabilities.</para>
  1889. </summary>
  1890. </member>
  1891. <member name="P:System.Web.HttpRequest.UserHostName">
  1892. <summary>
  1893. <para> Gets the DNS
  1894. name of the remote client.</para>
  1895. </summary>
  1896. </member>
  1897. <member name="P:System.Web.HttpRequest.UserHostAddress">
  1898. <summary>
  1899. <para> Gets the IP
  1900. host address of the remote client.</para>
  1901. </summary>
  1902. </member>
  1903. <member name="P:System.Web.HttpRequest.RawUrl">
  1904. <summary>
  1905. <para> Gets the raw URL of the current request.</para>
  1906. </summary>
  1907. </member>
  1908. <member name="P:System.Web.HttpRequest.Url">
  1909. <summary>
  1910. <para> Gets Information about the URL of the current request.</para>
  1911. </summary>
  1912. </member>
  1913. <member name="P:System.Web.HttpRequest.UrlReferrer">
  1914. <summary>
  1915. <para> Gets information about the URL of the client's
  1916. previous request that linked to the current URL.</para>
  1917. </summary>
  1918. </member>
  1919. <member name="P:System.Web.HttpRequest.Params">
  1920. <summary>
  1921. <para>Gets a combined collection of <see cref="P:System.Web.HttpRequest.QueryString" />, <see cref="P:System.Web.HttpRequest.Form" />, <see cref="P:System.Web.HttpRequest.ServerVariables" />, and <see cref="P:System.Web.HttpRequest.Cookies" />
  1922. items.</para>
  1923. </summary>
  1924. </member>
  1925. <member name="P:System.Web.HttpRequest.QueryString">
  1926. <summary>
  1927. <para>Gets the collection of HTTP query string variables.</para>
  1928. </summary>
  1929. </member>
  1930. <member name="P:System.Web.HttpRequest.Form">
  1931. <summary>
  1932. <para> Gets a collection of form variables.</para>
  1933. </summary>
  1934. </member>
  1935. <member name="P:System.Web.HttpRequest.Headers">
  1936. <summary>
  1937. <para> Gets a collection of HTTP headers.</para>
  1938. </summary>
  1939. </member>
  1940. <member name="P:System.Web.HttpRequest.ServerVariables">
  1941. <summary>
  1942. <para> Gets a collection of Web server variables.</para>
  1943. </summary>
  1944. </member>
  1945. <member name="P:System.Web.HttpRequest.Cookies">
  1946. <summary>
  1947. <para> Gets a collection of cookies sent by the client.</para>
  1948. </summary>
  1949. </member>
  1950. <member name="P:System.Web.HttpRequest.Files">
  1951. <summary>
  1952. <para> Gets
  1953. the collection of client-uploaded files (Multipart MIME format).</para>
  1954. </summary>
  1955. </member>
  1956. <member name="P:System.Web.HttpRequest.InputStream">
  1957. <summary>
  1958. <para> Gets the contents of the incoming HTTP entity
  1959. body.</para>
  1960. </summary>
  1961. </member>
  1962. <member name="P:System.Web.HttpRequest.TotalBytes">
  1963. <summary>
  1964. <para> Gets
  1965. the number of bytes in the current input stream.</para>
  1966. </summary>
  1967. </member>
  1968. <member name="P:System.Web.HttpRequest.Filter">
  1969. <summary>
  1970. <para>Gets or sets the filter to use when reading the current input stream.</para>
  1971. </summary>
  1972. </member>
  1973. <member name="P:System.Web.HttpRequest.ClientCertificate">
  1974. <summary>
  1975. <para> Gets the current request's client security certificate.</para>
  1976. </summary>
  1977. </member>
  1978. <member name="T:System.Web.HttpResponse">
  1979. <summary>
  1980. <para> Encapsulates HTTP response
  1981. information from an ASP.NET operation .</para>
  1982. </summary>
  1983. </member>
  1984. <member name="M:System.Web.HttpResponse.#ctor(System.IO.TextWriter)">
  1985. <summary>
  1986. <para>Initializes a new instance of the <see langword="HttpResponse" /> class.</para>
  1987. </summary>
  1988. <param name="writer">A <see langword="TextWriter" /> object enabling custom HTTP output.</param>
  1989. </member>
  1990. <member name="M:System.Web.HttpResponse.AddFileDependency(System.String)">
  1991. <summary>
  1992. <para>Adds a single file name to the collection of file names on which the current response is dependent.</para>
  1993. </summary>
  1994. <param name="filename"> The name of the file to add.</param>
  1995. </member>
  1996. <member name="M:System.Web.HttpResponse.AddFileDependencies(System.Collections.ArrayList)">
  1997. <summary>
  1998. <para>Adds a group of file names to the collection of file names on which the current response is dependent.</para>
  1999. </summary>
  2000. <param name="filenames">The collection of files to add.</param>
  2001. </member>
  2002. <member name="M:System.Web.HttpResponse.AddCacheItemDependency(System.String)">
  2003. <summary>
  2004. <para>Makes the validity of a cached item dependent
  2005. on another item in the cache.</para>
  2006. </summary>
  2007. <param name="cacheKey">The key of the item that the cached response is dependent upon.</param>
  2008. </member>
  2009. <member name="M:System.Web.HttpResponse.AddCacheItemDependencies(System.Collections.ArrayList)">
  2010. <summary>
  2011. <para>Makes the validity of a cached item dependent
  2012. on other items in the cache.</para>
  2013. </summary>
  2014. <param name="cacheKeys">The <see cref="T:System.Collections.ArrayList" /> containing the keys of the items the current cached response is dependent upon.</param>
  2015. </member>
  2016. <member name="M:System.Web.HttpResponse.RemoveOutputCacheItem(System.String)">
  2017. <summary>
  2018. <para>Static method removes from the cache all cached
  2019. items associated with the specified path.</para>
  2020. </summary>
  2021. <param name="path">The physical path to the items that are removed from the cache.</param>
  2022. </member>
  2023. <member name="M:System.Web.HttpResponse.Close">
  2024. <summary>
  2025. <para>Closes the socket connection to a client.</para>
  2026. </summary>
  2027. </member>
  2028. <member name="M:System.Web.HttpResponse.BinaryWrite(System.Byte[])">
  2029. <summary>
  2030. <para>Writes a string of binary characters to the HTTP output stream.</para>
  2031. </summary>
  2032. <param name="buffer"> The bytes to write to the output stream.</param>
  2033. </member>
  2034. <member name="M:System.Web.HttpResponse.Pics(System.String)">
  2035. <summary>
  2036. <para> Appends a <see langword="PICS-Label " /> HTTP header to the output stream.</para>
  2037. </summary>
  2038. <param name="value">The string to add to the <see langword="PICS-Label" /> header.</param>
  2039. </member>
  2040. <member name="M:System.Web.HttpResponse.AppendHeader(System.String,System.String)">
  2041. <summary>
  2042. <para>Adds an HTTP
  2043. header to the output stream.</para>
  2044. </summary>
  2045. <param name="name">The name of the HTTP header to add to the output stream.</param>
  2046. <param name="value">The string to append to the header.</param>
  2047. </member>
  2048. <member name="M:System.Web.HttpResponse.ClearHeaders">
  2049. <summary>
  2050. <para>Clears all headers from the buffer stream.</para>
  2051. </summary>
  2052. </member>
  2053. <member name="M:System.Web.HttpResponse.ClearContent">
  2054. <summary>
  2055. <para>Clears all content output from the buffer stream.</para>
  2056. </summary>
  2057. </member>
  2058. <member name="M:System.Web.HttpResponse.Clear">
  2059. <summary>
  2060. <para> Clears all content output from the buffer stream.</para>
  2061. </summary>
  2062. </member>
  2063. <member name="M:System.Web.HttpResponse.Flush">
  2064. <summary>
  2065. <para>Sends all currently buffered output to the client.</para>
  2066. </summary>
  2067. </member>
  2068. <member name="M:System.Web.HttpResponse.AppendToLog(System.String)">
  2069. <summary>
  2070. <para>Adds custom log information to the IIS log file.</para>
  2071. </summary>
  2072. <param name="param">The text to add to the log file.</param>
  2073. </member>
  2074. <member name="M:System.Web.HttpResponse.Redirect(System.String)">
  2075. <summary>
  2076. <para>Redirects a client to a new URL and specifies the new URL.</para>
  2077. </summary>
  2078. <param name="url">The target location.</param>
  2079. </member>
  2080. <member name="M:System.Web.HttpResponse.Redirect(System.String,System.Boolean)">
  2081. <summary>
  2082. <para> Redirects a client to a new URL. Specifies the new URL
  2083. and whether execution of the current page should terminate.</para>
  2084. </summary>
  2085. <param name="url">The target location.</param>
  2086. <param name=" endResponse">Indicates whether execution of the current page should terminate. </param>
  2087. </member>
  2088. <member name="M:System.Web.HttpResponse.Write(System.String)">
  2089. <summary>
  2090. <para>Writes a string to an HTTP output content stream.</para>
  2091. </summary>
  2092. <param name="s">The string to write to the HTTP output stream.</param>
  2093. </member>
  2094. <member name="M:System.Web.HttpResponse.Write(System.Object)">
  2095. <summary>
  2096. <para>Writes an <see langword="Object" /> to an HTTP output content stream.</para>
  2097. </summary>
  2098. <param name="obj">The <see langword="Object" /> to write to the HTTP output stream.</param>
  2099. </member>
  2100. <member name="M:System.Web.HttpResponse.Write(System.Char)">
  2101. <summary>
  2102. <para>Writes a character to an HTTP output content stream.</para>
  2103. </summary>
  2104. <param name="ch">The character to write to the HTTP output stream.</param>
  2105. </member>
  2106. <member name="M:System.Web.HttpResponse.Write(System.Char[],System.Int32,System.Int32)">
  2107. <summary>
  2108. <para> Writes an array of characters to an
  2109. HTTP output content stream.</para>
  2110. </summary>
  2111. <param name="buffer"> The character array to write.</param>
  2112. <param name=" index">The position in the character array where writing starts.</param>
  2113. <param name=" count">The number of characters to write, beginning at <paramref name="index" />.</param>
  2114. </member>
  2115. <member name="M:System.Web.HttpResponse.WriteFile(System.String)">
  2116. <summary>
  2117. <para>Writes
  2118. the specified file directly to an HTTP content output stream.</para>
  2119. </summary>
  2120. <param name="filename"> The name of the file to write to the HTTP output.</param>
  2121. </member>
  2122. <member name="M:System.Web.HttpResponse.WriteFile(System.String,System.Boolean)">
  2123. <summary>
  2124. <para> Writes the contents of the specified file into a memory block.</para>
  2125. </summary>
  2126. <param name="filename"> The name of the file to write into a memory block.</param>
  2127. <param name="readIntoMemory">Indicates whether the file will be written into a memory block.</param>
  2128. </member>
  2129. <member name="M:System.Web.HttpResponse.WriteFile(System.String,System.Int64,System.Int64)">
  2130. <summary>
  2131. <para>Writes the specified file directly to an HTTP content output stream.</para>
  2132. </summary>
  2133. <param name=" filename">The name of the file to write to the HTTP output stream.</param>
  2134. <param name="offset">The byte position in the file where writing will start.</param>
  2135. <param name=" size"> The number of bytes to write to the output stream.</param>
  2136. </member>
  2137. <member name="M:System.Web.HttpResponse.WriteFile(System.IntPtr,System.Int64,System.Int64)">
  2138. <summary>
  2139. <para>Writes the specified file directly to an HTTP content output stream.</para>
  2140. </summary>
  2141. <param name="fileHandle">The file handle of the file to write to the HTTP output stream.</param>
  2142. <param name=" offset">The byte position in the file where writing will start.</param>
  2143. <param name=" size">The number of bytes to write to the output stream.</param>
  2144. </member>
  2145. <member name="M:System.Web.HttpResponse.AddHeader(System.String,System.String)">
  2146. <summary>
  2147. <para> Adds an HTTP header to the output stream.</para>
  2148. <para>
  2149. <see langword="AddHeader" /> is provided
  2150. for compatibility with previous versions of ASP.</para>
  2151. </summary>
  2152. <param name="name">The name of the HTTP header to add <paramref name="value " /> to.</param>
  2153. <param name=" value">The string to add to the header.</param>
  2154. </member>
  2155. <member name="M:System.Web.HttpResponse.End">
  2156. <summary>
  2157. <para> Sends all currently buffered output to the client,
  2158. stops execution of the page, and raises the <see langword="Application_EndRequest " />
  2159. event.</para>
  2160. </summary>
  2161. </member>
  2162. <member name="M:System.Web.HttpResponse.ApplyAppPathModifier(System.String)">
  2163. <summary>
  2164. <para>Adds a session ID to the virtual path and returns the
  2165. combined path.</para>
  2166. </summary>
  2167. <param name="virtualPath">The virtual path to a resource.</param>
  2168. <returns>
  2169. <para>The <paramref name="virtualPath" /> with the session ID appended.</para>
  2170. </returns>
  2171. </member>
  2172. <member name="P:System.Web.HttpResponse.Cookies">
  2173. <summary>
  2174. <para> Gets the response cookie collection.</para>
  2175. </summary>
  2176. </member>
  2177. <member name="P:System.Web.HttpResponse.StatusCode">
  2178. <summary>
  2179. <para>Gets or sets
  2180. the HTTP status code of the output returned to the
  2181. client.</para>
  2182. </summary>
  2183. </member>
  2184. <member name="P:System.Web.HttpResponse.StatusDescription">
  2185. <summary>
  2186. <para>Gets or sets the HTTP status string of the output returned to the
  2187. client.</para>
  2188. </summary>
  2189. </member>
  2190. <member name="P:System.Web.HttpResponse.BufferOutput">
  2191. <summary>
  2192. <para>Gets or sets a value indicating whether to buffer output and send it after
  2193. the entire page is finished processing.</para>
  2194. </summary>
  2195. </member>
  2196. <member name="P:System.Web.HttpResponse.ContentType">
  2197. <summary>
  2198. <para>Gets or sets the HTTP MIME
  2199. type of the output stream.</para>
  2200. </summary>
  2201. </member>
  2202. <member name="P:System.Web.HttpResponse.Charset">
  2203. <summary>
  2204. <para>Gets or sets the HTTP character set of
  2205. the output stream.</para>
  2206. </summary>
  2207. </member>
  2208. <member name="P:System.Web.HttpResponse.ContentEncoding">
  2209. <summary>
  2210. <para> Gets or sets the HTTP
  2211. character set of the output stream.</para>
  2212. </summary>
  2213. </member>
  2214. <member name="P:System.Web.HttpResponse.Cache">
  2215. <summary>
  2216. <para> Gets the caching policy (expiration time, privacy, vary
  2217. clauses) of a Web page.</para>
  2218. </summary>
  2219. </member>
  2220. <member name="P:System.Web.HttpResponse.IsClientConnected">
  2221. <summary>
  2222. <para>Gets a value
  2223. indicating whether the client is still connected to the server.</para>
  2224. </summary>
  2225. </member>
  2226. <member name="P:System.Web.HttpResponse.Output">
  2227. <summary>
  2228. <para> Enables output of text to the outgoing HTTP response stream.</para>
  2229. </summary>
  2230. </member>
  2231. <member name="P:System.Web.HttpResponse.OutputStream">
  2232. <summary>
  2233. <para>Enables binary output to the outgoing HTTP content body.</para>
  2234. </summary>
  2235. </member>
  2236. <member name="P:System.Web.HttpResponse.Filter">
  2237. <summary>
  2238. <para>Gets or sets a wrapping filter object used to modify the HTTP entity body
  2239. before transmission.</para>
  2240. </summary>
  2241. </member>
  2242. <member name="P:System.Web.HttpResponse.SuppressContent">
  2243. <summary>
  2244. <para> Gets or sets a value indicating whether to send HTTP content to the client.</para>
  2245. </summary>
  2246. </member>
  2247. <member name="P:System.Web.HttpResponse.Status">
  2248. <summary>
  2249. <para>Sets the <see langword="Status " />line that is returned to the client.</para>
  2250. </summary>
  2251. </member>
  2252. <member name="P:System.Web.HttpResponse.Buffer">
  2253. <summary>
  2254. <para> Gets or sets a value indicating whether to
  2255. buffer output and send it after the entire response is finished processing.</para>
  2256. </summary>
  2257. </member>
  2258. <member name="P:System.Web.HttpResponse.Expires">
  2259. <summary>
  2260. <para> Gets or sets the number of minutes before a page cached on a browser
  2261. expires. If the user returns to the same page before it expires, the cached
  2262. version is displayed.</para>
  2263. <see cref="P:System.Web.HttpResponse.Expires" />
  2264. is provided for compatiblility with previous versions of ASP.
  2265. </summary>
  2266. </member>
  2267. <member name="P:System.Web.HttpResponse.ExpiresAbsolute">
  2268. <summary>
  2269. <para> Gets or sets the absolute date and time at which
  2270. to remove cached information from
  2271. the cache.</para>
  2272. <para>
  2273. <see cref="P:System.Web.HttpResponse.ExpiresAbsolute" /> is provided
  2274. for compatibility with previous versions of ASP.</para>
  2275. </summary>
  2276. </member>
  2277. <member name="P:System.Web.HttpResponse.CacheControl">
  2278. <summary>
  2279. <para>Sets the <see langword="Cache-Control " />HTTP header to
  2280. <see langword="Public " />or <see langword="Private" />
  2281. .</para>
  2282. </summary>
  2283. </member>
  2284. <member name="T:System.Web.HttpRuntime">
  2285. <summary>
  2286. <para>Provides a set of ASP.NET run-time services for the current application.</para>
  2287. </summary>
  2288. </member>
  2289. <member name="M:System.Web.HttpRuntime.ProcessRequest(System.Web.HttpWorkerRequest)">
  2290. <summary>
  2291. <para> Drives
  2292. all ASP.NET Web processing execution.</para>
  2293. </summary>
  2294. <param name="wr">An <see cref="T:System.Web.HttpWorkerRequest" /> for the current application. </param>
  2295. </member>
  2296. <member name="M:System.Web.HttpRuntime.Close">
  2297. <summary>
  2298. <para>Removes all items from the cache and shuts down the common language runtime.</para>
  2299. </summary>
  2300. </member>
  2301. <member name="P:System.Web.HttpRuntime.Cache">
  2302. <summary>
  2303. <para>Gets the <see cref="T:System.Web.Caching.Cache" /> for the current application.</para>
  2304. </summary>
  2305. </member>
  2306. <member name="P:System.Web.HttpRuntime.AspInstallDirectory">
  2307. <summary>
  2308. <para>Gets the physical path of the directory where the
  2309. ASP.NET executable files are installed.</para>
  2310. </summary>
  2311. </member>
  2312. <member name="P:System.Web.HttpRuntime.ClrInstallDirectory">
  2313. <summary>
  2314. <para> Gets the physical path to the directory where the
  2315. common language runtime executable files are installed.</para>
  2316. </summary>
  2317. </member>
  2318. <member name="P:System.Web.HttpRuntime.MachineConfigurationDirectory">
  2319. <summary>
  2320. <para>Gets the physical path to the directory where the
  2321. Machine.config file for the current application is located.</para>
  2322. </summary>
  2323. </member>
  2324. <member name="P:System.Web.HttpRuntime.CodegenDir">
  2325. <summary>
  2326. <para>Gets the physical path to the directory where ASP.NET stores temporary
  2327. files (generated sources, compiled assemblies, and so on) for the
  2328. current application.</para>
  2329. </summary>
  2330. </member>
  2331. <member name="P:System.Web.HttpRuntime.AppDomainAppId">
  2332. <summary>
  2333. <para>Gets the application identification of the
  2334. application domain where the <see cref="T:System.Web.HttpRuntime" /> exists.</para>
  2335. </summary>
  2336. </member>
  2337. <member name="P:System.Web.HttpRuntime.AppDomainAppPath">
  2338. <summary>
  2339. <para>Gets the physical drive path of the application
  2340. directory for the application hosted in the current application domain.</para>
  2341. </summary>
  2342. </member>
  2343. <member name="P:System.Web.HttpRuntime.AppDomainAppVirtualPath">
  2344. <summary>
  2345. <para>Gets the virtual path of the directory that
  2346. contains the application hosted in the current application domain.</para>
  2347. </summary>
  2348. </member>
  2349. <member name="P:System.Web.HttpRuntime.AppDomainId">
  2350. <summary>
  2351. <para>Gets the application identification of the application domain where
  2352. the <see cref="T:System.Web.HttpRuntime" /> exists.</para>
  2353. </summary>
  2354. </member>
  2355. <member name="P:System.Web.HttpRuntime.BinDirectory">
  2356. <summary>
  2357. <para> Gets the physical path to the /bin directory for the
  2358. current application.</para>
  2359. </summary>
  2360. </member>
  2361. <member name="P:System.Web.HttpRuntime.IsOnUNCShare">
  2362. <summary>
  2363. <para>Gets a value that indicates whether the application is mapped to
  2364. a universal naming convention (UNC) share.</para>
  2365. </summary>
  2366. </member>
  2367. <member name="T:System.Web.HttpStaticObjectsCollection">
  2368. <summary>
  2369. <para>Provides a static objects collection for the <see cref="P:System.Web.HttpApplicationState.StaticObjects" />
  2370. property.</para>
  2371. </summary>
  2372. </member>
  2373. <member name="M:System.Web.HttpStaticObjectsCollection.GetObject(System.String)">
  2374. <summary>
  2375. <para> Returns the object with the specified name from the
  2376. collection. This property is an alternative to the <see langword="this " /> accessor.</para>
  2377. </summary>
  2378. <param name="name">The case-insensitive name of the object to return.</param>
  2379. <returns>
  2380. <para>An object from the collection.</para>
  2381. </returns>
  2382. </member>
  2383. <member name="M:System.Web.HttpStaticObjectsCollection.GetEnumerator">
  2384. <summary>
  2385. <para>Returns a dictionary enumerator used for iterating through the key-and-value
  2386. pairs contained in the collection.</para>
  2387. </summary>
  2388. <returns>
  2389. <para>The enumerator for the collection.</para>
  2390. </returns>
  2391. </member>
  2392. <member name="M:System.Web.HttpStaticObjectsCollection.CopyTo(System.Array,System.Int32)">
  2393. <summary>
  2394. <para>Copies members of an <see langword="HttpStaticObjectsCollection " /> into an array.</para>
  2395. </summary>
  2396. <param name="array">The array to copy the <see langword="HttpStaticObjectsCollection" /> into.</param>
  2397. <param name=" index">The member of the collection where copying starts.</param>
  2398. </member>
  2399. <member name="P:System.Web.HttpStaticObjectsCollection.Item(System.String)">
  2400. <summary>
  2401. <para> Gets the object with the specified name from the
  2402. collection. </para>
  2403. </summary>
  2404. <param name="name">The case-insensitive name of the object to get.</param>
  2405. </member>
  2406. <member name="P:System.Web.HttpStaticObjectsCollection.Count">
  2407. <summary>
  2408. <para>Gets the number of objects in the collection.</para>
  2409. </summary>
  2410. </member>
  2411. <member name="P:System.Web.HttpStaticObjectsCollection.SyncRoot">
  2412. <summary>
  2413. <para>Gets an object that can be used to synchronize access to the collection.</para>
  2414. </summary>
  2415. </member>
  2416. <member name="P:System.Web.HttpStaticObjectsCollection.IsReadOnly">
  2417. <summary>
  2418. <para>Gets a value indicating whether the collection is read-only.</para>
  2419. </summary>
  2420. </member>
  2421. <member name="P:System.Web.HttpStaticObjectsCollection.IsSynchronized">
  2422. <summary>
  2423. <para>Gets a value indicating whether the collection is synchronized (that is, thread-safe).</para>
  2424. </summary>
  2425. </member>
  2426. <member name="T:System.Web.HttpServerUtility">
  2427. <summary>
  2428. <para>
  2429. Provides helper methods for processing Web requests.</para>
  2430. </summary>
  2431. </member>
  2432. <member name="M:System.Web.HttpServerUtility.CreateObject(System.String)">
  2433. <summary>
  2434. <para> Creates a server instance of a COM object identified by the object's Programmatic Identifier (ProgID).</para>
  2435. </summary>
  2436. <param name="progID">The class or type of object to be instantiated.</param>
  2437. <returns>
  2438. <para> The new object.</para>
  2439. </returns>
  2440. </member>
  2441. <member name="M:System.Web.HttpServerUtility.CreateObject(System.Type)">
  2442. <summary>
  2443. <para>Creates a server instance of a COM object identified by
  2444. the object's type.</para>
  2445. </summary>
  2446. <param name="type">A <see cref="T:System.Type" /> representing the object to create.</param>
  2447. <returns>
  2448. <para>The new object.</para>
  2449. </returns>
  2450. </member>
  2451. <member name="M:System.Web.HttpServerUtility.CreateObjectFromClsid(System.String)">
  2452. <summary>
  2453. <para> Creates a server instance of a COM object identified by the object's class identifier (CLSID).</para>
  2454. </summary>
  2455. <param name="clsid">The class identifier of the object to be instantiated.</param>
  2456. <returns>
  2457. <para> The new object.</para>
  2458. </returns>
  2459. </member>
  2460. <member name="M:System.Web.HttpServerUtility.MapPath(System.String)">
  2461. <summary>
  2462. <para>Returns the physical file path that corresponds to the specified virtual path on the Web server.</para>
  2463. </summary>
  2464. <param name="path">The virtual path on the Web server.</param>
  2465. <returns>
  2466. <para>The physical file path that corresponds to <paramref name="path" />.</para>
  2467. </returns>
  2468. </member>
  2469. <member name="M:System.Web.HttpServerUtility.GetLastError">
  2470. <summary>
  2471. <para> Returns the previous exception.</para>
  2472. </summary>
  2473. <returns>
  2474. <para>The previous exception that was thrown.</para>
  2475. </returns>
  2476. </member>
  2477. <member name="M:System.Web.HttpServerUtility.ClearError">
  2478. <summary>
  2479. <para>Clears the previous exception.</para>
  2480. </summary>
  2481. </member>
  2482. <member name="M:System.Web.HttpServerUtility.Execute(System.String)">
  2483. <summary>
  2484. <para> Executes a request to another page using the specified URL path to
  2485. the page.</para>
  2486. </summary>
  2487. <param name="path">The URL path of the new request.</param>
  2488. </member>
  2489. <member name="M:System.Web.HttpServerUtility.Execute(System.String,System.IO.TextWriter)">
  2490. <summary>
  2491. <para>Executes a request to another page using the specified
  2492. URL path to the page. A <see cref="T:System.IO.TextWriter" /> captures output from
  2493. the page.</para>
  2494. </summary>
  2495. <param name="path">The URL path of the new request.</param>
  2496. <param name="writer">The <see cref="T:System.IO.TextWriter" />to capture the output.</param>
  2497. </member>
  2498. <member name="M:System.Web.HttpServerUtility.Transfer(System.String,System.Boolean)">
  2499. <summary>
  2500. <para> Terminates execution of the current page and begins
  2501. execution of a new page using the specified URL path to the page. Specifies
  2502. whether to clear the <see cref="P:System.Web.HttpRequest.QueryString" /> and <see cref="P:System.Web.HttpRequest.Form" />
  2503. collections.</para>
  2504. </summary>
  2505. <param name="path">The URL path of the new page on the server to execute.</param>
  2506. <param name=" preserveForm">If <see langword="true" />, the <see langword="QueryString" /> and <see langword="Form" /> collections are preserved. If <see langword="false" />, they are cleared. The default is <see langword="false" /> .</param>
  2507. </member>
  2508. <member name="M:System.Web.HttpServerUtility.Transfer(System.String)">
  2509. <summary>
  2510. <para>Terminates execution of the current page and begins
  2511. execution of a new page using the specified
  2512. URL path to the page.</para>
  2513. </summary>
  2514. <param name="path">The URL path of the new page on the server to execute.</param>
  2515. </member>
  2516. <member name="M:System.Web.HttpServerUtility.HtmlDecode(System.String)">
  2517. <summary>
  2518. <para> Decodes an HTML-encoded string and
  2519. returns the decoded string.</para>
  2520. </summary>
  2521. <param name="s">The HTML string to decode.</param>
  2522. <returns>
  2523. <para> The decoded text.</para>
  2524. </returns>
  2525. </member>
  2526. <member name="M:System.Web.HttpServerUtility.HtmlDecode(System.String,System.IO.TextWriter)">
  2527. <summary>
  2528. <para> Decodes an HTML-encoded string and sends the resulting
  2529. output to a <see cref="T:System.IO.TextWriter" />
  2530. output
  2531. stream.</para>
  2532. </summary>
  2533. <param name="s">The HTML string to decode.</param>
  2534. <param name=" output">The <see cref="T:System.IO.TextWriter" /> output stream containing the decoded string.</param>
  2535. </member>
  2536. <member name="M:System.Web.HttpServerUtility.HtmlEncode(System.String)">
  2537. <summary>
  2538. <para> HTML-encodes a string and
  2539. returns the encoded string.</para>
  2540. </summary>
  2541. <param name="s">The text string to encode.</param>
  2542. <returns>
  2543. <para> The HTML-encoded text.</para>
  2544. </returns>
  2545. </member>
  2546. <member name="M:System.Web.HttpServerUtility.HtmlEncode(System.String,System.IO.TextWriter)">
  2547. <summary>
  2548. <para> HTML-encodes a string and sends the resulting output to
  2549. a <see cref="T:System.IO.TextWriter" />
  2550. output stream.</para>
  2551. </summary>
  2552. <param name="s">The string to encode.</param>
  2553. <param name=" output">The <see cref="T:System.IO.TextWriter" /> output stream containing the encoded string.</param>
  2554. </member>
  2555. <member name="M:System.Web.HttpServerUtility.UrlEncode(System.String)">
  2556. <summary>
  2557. <para> URL-encodes a
  2558. string and returns the encoded string.</para>
  2559. </summary>
  2560. <param name="s">The text to URL-encode.</param>
  2561. <returns>
  2562. <para>The URL encoded text.</para>
  2563. </returns>
  2564. </member>
  2565. <member name="M:System.Web.HttpServerUtility.UrlPathEncode(System.String)">
  2566. <summary>
  2567. <para> URL-encodes the path portion of a URL string and returns the encoded string.</para>
  2568. </summary>
  2569. <param name="s">The text to URL-encode.</param>
  2570. <returns>
  2571. <para>The URL encoded text.</para>
  2572. </returns>
  2573. </member>
  2574. <member name="M:System.Web.HttpServerUtility.UrlEncode(System.String,System.IO.TextWriter)">
  2575. <summary>
  2576. <para> URL encodes
  2577. a string and sends the resulting output to a TextWriter output stream.</para>
  2578. </summary>
  2579. <param name="s">The text string to encode.</param>
  2580. <param name=" output">The <see cref="T:System.IO.TextWriter" /> output stream containing the encoded string. </param>
  2581. </member>
  2582. <member name="M:System.Web.HttpServerUtility.UrlDecode(System.String)">
  2583. <summary>
  2584. <para> URL-decodes a string and returns the decoded string.</para>
  2585. </summary>
  2586. <param name="s">The text string to decode.</param>
  2587. <returns>
  2588. <para> The decoded
  2589. text.</para>
  2590. </returns>
  2591. </member>
  2592. <member name="M:System.Web.HttpServerUtility.UrlDecode(System.String,System.IO.TextWriter)">
  2593. <summary>
  2594. <para> Decodes an HTML string received
  2595. in a URL and sends the resulting output to a
  2596. <see cref="T:System.IO.TextWriter" /> output
  2597. stream.</para>
  2598. </summary>
  2599. <param name="s">The HTML string to decode.</param>
  2600. <param name=" output">The <see cref="T:System.IO.TextWriter" /> output stream containing the decoded string. </param>
  2601. </member>
  2602. <member name="P:System.Web.HttpServerUtility.MachineName">
  2603. <summary>
  2604. <para>Gets
  2605. the server's computer name.</para>
  2606. </summary>
  2607. </member>
  2608. <member name="P:System.Web.HttpServerUtility.ScriptTimeout">
  2609. <summary>
  2610. <para>Gets and sets the request time-out in seconds.</para>
  2611. </summary>
  2612. </member>
  2613. <member name="T:System.Web.HttpUtility">
  2614. <summary>
  2615. <para>Provides methods for encoding and decoding URLs when processing Web
  2616. requests.</para>
  2617. </summary>
  2618. </member>
  2619. <member name="M:System.Web.HttpUtility.HtmlDecode(System.String)">
  2620. <summary>
  2621. <para>Converts a string that has been HTML-encoded for HTTP transmission into a decoded string.</para>
  2622. </summary>
  2623. <param name="s">The string to decode.</param>
  2624. <returns>
  2625. <para> The decoded string.</para>
  2626. </returns>
  2627. </member>
  2628. <member name="M:System.Web.HttpUtility.HtmlDecode(System.String,System.IO.TextWriter)">
  2629. <summary>
  2630. <para>Converts a string that has been HTML-encoded into a
  2631. decoded string, and sends the decoded string to a <see cref="T:System.IO.TextWriter" /> output stream.</para>
  2632. </summary>
  2633. <param name=" s">The string to decode.</param>
  2634. <param name="output">A <see cref="T:System.IO.TextWriter" /> stream of output.</param>
  2635. </member>
  2636. <member name="M:System.Web.HttpUtility.HtmlEncode(System.String)">
  2637. <summary>
  2638. <para>Converts a string to an HTML-encoded string for reliable
  2639. HTTP transmission from the Web server to a client.</para>
  2640. </summary>
  2641. <param name="s">The string to encode.</param>
  2642. <returns>
  2643. <para> The encoded string.</para>
  2644. </returns>
  2645. </member>
  2646. <member name="M:System.Web.HttpUtility.HtmlEncode(System.String,System.IO.TextWriter)">
  2647. <summary>
  2648. <para>Converts a string into an HTML-encoded string, and returns the output as a TextWriter stream of
  2649. output.</para>
  2650. </summary>
  2651. <param name="s">The string to encode</param>
  2652. <param name=" output">A <see cref="T:System.IO.TextWriter" /> output stream.</param>
  2653. </member>
  2654. <member name="M:System.Web.HttpUtility.HtmlAttributeEncode(System.String)">
  2655. <summary>
  2656. <para> Minimally converts a string to an HTML-encoded string.
  2657. </para>
  2658. </summary>
  2659. <param name="s">The string to encode. </param>
  2660. <returns>
  2661. <para> The encoded string.
  2662. </para>
  2663. </returns>
  2664. </member>
  2665. <member name="M:System.Web.HttpUtility.HtmlAttributeEncode(System.String,System.IO.TextWriter)">
  2666. <summary>
  2667. <para> Minimally converts a string into an HTML-encoded string and sends
  2668. the encoded string to a <see cref="T:System.IO.TextWriter" />
  2669. output
  2670. stream.
  2671. </para>
  2672. </summary>
  2673. <param name="s">The string to encode </param>
  2674. <param name=" output">A <see cref="T:System.IO.TextWriter" /> output stream. </param>
  2675. </member>
  2676. <member name="M:System.Web.HttpUtility.UrlEncode(System.String)">
  2677. <summary>
  2678. <para> Encodes a URL string for reliable HTTP
  2679. transmission from the Web server to a client.</para>
  2680. </summary>
  2681. <param name="str">The text to encode.</param>
  2682. <returns>
  2683. <para>The encoded string.</para>
  2684. </returns>
  2685. </member>
  2686. <member name="M:System.Web.HttpUtility.UrlEncode(System.String,System.Text.Encoding)">
  2687. <summary>
  2688. <para>Encodes a URL string for reliable HTTP transmission from the Web server
  2689. to a client, using the specified encoding method.</para>
  2690. </summary>
  2691. <param name="str">The text to encode.</param>
  2692. <param name=" e">The <see cref="T:System.Text.Encoding" /> object that specifies the encoding scheme.</param>
  2693. <returns>
  2694. <para>The encoded string.</para>
  2695. </returns>
  2696. </member>
  2697. <member name="M:System.Web.HttpUtility.UrlEncode(System.Byte[])">
  2698. <summary>
  2699. <para>Converts a byte array into an encoded
  2700. URL string for reliable HTTP transmission from the Web server to a client.</para>
  2701. </summary>
  2702. <param name="bytes">The byte array to encode.</param>
  2703. <returns>
  2704. <para>The encoded string.</para>
  2705. </returns>
  2706. </member>
  2707. <member name="M:System.Web.HttpUtility.UrlEncode(System.Byte[],System.Int32,System.Int32)">
  2708. <summary>
  2709. <para> Converts a byte array into a URL-encoded string for
  2710. reliable HTTP transmission from the Web server to a client, starting at the
  2711. specified position in the array and continuing for the specified number of bytes.</para>
  2712. </summary>
  2713. <param name="bytes">The byte array to encode.</param>
  2714. <param name=" offset">The position in the byte array to begin encoding.</param>
  2715. <param name=" count">The number of bytes to encode, starting at <paramref name="offset" />.</param>
  2716. <returns>
  2717. <para>The encoded string.</para>
  2718. </returns>
  2719. </member>
  2720. <member name="M:System.Web.HttpUtility.UrlEncodeToBytes(System.String)">
  2721. <summary>
  2722. <para>Converts a string into a URL-encoded array of bytes .</para>
  2723. </summary>
  2724. <param name="str">The string to encode.</param>
  2725. <returns>
  2726. <para>The encoded array of bytes.</para>
  2727. </returns>
  2728. </member>
  2729. <member name="M:System.Web.HttpUtility.UrlEncodeToBytes(System.String,System.Text.Encoding)">
  2730. <summary>
  2731. <para>Converts a string into a URL-encoded array of bytes, using the specified encoding method.</para>
  2732. </summary>
  2733. <param name="str">The string to encode</param>
  2734. <param name=" e">The <see cref="T:System.Text.Encoding" /> that specifies the encoding method.</param>
  2735. <returns>
  2736. <para> The encoded array of bytes.</para>
  2737. </returns>
  2738. </member>
  2739. <member name="M:System.Web.HttpUtility.UrlEncodeToBytes(System.Byte[])">
  2740. <summary>
  2741. <para>Converts an array of bytes into a
  2742. URL-encoded array of bytes.</para>
  2743. </summary>
  2744. <param name="bytes">The array of bytes to encode.</param>
  2745. <returns>
  2746. <para>The encoded array of bytes.</para>
  2747. </returns>
  2748. </member>
  2749. <member name="M:System.Web.HttpUtility.UrlEncodeToBytes(System.Byte[],System.Int32,System.Int32)">
  2750. <summary>
  2751. <para>Converts an array of bytes into a
  2752. URL-encoded array of bytes, starting at the specified position in the
  2753. array and continuing for the specified number of bytes.</para>
  2754. </summary>
  2755. <param name="bytes">The array of bytes to encode.</param>
  2756. <param name=" offset">The position in the byte array to begin encoding.</param>
  2757. <param name=" count">The number of bytes to encode, starting at <paramref name="offset" />.</param>
  2758. <returns>
  2759. <para>The encoded array of bytes.</para>
  2760. </returns>
  2761. </member>
  2762. <member name="M:System.Web.HttpUtility.UrlEncodeUnicode(System.String)">
  2763. <summary>
  2764. <para>Converts a string into a Unicode string.</para>
  2765. </summary>
  2766. <param name="str">The string to convert.</param>
  2767. <returns>
  2768. <para>The Unicode string.</para>
  2769. </returns>
  2770. </member>
  2771. <member name="M:System.Web.HttpUtility.UrlEncodeUnicodeToBytes(System.String)">
  2772. <summary>
  2773. <para>Converts a string into a Unicode array of bytes.</para>
  2774. </summary>
  2775. <param name="str">The string to convert.</param>
  2776. <returns>
  2777. <para>The Unicode byte array.</para>
  2778. </returns>
  2779. </member>
  2780. <member name="M:System.Web.HttpUtility.UrlDecode(System.String)">
  2781. <summary>
  2782. <para>Converts a string that has been encoded for
  2783. transmission in a URL into a decoded string.</para>
  2784. </summary>
  2785. <param name="str">The string to decode.</param>
  2786. <returns>
  2787. <para>The decoded string.</para>
  2788. </returns>
  2789. </member>
  2790. <member name="M:System.Web.HttpUtility.UrlDecode(System.String,System.Text.Encoding)">
  2791. <summary>
  2792. <para>Converts a URL-encoded string into a decoded string,
  2793. using the specified decoding method.</para>
  2794. </summary>
  2795. <param name="str">The string to decode.</param>
  2796. <param name=" e">The <see cref="T:System.Text.Encoding" /> that specifies the decoding method.</param>
  2797. <returns>
  2798. <para>The decoded string.</para>
  2799. </returns>
  2800. </member>
  2801. <member name="M:System.Web.HttpUtility.UrlDecode(System.Byte[],System.Text.Encoding)">
  2802. <summary>
  2803. <para>Converts a URL-encoded byte array into a decoded
  2804. string, using the specified decoding method.</para>
  2805. </summary>
  2806. <param name="bytes">The byte array to decode.</param>
  2807. <param name=" e">The <see cref="T:System.Text.Encoding" /> that specifies the decoding method.</param>
  2808. <returns>
  2809. <para>The decoded string.</para>
  2810. </returns>
  2811. </member>
  2812. <member name="M:System.Web.HttpUtility.UrlDecode(System.Byte[],System.Int32,System.Int32,System.Text.Encoding)">
  2813. <summary>
  2814. <para> Converts a URL-encoded byte array into a decoded
  2815. string, using the specified decoding method, starting at the specified position
  2816. in the array, and continuing for the specified number of bytes.</para>
  2817. </summary>
  2818. <param name="bytes">The array of bytes to decode.</param>
  2819. <param name=" offset">The position in the byte to begin decoding.</param>
  2820. <param name=" count">The number of bytes to decode starting at <paramref name="offset" />.</param>
  2821. <param name=" e">The <see cref="T:System.Text.Encoding" /> object that specifies the decoding method.</param>
  2822. <returns>
  2823. <para> The decoded string.</para>
  2824. </returns>
  2825. </member>
  2826. <member name="M:System.Web.HttpUtility.UrlDecodeToBytes(System.String)">
  2827. <summary>
  2828. <para>Converts a URL-encoded string into a decoded array of
  2829. bytes .</para>
  2830. </summary>
  2831. <param name="str">The string to decode.</param>
  2832. <returns>
  2833. <para>The decoded array of bytes.</para>
  2834. </returns>
  2835. </member>
  2836. <member name="M:System.Web.HttpUtility.UrlDecodeToBytes(System.String,System.Text.Encoding)">
  2837. <summary>
  2838. <para>Converts a URL-encoded string into a decoded array of
  2839. bytes, using the specified decoding method.</para>
  2840. </summary>
  2841. <param name="str">The string to decode.</param>
  2842. <param name=" e">The <see cref="T:System.Text.Encoding" /> object that specifies the decoding method.</param>
  2843. <returns>
  2844. <para>The decoded array of bytes.</para>
  2845. </returns>
  2846. </member>
  2847. <member name="M:System.Web.HttpUtility.UrlDecodeToBytes(System.Byte[])">
  2848. <summary>
  2849. <para>Converts a URL-encoded array of bytes into a decoded array of bytes.</para>
  2850. </summary>
  2851. <param name="bytes">The array of bytes to decode.</param>
  2852. <returns>
  2853. <para>The decoded array of bytes.</para>
  2854. </returns>
  2855. </member>
  2856. <member name="M:System.Web.HttpUtility.UrlDecodeToBytes(System.Byte[],System.Int32,System.Int32)">
  2857. <summary>
  2858. <para> Converts a URL-encoded array of bytes into a
  2859. decoded array of bytes, starting at the specified position in the
  2860. array and continuing for the specified number of bytes.</para>
  2861. </summary>
  2862. <param name="bytes">The array of bytes to decode.</param>
  2863. <param name=" offset">The position in the byte array to begin decoding.</param>
  2864. <param name=" count">The number of bytes to decode, starting at <paramref name="offset" />.</param>
  2865. <returns>
  2866. <para>The decoded array of bytes.</para>
  2867. </returns>
  2868. </member>
  2869. <member name="T:System.Web.HttpWriter">
  2870. <summary>
  2871. <para> Provides a <see cref="T:System.IO.TextWriter" /> object that is accessed through the
  2872. intrinsic <see cref="T:System.Web.HttpResponse" /> object.</para>
  2873. </summary>
  2874. </member>
  2875. <member name="M:System.Web.HttpWriter.Close">
  2876. <summary>
  2877. <para> Sends all buffered output to the HTTP output stream and closes the socket connection.</para>
  2878. </summary>
  2879. </member>
  2880. <member name="M:System.Web.HttpWriter.Flush">
  2881. <summary>
  2882. <para> Sends all buffered output to the HTTP output stream.</para>
  2883. </summary>
  2884. </member>
  2885. <member name="M:System.Web.HttpWriter.Write(System.Char)">
  2886. <summary>
  2887. <para> Sends a single character to the HTTP output stream.</para>
  2888. </summary>
  2889. <param name="ch">The character to send to the HTTP output stream.</param>
  2890. </member>
  2891. <member name="M:System.Web.HttpWriter.Write(System.Char[],System.Int32,System.Int32)">
  2892. <summary>
  2893. <para> Sends a stream of characters with the specified starting position
  2894. and number of characters to the HTTP output stream. </para>
  2895. </summary>
  2896. <param name="buffer"> The memory buffer containing the characters to send to the HTTP output stream</param>
  2897. <param name=" index">The buffer position of the first character to send.</param>
  2898. <param name=" count">The number of characters to send beginning at the position specified by <paramref name="index" />. </param>
  2899. </member>
  2900. <member name="M:System.Web.HttpWriter.Write(System.String)">
  2901. <summary>
  2902. <para>Sends a string to the HTTP output stream.</para>
  2903. </summary>
  2904. <param name="s">The string to send to the HTTP output stream.</param>
  2905. </member>
  2906. <member name="M:System.Web.HttpWriter.WriteString(System.String,System.Int32,System.Int32)">
  2907. <summary>
  2908. <para>Sends a string with the specified starting position
  2909. and number of characters to the HTTP output stream.</para>
  2910. </summary>
  2911. <param name="s">The string to send to the HTTP output stream.</param>
  2912. <param name=" index">The character position of the first byte to send.</param>
  2913. <param name=" count">The number of characters to send, beginning at the character position specified by <paramref name="index" /> .</param>
  2914. </member>
  2915. <member name="M:System.Web.HttpWriter.Write(System.Object)">
  2916. <summary>
  2917. <para>Sends an <see langword="Object" /> to the HTTP output stream.</para>
  2918. </summary>
  2919. <param name="obj">The <see langword="Object" /> to send to the HTTP output stream.</param>
  2920. </member>
  2921. <member name="M:System.Web.HttpWriter.WriteBytes(System.Byte[],System.Int32,System.Int32)">
  2922. <summary>
  2923. <para> Sends a stream of bytes with the specified starting
  2924. position and number of bytes to the HTTP output stream.</para>
  2925. </summary>
  2926. <param name="buffer"> The memory buffer containing the bytes to send to the HTTP output stream.</param>
  2927. <param name=" index"> The buffer position of the first byte to send.</param>
  2928. <param name=" count">The number of bytes to send, beginning at the byte position specified by <paramref name="index" /> .</param>
  2929. </member>
  2930. <member name="M:System.Web.HttpWriter.WriteLine">
  2931. <summary>
  2932. <para>Sends a carriage return + line feed (CRLF) pair of characters to the HTTP output stream.</para>
  2933. </summary>
  2934. </member>
  2935. <member name="P:System.Web.HttpWriter.Encoding">
  2936. <summary>
  2937. <para> Gets an <see cref="T:System.Text.Encoding" /> object for the <see cref="T:System.IO.TextWriter" /> .</para>
  2938. </summary>
  2939. </member>
  2940. <member name="P:System.Web.HttpWriter.OutputStream">
  2941. <summary>
  2942. <para> Gets a <see cref="T:System.IO.Stream" /> object to enable HTTP output directly from
  2943. the <see langword="Stream " /> .</para>
  2944. </summary>
  2945. </member>
  2946. <member name="T:System.Web.IHttpHandlerFactory">
  2947. <summary>
  2948. <para> Defines the contract that class factories
  2949. must implement to create new <see cref="T:System.Web.IHttpHandler" />
  2950. objects.</para>
  2951. </summary>
  2952. </member>
  2953. <member name="M:System.Web.IHttpHandlerFactory.GetHandler(System.Web.HttpContext,System.String,System.String,System.String)">
  2954. <summary>
  2955. <para> Returns an instance of a class that implements the IHttpHandler interface.
  2956. </para>
  2957. </summary>
  2958. <param name="context">An instance of the <see cref="T:System.Web.HttpContext" /> class that provides references to intrinsic server objects (For example, <see langword="Request" />, <see langword="Response" />, <see langword="Session" />, and <see langword="Server" />)<see langword="" /> used to service HTTP requests. </param>
  2959. <param name=" requestType">The HTTP data transfer method (<see langword="GET" /> or <see langword="POST" />) that the client uses.</param>
  2960. <param name=" url">The <see cref="P:System.Web.HttpRequest.RawUrl" /> of the requested resource.</param>
  2961. <param name=" pathTranslated">The <see cref="P:System.Web.HttpRequest.PhysicalApplicationPath" /> to the requested resource.</param>
  2962. <returns>
  2963. <para>A new <see langword="IHttpHandler " /> object that processes the request.</para>
  2964. </returns>
  2965. </member>
  2966. <member name="M:System.Web.IHttpHandlerFactory.ReleaseHandler(System.Web.IHttpHandler)">
  2967. <summary>
  2968. <para> Enables a factory to reuse an existing handler
  2969. instance.
  2970. </para>
  2971. </summary>
  2972. <param name="handler">The IHttpHandler object to reuse. </param>
  2973. </member>
  2974. <member name="M:System.Web.IHttpMapPath.MapPath(System.String)">
  2975. <summary>
  2976. <para>Provides the inheriting class with a method to find a file system path
  2977. given another path.</para>
  2978. </summary>
  2979. <param name="path">The path, virtual or disk-based, for which a path is to be found.</param>
  2980. </member>
  2981. <member name="P:System.Web.IHttpMapPath.MachineConfigPath">
  2982. <summary>
  2983. <para>Provides the inheriting class with a method to find the file system path
  2984. to the configuration file.</para>
  2985. </summary>
  2986. </member>
  2987. <member name="T:System.Web.IHttpModule">
  2988. <summary>
  2989. <para>Provides module initialization and disposal events to the inheriting class.</para>
  2990. </summary>
  2991. </member>
  2992. <member name="M:System.Web.IHttpModule.Init(System.Web.HttpApplication)">
  2993. <summary>
  2994. <para> Initializes a module and prepares it to handle
  2995. requests.</para>
  2996. </summary>
  2997. <param name="context">An <see cref="T:System.Web.HttpContext" /> object that provides references to the intrinsic server objects (for example, <see langword="Request" />, <see langword="Response" />, <see langword="Session" />, and <see langword="Server" />) used to service HTTP requests.</param>
  2998. </member>
  2999. <member name="M:System.Web.IHttpModule.Dispose">
  3000. <summary>
  3001. Disposes of the resources (other than memory) used by the
  3002. module that implements <see langword="IHttpModule." /></summary>
  3003. </member>
  3004. <member name="M:System.Web.Caching.OutputCacheModule.Init(System.Web.HttpApplication)">
  3005. <summary>
  3006. <para>Initializes the output cache for an application.</para>
  3007. </summary>
  3008. <param name="app">The application to be initialized.</param>
  3009. </member>
  3010. <member name="M:System.Web.Caching.OutputCacheModule.Dispose">
  3011. <summary>
  3012. <para>Disposes of items from the output cache.</para>
  3013. </summary>
  3014. </member>
  3015. <member name="M:System.Web.Caching.OutputCacheModule.OnEnter(System.Object,System.EventArgs)">
  3016. <summary>
  3017. <para>Raises the <see langword="Enter" />
  3018. event, which searches the output cache for an item to satisfy the HTTP request. </para>
  3019. </summary>
  3020. <param name="source">The source of the event.</param>
  3021. <param name=" eventArgs">An argument that contains the event data.</param>
  3022. <returns>
  3023. <para>The requested item from the output cache.</para>
  3024. </returns>
  3025. </member>
  3026. <member name="M:System.Web.Caching.OutputCacheModule.OnLeave(System.Object,System.EventArgs)">
  3027. <summary>
  3028. <para>Raises the <see langword="Leave" /> event, which causes any cacheable items to
  3029. be put into the output cache.</para>
  3030. </summary>
  3031. <param name="source">The source of the event.</param>
  3032. <param name=" eventArgs">An argument that contains the event data.</param>
  3033. </member>
  3034. <member name="T:System.Web.ProcessStatus">
  3035. <summary>
  3036. <para>Provides enumerated values that indicate the current status of a process.</para>
  3037. </summary>
  3038. </member>
  3039. <member name="F:System.Web.ProcessStatus.Alive">
  3040. <summary>
  3041. <para>Indicates that the process is running.</para>
  3042. </summary>
  3043. </member>
  3044. <member name="F:System.Web.ProcessStatus.ShuttingDown">
  3045. <summary>
  3046. <para>Indicates that the process has begun to shut down.</para>
  3047. </summary>
  3048. </member>
  3049. <member name="F:System.Web.ProcessStatus.ShutDown">
  3050. <summary>
  3051. <para> Indicates that the process has shut down normally after
  3052. receiving a shut down message from the IIS process.</para>
  3053. </summary>
  3054. </member>
  3055. <member name="F:System.Web.ProcessStatus.Terminated">
  3056. <summary>
  3057. <para> Indicates that the process was forced to terminate by the IIS process.</para>
  3058. </summary>
  3059. </member>
  3060. <member name="T:System.Web.ProcessShutdownReason">
  3061. <summary>
  3062. <para> Provides enumerated values that indicate why a process has shut
  3063. down.</para>
  3064. </summary>
  3065. </member>
  3066. <member name="F:System.Web.ProcessShutdownReason.None">
  3067. <summary>
  3068. <para> Indicates that the process has not shut down.</para>
  3069. </summary>
  3070. </member>
  3071. <member name="F:System.Web.ProcessShutdownReason.Unexpected">
  3072. <summary>
  3073. <para> Indicates that the process shut down unexpectedly.</para>
  3074. </summary>
  3075. </member>
  3076. <member name="F:System.Web.ProcessShutdownReason.RequestsLimit">
  3077. <summary>
  3078. <para> Indicates that requests executed by the process exceeded the allowable
  3079. limit.</para>
  3080. </summary>
  3081. </member>
  3082. <member name="F:System.Web.ProcessShutdownReason.RequestQueueLimit">
  3083. <summary>
  3084. <para> Indicates that requests assigned to the process exceeded the allowable number
  3085. in the queue.</para>
  3086. </summary>
  3087. </member>
  3088. <member name="F:System.Web.ProcessShutdownReason.Timeout">
  3089. <summary>
  3090. <para>Indicates that the process restarted because it was alive longer than allowed.</para>
  3091. </summary>
  3092. </member>
  3093. <member name="F:System.Web.ProcessShutdownReason.IdleTimeout">
  3094. <summary>
  3095. <para> Indicates that the process exceeded the allowable idle time.</para>
  3096. </summary>
  3097. </member>
  3098. <member name="F:System.Web.ProcessShutdownReason.MemoryLimitExceeded">
  3099. <summary>
  3100. <para> Indicates that the process exceeded the per-process memory limit.</para>
  3101. </summary>
  3102. </member>
  3103. <member name="F:System.Web.ProcessShutdownReason.PingFailed">
  3104. <summary>
  3105. <para>Indicates that the worker process did not respond to a ping from the IIS process.</para>
  3106. </summary>
  3107. </member>
  3108. <member name="F:System.Web.ProcessShutdownReason.DeadlockSuspected">
  3109. <summary>
  3110. <para>Indicates that a deadlock was suspected because the response time limit was exceeded with requests in the
  3111. queue.</para>
  3112. </summary>
  3113. </member>
  3114. <member name="T:System.Web.ProcessInfo">
  3115. <summary>
  3116. <para> Provides information on processes currently executing.</para>
  3117. </summary>
  3118. </member>
  3119. <member name="M:System.Web.ProcessInfo.SetAll(System.DateTime,System.TimeSpan,System.Int32,System.Int32,System.Web.ProcessStatus,System.Web.ProcessShutdownReason,System.Int32)">
  3120. <summary>
  3121. <para>Sets internal information indicating the status of the process.</para>
  3122. </summary>
  3123. <param name=" startTime">A <see cref="T:System.DateTime" /> that indicates the time at which the process started.</param>
  3124. <param name=" age">A <see cref="T:System.TimeSpan" /> that indicates the time elapsed since the process started.</param>
  3125. <param name="processID">The ID number assigned to the process.</param>
  3126. <param name=" requestCount">The number of start requests for the process.</param>
  3127. <param name=" status">One of the <see cref="T:System.Web.ProcessStatus" /> values that indicates the time elapsed since tha process started.</param>
  3128. <param name=" shutdownReason">One of the <see cref="T:System.Web.ProcessShutdownReason" /> values.</param>
  3129. <param name=" peakMemoryUsed">The maximum memory used (in megabytes [MB]).</param>
  3130. </member>
  3131. <member name="M:System.Web.ProcessInfo.#ctor(System.DateTime,System.TimeSpan,System.Int32,System.Int32,System.Web.ProcessStatus,System.Web.ProcessShutdownReason,System.Int32)">
  3132. <summary>
  3133. <para>Initializes a new instance of the <see langword="ProcessInfo" /> class and sets internal information
  3134. indicating the status of the process.</para>
  3135. </summary>
  3136. <param name="startTime">A <see cref="T:System.DateTime" /> that indicates the time at which the process started.</param>
  3137. <param name=" age">The <see cref="T:System.TimeSpan" /> that indicates the time elapsed since the process started.</param>
  3138. <param name=" processID">The ID number assigned to the process.</param>
  3139. <param name=" requestCount">The number of start requests for the process.</param>
  3140. <param name=" status">One of the <see cref="T:System.Web.ProcessStatus" /><see langword="" /> values that indicates the current status of the process.</param>
  3141. <param name=" shutdownReason">One of the <see cref="T:System.Web.ProcessShutdownReason" /><see langword="" /> values.</param>
  3142. <param name=" peakMemoryUsed">The maximum memory used (in bytes).</param>
  3143. </member>
  3144. <member name="M:System.Web.ProcessInfo.#ctor">
  3145. <summary>
  3146. <para>Initializes a new instance of the <see cref="T:System.Web.ProcessInfo" /> class.</para>
  3147. </summary>
  3148. </member>
  3149. <member name="P:System.Web.ProcessInfo.StartTime">
  3150. <summary>
  3151. <para> Gets the time at which the process started.</para>
  3152. </summary>
  3153. </member>
  3154. <member name="P:System.Web.ProcessInfo.Age">
  3155. <summary>
  3156. <para>Gets the length of time the process has been running.</para>
  3157. </summary>
  3158. </member>
  3159. <member name="P:System.Web.ProcessInfo.ProcessID">
  3160. <summary>
  3161. <para>Gets the ID number assigned to the process.</para>
  3162. </summary>
  3163. </member>
  3164. <member name="P:System.Web.ProcessInfo.RequestCount">
  3165. <summary>
  3166. <para>Gets the number of start requests for the process.</para>
  3167. </summary>
  3168. </member>
  3169. <member name="P:System.Web.ProcessInfo.Status">
  3170. <summary>
  3171. <para>Gets the current status of the process.</para>
  3172. </summary>
  3173. </member>
  3174. <member name="P:System.Web.ProcessInfo.ShutdownReason">
  3175. <summary>
  3176. <para>Gets a value that indicates why the process shut down.</para>
  3177. </summary>
  3178. </member>
  3179. <member name="P:System.Web.ProcessInfo.PeakMemoryUsed">
  3180. <summary>
  3181. <para>Gets the maximum amount of memory the process has used.</para>
  3182. </summary>
  3183. </member>
  3184. <member name="T:System.Web.ProcessModelInfo">
  3185. <summary>
  3186. <para>Contains methods that return information about worker processes.</para>
  3187. </summary>
  3188. </member>
  3189. <member name="M:System.Web.ProcessModelInfo.GetCurrentProcessInfo">
  3190. <summary>
  3191. <para>Returns information about the worker process executing the current request.</para>
  3192. </summary>
  3193. <returns>
  3194. <para>A <see cref="T:System.Web.ProcessInfo" /> that contains information about the current
  3195. process.</para>
  3196. </returns>
  3197. </member>
  3198. <member name="M:System.Web.ProcessModelInfo.GetHistory(System.Int32)">
  3199. <summary>
  3200. <para>Returns information about recent worker processes.</para>
  3201. </summary>
  3202. <param name="numRecords">The number of processes for which information is requested.</param>
  3203. <returns>
  3204. <para>An array of the most recent <see cref="T:System.Web.ProcessInfo" /> objects (maximum of 100).
  3205. If the number of available objects is less than <paramref name="numrecords" />, all
  3206. available objects are returned.</para>
  3207. </returns>
  3208. </member>
  3209. <member name="M:System.Web.WebCategoryAttribute.#ctor(System.String)">
  3210. <summary>
  3211. <para>
  3212. Initializes a new instance of the <see cref="T:System.ComponentModel.CategoryAttribute" /> class.
  3213. </para>
  3214. </summary>
  3215. <param name="category">
  3216. The name of the category.
  3217. </param>
  3218. </member>
  3219. <member name="M:System.Web.WebCategoryAttribute.GetLocalizedString(System.String)">
  3220. <summary>
  3221. This method is called the first time the category property
  3222. is accessed. It provides a way to lookup a localized string for
  3223. the given category. Classes may override this to add their
  3224. own localized names to categories. If a localized string is
  3225. available for the given value, the method should return it.
  3226. Otherwise, it should return null.
  3227. </summary>
  3228. <param name="value">
  3229. The value of the string.
  3230. </param>
  3231. </member>
  3232. <member name="M:System.Web.WebSysDescriptionAttribute.#ctor(System.String)">
  3233. </member>
  3234. <member name="P:System.Web.WebSysDescriptionAttribute.Description">
  3235. </member>
  3236. <member name="T:System.Web.HttpWorkerRequest">
  3237. <summary>
  3238. <para>This abstract class defines the base worker methods and enumerations used by ASP.NET managed code to process requests.</para>
  3239. </summary>
  3240. </member>
  3241. <member name="F:System.Web.HttpWorkerRequest.HeaderCacheControl">
  3242. <summary>
  3243. <para>The index that represents the HTTP
  3244. <see langword="Cache-Control" /> HTTP header.</para>
  3245. </summary>
  3246. </member>
  3247. <member name="F:System.Web.HttpWorkerRequest.HeaderConnection">
  3248. <summary>
  3249. <para> Specifies the index number for the
  3250. <see langword="Connection" /> HTTP header.</para>
  3251. </summary>
  3252. </member>
  3253. <member name="F:System.Web.HttpWorkerRequest.HeaderDate">
  3254. <summary>
  3255. <para>Specifies the index number for
  3256. the <see langword="Date" /> HTTP header.</para>
  3257. </summary>
  3258. </member>
  3259. <member name="F:System.Web.HttpWorkerRequest.HeaderKeepAlive">
  3260. <summary>
  3261. <para>Specifies the index number for the
  3262. <see langword="Keep-Alive" /> HTTP header.</para>
  3263. </summary>
  3264. </member>
  3265. <member name="F:System.Web.HttpWorkerRequest.HeaderPragma">
  3266. <summary>
  3267. <para>Specifies the index number for the
  3268. <see langword="Pragma" /> HTTP header.</para>
  3269. </summary>
  3270. </member>
  3271. <member name="F:System.Web.HttpWorkerRequest.HeaderTrailer">
  3272. <summary>
  3273. <para>Specifies the index number for the
  3274. <see langword="Trailer" /> HTTP header.</para>
  3275. </summary>
  3276. </member>
  3277. <member name="F:System.Web.HttpWorkerRequest.HeaderTransferEncoding">
  3278. <summary>
  3279. <para>Specifies the index number for
  3280. the <see langword="Transfer-Encoding" /> HTTP header.</para>
  3281. </summary>
  3282. </member>
  3283. <member name="F:System.Web.HttpWorkerRequest.HeaderUpgrade">
  3284. <summary>
  3285. <para>Specifies the index number for the
  3286. <see langword="Upgrade" /> HTTP header.</para>
  3287. </summary>
  3288. </member>
  3289. <member name="F:System.Web.HttpWorkerRequest.HeaderVia">
  3290. <summary>
  3291. <para>Specifies the index number for the <see langword="Via" /> HTTP header.</para>
  3292. </summary>
  3293. </member>
  3294. <member name="F:System.Web.HttpWorkerRequest.HeaderWarning">
  3295. <summary>
  3296. <para>Specifies the index number for the
  3297. <see langword="Warning" /> HTTP header.</para>
  3298. </summary>
  3299. </member>
  3300. <member name="F:System.Web.HttpWorkerRequest.HeaderAllow">
  3301. <summary>
  3302. <para>Specifies the index number for
  3303. the <see langword="Allow" /> HTTP header.</para>
  3304. </summary>
  3305. </member>
  3306. <member name="F:System.Web.HttpWorkerRequest.HeaderContentLength">
  3307. <summary>
  3308. <para>Specifies the index number for the
  3309. <see langword="Content-Length" /> HTTP header.</para>
  3310. </summary>
  3311. </member>
  3312. <member name="F:System.Web.HttpWorkerRequest.HeaderContentType">
  3313. <summary>
  3314. <para>Specifies the index number for
  3315. the <see langword="Content-Type" /> HTTP header.</para>
  3316. </summary>
  3317. </member>
  3318. <member name="F:System.Web.HttpWorkerRequest.HeaderContentEncoding">
  3319. <summary>
  3320. <para>Specifies the index number for the <see langword="Content-Encoding" /> HTTP
  3321. header.</para>
  3322. </summary>
  3323. </member>
  3324. <member name="F:System.Web.HttpWorkerRequest.HeaderContentLanguage">
  3325. <summary>
  3326. <para>Specifies the index number for the
  3327. <see langword="Content-Language" /> HTTP header.</para>
  3328. </summary>
  3329. </member>
  3330. <member name="F:System.Web.HttpWorkerRequest.HeaderContentLocation">
  3331. <summary>
  3332. <para>Specifies the index number for the
  3333. <see langword="Content-Location" /> HTTP header.</para>
  3334. </summary>
  3335. </member>
  3336. <member name="F:System.Web.HttpWorkerRequest.HeaderContentMd5">
  3337. <summary>
  3338. <para>Specifies the index number for the
  3339. <see langword="Content-MD5" /> HTTP header.</para>
  3340. </summary>
  3341. </member>
  3342. <member name="F:System.Web.HttpWorkerRequest.HeaderContentRange">
  3343. <summary>
  3344. <para>Specifies the index number for the
  3345. <see langword="Content-Range" /> HTTP header.</para>
  3346. </summary>
  3347. </member>
  3348. <member name="F:System.Web.HttpWorkerRequest.HeaderExpires">
  3349. <summary>
  3350. <para>Specifies the index number for
  3351. the <see langword="Expires" /> HTTP header.</para>
  3352. </summary>
  3353. </member>
  3354. <member name="F:System.Web.HttpWorkerRequest.HeaderLastModified">
  3355. <summary>
  3356. <para>Specifies the index number for
  3357. the <see langword="Last-Modified" /> HTTP header.</para>
  3358. </summary>
  3359. </member>
  3360. <member name="F:System.Web.HttpWorkerRequest.HeaderAccept">
  3361. <summary>
  3362. <para>Specifies the index number for the
  3363. <see langword="Accept" /> HTTP header.</para>
  3364. </summary>
  3365. </member>
  3366. <member name="F:System.Web.HttpWorkerRequest.HeaderAcceptCharset">
  3367. <summary>
  3368. <para>Specifies the index number for
  3369. the <see langword="Accept-Charset" /> HTTP header.</para>
  3370. </summary>
  3371. </member>
  3372. <member name="F:System.Web.HttpWorkerRequest.HeaderAcceptEncoding">
  3373. <summary>
  3374. <para>Specifies the index number for
  3375. the <see langword="Accept-Encoding" /> HTTP header.</para>
  3376. </summary>
  3377. </member>
  3378. <member name="F:System.Web.HttpWorkerRequest.HeaderAcceptLanguage">
  3379. <summary>
  3380. <para>Specifies the index number for
  3381. the <see langword="Accept-Language" /> HTTP header.</para>
  3382. </summary>
  3383. </member>
  3384. <member name="F:System.Web.HttpWorkerRequest.HeaderAuthorization">
  3385. <summary>
  3386. <para>Specifies the index number for
  3387. the <see langword="Authorization" /> HTTP header.</para>
  3388. </summary>
  3389. </member>
  3390. <member name="F:System.Web.HttpWorkerRequest.HeaderCookie">
  3391. <summary>
  3392. <para>Specifies the index number for
  3393. the <see langword="Cookie" /> HTTP header.</para>
  3394. </summary>
  3395. </member>
  3396. <member name="F:System.Web.HttpWorkerRequest.HeaderExpect">
  3397. <summary>
  3398. <para>Specifies the index number for
  3399. the <see langword="Except" /> HTTP header.</para>
  3400. </summary>
  3401. </member>
  3402. <member name="F:System.Web.HttpWorkerRequest.HeaderFrom">
  3403. <summary>
  3404. <para>Specifies the index number for
  3405. the <see langword="From" /> HTTP header.</para>
  3406. </summary>
  3407. </member>
  3408. <member name="F:System.Web.HttpWorkerRequest.HeaderHost">
  3409. <summary>
  3410. <para>Specifies the index number for
  3411. the <see langword="Host" /> HTTP header.</para>
  3412. </summary>
  3413. </member>
  3414. <member name="F:System.Web.HttpWorkerRequest.HeaderIfMatch">
  3415. <summary>
  3416. <para>Specifies the index number for
  3417. the <see langword="If-Match" /> HTTP header.</para>
  3418. </summary>
  3419. </member>
  3420. <member name="F:System.Web.HttpWorkerRequest.HeaderIfModifiedSince">
  3421. <summary>
  3422. <para>Specifies the index number for
  3423. the <see langword="If-Modified-Since" /> HTTP header.</para>
  3424. </summary>
  3425. </member>
  3426. <member name="F:System.Web.HttpWorkerRequest.HeaderIfNoneMatch">
  3427. <summary>
  3428. <para>Specifies the index number for
  3429. the <see langword="If-None-Match" /> HTTP header.</para>
  3430. </summary>
  3431. </member>
  3432. <member name="F:System.Web.HttpWorkerRequest.HeaderIfRange">
  3433. <summary>
  3434. <para>Specifies the index number for
  3435. the <see langword="If-Range" /> HTTP header.</para>
  3436. </summary>
  3437. </member>
  3438. <member name="F:System.Web.HttpWorkerRequest.HeaderIfUnmodifiedSince">
  3439. <summary>
  3440. <para>Specifies the index number for
  3441. the <see langword="If-Unmodified-Since" /> HTTP header.</para>
  3442. </summary>
  3443. </member>
  3444. <member name="F:System.Web.HttpWorkerRequest.HeaderMaxForwards">
  3445. <summary>
  3446. <para>Specifies the index number for
  3447. the <see langword="Max-Forwards" /> HTTP header.</para>
  3448. </summary>
  3449. </member>
  3450. <member name="F:System.Web.HttpWorkerRequest.HeaderProxyAuthorization">
  3451. <summary>
  3452. <para>Specifies the index number for
  3453. the <see langword="Proxy-Authorization" /> HTTP header.</para>
  3454. </summary>
  3455. </member>
  3456. <member name="F:System.Web.HttpWorkerRequest.HeaderReferer">
  3457. <summary>
  3458. <para>Specifies the index number for
  3459. the <see langword="Referer" /> HTTP header.</para>
  3460. </summary>
  3461. </member>
  3462. <member name="F:System.Web.HttpWorkerRequest.HeaderRange">
  3463. <summary>
  3464. <para>Specifies the index number for
  3465. the <see langword="Range" /> HTTP header.</para>
  3466. </summary>
  3467. </member>
  3468. <member name="F:System.Web.HttpWorkerRequest.HeaderTe">
  3469. <summary>
  3470. <para>Specifies the index number for
  3471. the <see langword="TE" /> HTTP header.</para>
  3472. </summary>
  3473. </member>
  3474. <member name="F:System.Web.HttpWorkerRequest.HeaderUserAgent">
  3475. <summary>
  3476. <para>Specifies the index number for the <see langword="User-Agent " />HTTP header.</para>
  3477. </summary>
  3478. </member>
  3479. <member name="F:System.Web.HttpWorkerRequest.RequestHeaderMaximum">
  3480. <summary>
  3481. <para>Specifies the index number for
  3482. the <see langword="Maximum" /> HTTP request header.</para>
  3483. </summary>
  3484. </member>
  3485. <member name="F:System.Web.HttpWorkerRequest.HeaderAcceptRanges">
  3486. <summary>
  3487. <para>Specifies the index number for
  3488. the <see langword="Accept-Ranges" /> HTTP header.</para>
  3489. </summary>
  3490. </member>
  3491. <member name="F:System.Web.HttpWorkerRequest.HeaderAge">
  3492. <summary>
  3493. <para>Specifies the index number for
  3494. the <see langword="Age" /> HTTP header.</para>
  3495. </summary>
  3496. </member>
  3497. <member name="F:System.Web.HttpWorkerRequest.HeaderEtag">
  3498. <summary>
  3499. <para>Specifies the index number for
  3500. the <see langword="ETag" /> HTTP header.</para>
  3501. </summary>
  3502. </member>
  3503. <member name="F:System.Web.HttpWorkerRequest.HeaderLocation">
  3504. <summary>
  3505. <para>Specifies the index number for
  3506. the <see langword="Location" /> HTTP header.</para>
  3507. </summary>
  3508. </member>
  3509. <member name="F:System.Web.HttpWorkerRequest.HeaderProxyAuthenticate">
  3510. <summary>
  3511. <para>Specifies the index number for
  3512. the <see langword="Proxy-Authenticate " />HTTP header.</para>
  3513. </summary>
  3514. </member>
  3515. <member name="F:System.Web.HttpWorkerRequest.HeaderRetryAfter">
  3516. <summary>
  3517. <para>Specifies the index number for
  3518. the <see langword="Retry-After" /> HTTP header.</para>
  3519. </summary>
  3520. </member>
  3521. <member name="F:System.Web.HttpWorkerRequest.HeaderServer">
  3522. <summary>
  3523. <para>Specifies the index number for
  3524. the <see langword="Server" /> HTTP header.</para>
  3525. </summary>
  3526. </member>
  3527. <member name="F:System.Web.HttpWorkerRequest.HeaderSetCookie">
  3528. <summary>
  3529. <para>Specifies the index number for
  3530. the <see langword="Set-Cookie " />HTTP header.</para>
  3531. </summary>
  3532. </member>
  3533. <member name="F:System.Web.HttpWorkerRequest.HeaderVary">
  3534. <summary>
  3535. <para>Specifies the index number for
  3536. the <see langword="Vary" /> HTTP header.</para>
  3537. </summary>
  3538. </member>
  3539. <member name="F:System.Web.HttpWorkerRequest.HeaderWwwAuthenticate">
  3540. <summary>
  3541. <para>Specifies the index number for
  3542. the <see langword="WWW-Authenticate " />HTTP header.</para>
  3543. </summary>
  3544. </member>
  3545. <member name="F:System.Web.HttpWorkerRequest.ResponseHeaderMaximum">
  3546. <summary>
  3547. <para>Specifies the index number for
  3548. the <see langword="Maximum" /> HTTP response header.</para>
  3549. </summary>
  3550. </member>
  3551. <member name="M:System.Web.HttpWorkerRequest.GetUriPath">
  3552. <summary>
  3553. <para> Returns the virtual path to the requested URI.</para>
  3554. </summary>
  3555. <returns>
  3556. <para> The path to the requested URI.</para>
  3557. </returns>
  3558. </member>
  3559. <member name="M:System.Web.HttpWorkerRequest.GetQueryString">
  3560. <summary>
  3561. <para> Returns the query string specified in the request URL.</para>
  3562. </summary>
  3563. <returns>
  3564. <para> The request query string.</para>
  3565. </returns>
  3566. </member>
  3567. <member name="M:System.Web.HttpWorkerRequest.GetRawUrl">
  3568. <summary>
  3569. <para> Returns the URL path contained in the request header with the query string appended.</para>
  3570. </summary>
  3571. <returns>
  3572. <para>The raw URL path of the request header.</para>
  3573. </returns>
  3574. </member>
  3575. <member name="M:System.Web.HttpWorkerRequest.GetHttpVerbName">
  3576. <summary>
  3577. <para> Returns the specified member of the request header.</para>
  3578. </summary>
  3579. <returns>
  3580. <para>The HTTP verb returned in the request header.</para>
  3581. </returns>
  3582. </member>
  3583. <member name="M:System.Web.HttpWorkerRequest.GetHttpVersion">
  3584. <summary>
  3585. <para>Provides access to the HTTP version of the request (for example, "HTTP/1.1").</para>
  3586. </summary>
  3587. <returns>
  3588. <para>The HTTP version returned in the request header.</para>
  3589. </returns>
  3590. </member>
  3591. <member name="M:System.Web.HttpWorkerRequest.GetRemoteAddress">
  3592. <summary>
  3593. <para> Provides access to the specified member of the request header.</para>
  3594. </summary>
  3595. <returns>
  3596. <para> The client's IP address.</para>
  3597. </returns>
  3598. </member>
  3599. <member name="M:System.Web.HttpWorkerRequest.GetRemotePort">
  3600. <summary>
  3601. <para> Provides access to the specified member of the request header.</para>
  3602. </summary>
  3603. <returns>
  3604. <para> The client's HTTP port number.</para>
  3605. </returns>
  3606. </member>
  3607. <member name="M:System.Web.HttpWorkerRequest.GetLocalAddress">
  3608. <summary>
  3609. <para>Provides access to the specified member of the request header.</para>
  3610. </summary>
  3611. <returns>
  3612. <para>The server IP address returned in the request header.</para>
  3613. </returns>
  3614. </member>
  3615. <member name="M:System.Web.HttpWorkerRequest.GetLocalPort">
  3616. <summary>
  3617. <para>Provides access to the specified member of the request header.</para>
  3618. </summary>
  3619. <returns>
  3620. <para>The server port number returned in the request header.</para>
  3621. </returns>
  3622. </member>
  3623. <member name="M:System.Web.HttpWorkerRequest.GetQueryStringRawBytes">
  3624. <summary>
  3625. <para>When overridden in a derived class, returns the response query string as an array of bytes.</para>
  3626. </summary>
  3627. <returns>
  3628. <para>An array of bytes containing the response.</para>
  3629. </returns>
  3630. </member>
  3631. <member name="M:System.Web.HttpWorkerRequest.GetRemoteName">
  3632. <summary>
  3633. <para>When overridden in a derived class, returns the name of the client computer.</para>
  3634. </summary>
  3635. <returns>
  3636. <para>The name of the client computer.</para>
  3637. </returns>
  3638. </member>
  3639. <member name="M:System.Web.HttpWorkerRequest.GetServerName">
  3640. <summary>
  3641. <para>When overridden in a derived class, returns the name of the local server.</para>
  3642. </summary>
  3643. <returns>
  3644. <para>The name of the local server.</para>
  3645. </returns>
  3646. </member>
  3647. <member name="M:System.Web.HttpWorkerRequest.GetUserToken">
  3648. <summary>
  3649. <para>When overridden in a derived class, returns the client's impersonation token.</para>
  3650. </summary>
  3651. <returns>
  3652. <para>A value representing the client's impersonation token. The default is 0.</para>
  3653. </returns>
  3654. </member>
  3655. <member name="M:System.Web.HttpWorkerRequest.IsSecure">
  3656. <summary>
  3657. <para> Returns a value indicating whether the connection is secure (using SSL).</para>
  3658. </summary>
  3659. <returns>
  3660. <para>
  3661. <see langword="true " />if the connection is secure; otherwise,
  3662. <see langword="false" />. The default is <see langword="false" />.</para>
  3663. </returns>
  3664. </member>
  3665. <member name="M:System.Web.HttpWorkerRequest.GetProtocol">
  3666. <summary>
  3667. <para>When overridden in a derived class, returns the HTTP protocol (HTTP or HTTPS).</para>
  3668. </summary>
  3669. <returns>
  3670. <para>HTTPS if the <see cref="M:System.Web.HttpWorkerRequest.IsSecure" /> method is <see langword="true" />, otherwise HTTP.</para>
  3671. </returns>
  3672. </member>
  3673. <member name="M:System.Web.HttpWorkerRequest.GetFilePath">
  3674. <summary>
  3675. <para>When overridden in a derived class, returns the physical path to the requested URI.</para>
  3676. </summary>
  3677. <returns>
  3678. <para>The path to the requested URI.</para>
  3679. </returns>
  3680. </member>
  3681. <member name="M:System.Web.HttpWorkerRequest.GetFilePathTranslated">
  3682. <summary>
  3683. <para> Returns the physical file path to the requested URI (and translates it from virtual
  3684. path to physical path: for example, "/proj1/page.aspx" to "c:\dir\page.aspx") </para>
  3685. </summary>
  3686. <returns>
  3687. <para>The translated physical file path to the requested URI.</para>
  3688. </returns>
  3689. </member>
  3690. <member name="M:System.Web.HttpWorkerRequest.GetPathInfo">
  3691. <summary>
  3692. <para> Returns additional path information for a resource with
  3693. a URL extension. That is, for the path /virdir/page.html/tail, the
  3694. <see langword="GetPathInfo" />
  3695. value is /tail. </para>
  3696. </summary>
  3697. <returns>
  3698. <para>Additional path information for a resource.</para>
  3699. </returns>
  3700. </member>
  3701. <member name="M:System.Web.HttpWorkerRequest.GetAppPath">
  3702. <summary>
  3703. <para> Returns the virtual path to the
  3704. currently executing server application.</para>
  3705. </summary>
  3706. <returns>
  3707. <para>The virtual path of the current application.</para>
  3708. </returns>
  3709. </member>
  3710. <member name="M:System.Web.HttpWorkerRequest.GetAppPathTranslated">
  3711. <summary>
  3712. <para> Returns the UNC-translated path to
  3713. the currently executing server application.</para>
  3714. </summary>
  3715. <returns>
  3716. <para> The physical path of the current application.</para>
  3717. </returns>
  3718. </member>
  3719. <member name="M:System.Web.HttpWorkerRequest.GetPreloadedEntityBody">
  3720. <summary>
  3721. <para>Returns the portion of the HTTP request body that has already been read.</para>
  3722. </summary>
  3723. <returns>
  3724. <para>The portion of the request body that has been read.</para>
  3725. </returns>
  3726. </member>
  3727. <member name="M:System.Web.HttpWorkerRequest.IsEntireEntityBodyIsPreloaded">
  3728. <summary>
  3729. <para>Returns a value indicating whether all request data
  3730. is available and no further reads from the client are required.</para>
  3731. </summary>
  3732. <returns>
  3733. <para>
  3734. <see langword="true" /> if all request data is available; otherwise,
  3735. <see langword="false" />.</para>
  3736. </returns>
  3737. </member>
  3738. <member name="M:System.Web.HttpWorkerRequest.ReadEntityBody(System.Byte[],System.Int32)">
  3739. <summary>
  3740. <para>Reads request data from the client (when not preloaded).</para>
  3741. </summary>
  3742. <param name="buffer">The byte array to read data into.</param>
  3743. <param name=" size">The maximum number of bytes to read.</param>
  3744. <returns>
  3745. <para>The number of bytes read.</para>
  3746. </returns>
  3747. </member>
  3748. <member name="M:System.Web.HttpWorkerRequest.GetKnownRequestHeader(System.Int32)">
  3749. <summary>
  3750. <para>Returns the standard HTTP request header that
  3751. corresponds to the specified index.</para>
  3752. </summary>
  3753. <param name="index">The index of the header. For example, the <see cref="F:System.Web.HttpWorkerRequest.HeaderAllow" /> field. </param>
  3754. <returns>
  3755. <para>The HTTP request header.</para>
  3756. </returns>
  3757. </member>
  3758. <member name="M:System.Web.HttpWorkerRequest.GetUnknownRequestHeader(System.String)">
  3759. <summary>
  3760. <para>Returns a nonstandard HTTP request header value.</para>
  3761. </summary>
  3762. <param name="name">The header name.</param>
  3763. <returns>
  3764. <para>The header value.</para>
  3765. </returns>
  3766. </member>
  3767. <member name="M:System.Web.HttpWorkerRequest.GetUnknownRequestHeaders">
  3768. <summary>
  3769. <para>Get all nonstandard HTTP header name-value pairs.</para>
  3770. </summary>
  3771. <returns>
  3772. <para>An array of header name-value pairs.</para>
  3773. </returns>
  3774. </member>
  3775. <member name="M:System.Web.HttpWorkerRequest.GetServerVariable(System.String)">
  3776. <summary>
  3777. <para> Returns a single server variable from
  3778. a dictionary of server variables associated with the request.</para>
  3779. </summary>
  3780. <param name="name">The name of the requested server variable.</param>
  3781. <returns>
  3782. <para>The requested server variable.</para>
  3783. </returns>
  3784. </member>
  3785. <member name="M:System.Web.HttpWorkerRequest.MapPath(System.String)">
  3786. <summary>
  3787. <para>Returns the physical path corresponding to the specified virtual path.</para>
  3788. </summary>
  3789. <param name="virtualPath">The virtual path.</param>
  3790. <returns>
  3791. <para>The physical path that corresponds to the virtual path
  3792. specified in the <paramref name="virtualPath" /> parameter.</para>
  3793. </returns>
  3794. </member>
  3795. <member name="M:System.Web.HttpWorkerRequest.SendStatus(System.Int32,System.String)">
  3796. <summary>
  3797. <para>Specifies the HTTP status code and status description of
  3798. the response; for example SendStatus(200, "Ok").</para>
  3799. </summary>
  3800. <param name="statusCode">The status code to send</param>
  3801. <param name=" statusDescription">The status description to send.</param>
  3802. </member>
  3803. <member name="M:System.Web.HttpWorkerRequest.SendKnownResponseHeader(System.Int32,System.String)">
  3804. <summary>
  3805. <para>Adds a standard HTTP header to the response.</para>
  3806. </summary>
  3807. <param name="index">The header index. For example, <see cref="F:System.Web.HttpWorkerRequest.HeaderContentLength" />. </param>
  3808. <param name=" value">The value of the header.</param>
  3809. </member>
  3810. <member name="M:System.Web.HttpWorkerRequest.SendUnknownResponseHeader(System.String,System.String)">
  3811. <summary>
  3812. <para>Adds a nonstandard HTTP header to the response.</para>
  3813. </summary>
  3814. <param name="name">The name of the header to send.</param>
  3815. <param name=" value">The value of the header.</param>
  3816. </member>
  3817. <member name="M:System.Web.HttpWorkerRequest.SendResponseFromMemory(System.Byte[],System.Int32)">
  3818. <summary>
  3819. <para>Adds the specified number of bytes from a byte array to the response.</para>
  3820. </summary>
  3821. <param name="data">The byte array to send.</param>
  3822. <param name=" length">The number of bytes to send, starting at the first byte.</param>
  3823. </member>
  3824. <member name="M:System.Web.HttpWorkerRequest.SendResponseFromMemory(System.IntPtr,System.Int32)">
  3825. <summary>
  3826. <para>Adds the specified number of bytes from a block of memory
  3827. to the response.</para>
  3828. </summary>
  3829. <param name=" data">An unmanaged pointer to the block of memory.</param>
  3830. <param name="length">The number of bytes to send.</param>
  3831. </member>
  3832. <member name="M:System.Web.HttpWorkerRequest.SendResponseFromFile(System.String,System.Int64,System.Int64)">
  3833. <summary>
  3834. <para> Adds the contents of the specified file to the response
  3835. and specifies the starting position in the file and the number of bytes to send.</para>
  3836. </summary>
  3837. <param name="filename">The name of the file to send.</param>
  3838. <param name=" offset">The starting position in the file.</param>
  3839. <param name=" length">The number of bytes to send.</param>
  3840. </member>
  3841. <member name="M:System.Web.HttpWorkerRequest.SendResponseFromFile(System.IntPtr,System.Int64,System.Int64)">
  3842. <summary>
  3843. <para> Adds the contents of the specified file to the response and
  3844. specifies the starting position in the file and the number of bytes to send.</para>
  3845. </summary>
  3846. <param name="handle">The handle of the file to send.</param>
  3847. <param name=" offset">The starting position in the file.</param>
  3848. <param name=" length">The number of bytes to send.</param>
  3849. </member>
  3850. <member name="M:System.Web.HttpWorkerRequest.FlushResponse(System.Boolean)">
  3851. <summary>
  3852. <para>Sends all pending response data to the client.</para>
  3853. </summary>
  3854. <param name="finalFlush">
  3855. <see langword="true" /> if this is the last time response data will be flushed; otherwise, <see langword="false" /> . </param>
  3856. </member>
  3857. <member name="M:System.Web.HttpWorkerRequest.EndOfRequest">
  3858. <summary>
  3859. <para>Used by the runtime to notify the <see cref="T:System.Web.HttpWorkerRequest" />
  3860. that request processing for the current request is complete.</para>
  3861. </summary>
  3862. </member>
  3863. <member name="M:System.Web.HttpWorkerRequest.SetEndOfSendNotification(System.Web.HttpWorkerRequest.EndOfSendNotification,System.Object)">
  3864. <summary>
  3865. <para> Registers for an optional notification when all
  3866. the response data is sent.</para>
  3867. </summary>
  3868. <param name="callback">The notification callback that is called when all data is sent (out-of-band).</param>
  3869. <param name=" extraData">An additional parameter to the callback.</param>
  3870. </member>
  3871. <member name="M:System.Web.HttpWorkerRequest.SendCalculatedContentLength(System.Int32)">
  3872. <summary>
  3873. <para>Adds a <see langword="Content-Length" /> HTTP
  3874. header to the response.</para>
  3875. </summary>
  3876. <param name="contentLength">The length of the response, in bytes. </param>
  3877. </member>
  3878. <member name="M:System.Web.HttpWorkerRequest.HeadersSent">
  3879. <summary>
  3880. <para>Returns a value indicating whether HTTP response headers
  3881. have been sent to the client for the current request.</para>
  3882. </summary>
  3883. <returns>
  3884. <para>
  3885. <see langword="true" /> if HTTP response headers have been sent to the client;
  3886. otherwise, <see langword="false" />.</para>
  3887. </returns>
  3888. </member>
  3889. <member name="M:System.Web.HttpWorkerRequest.IsClientConnected">
  3890. <summary>
  3891. <para>Returns a value indicating whether the client
  3892. connection is still active.</para>
  3893. </summary>
  3894. <returns>
  3895. <para>
  3896. <see langword="true" /> if the client connection is still active; otherwise,
  3897. <see langword="false" />.</para>
  3898. </returns>
  3899. </member>
  3900. <member name="M:System.Web.HttpWorkerRequest.CloseConnection">
  3901. <summary>
  3902. <para>Terminates the connection with the client.</para>
  3903. </summary>
  3904. </member>
  3905. <member name="M:System.Web.HttpWorkerRequest.HasEntityBody">
  3906. <summary>
  3907. <para>Returns a value indicating whether the
  3908. request contains body data.</para>
  3909. </summary>
  3910. <returns>
  3911. <para>
  3912. <see langword="true" /> if the request contains body data; otherwise,
  3913. <see langword="false" />.</para>
  3914. </returns>
  3915. </member>
  3916. <member name="M:System.Web.HttpWorkerRequest.GetStatusDescription(System.Int32)">
  3917. <summary>
  3918. <para>Returns a string that describes the name of the specified
  3919. HTTP status code.</para>
  3920. </summary>
  3921. <param name="code">The HTTP status code.</param>
  3922. <returns>
  3923. <para>The status description. For example,
  3924. <see langword="GetStatusDescription" /> (404) returns “Not
  3925. Found”.</para>
  3926. </returns>
  3927. </member>
  3928. <member name="M:System.Web.HttpWorkerRequest.GetKnownRequestHeaderIndex(System.String)">
  3929. <summary>
  3930. <para>Returns the index number of the specified HTTP request header.</para>
  3931. </summary>
  3932. <param name="header">The name of the header.</param>
  3933. <returns>
  3934. <para>The index number of the HTTP request
  3935. header specified in the <paramref name="header" /> parameter.</para>
  3936. </returns>
  3937. </member>
  3938. <member name="M:System.Web.HttpWorkerRequest.GetKnownRequestHeaderName(System.Int32)">
  3939. <summary>
  3940. <para>Returns the name of the specified HTTP request header.</para>
  3941. </summary>
  3942. <param name="index">The index number of the header.</param>
  3943. <returns>
  3944. <para>The name of the HTTP request header specified in the
  3945. <paramref name="index" /> parameter.</para>
  3946. </returns>
  3947. </member>
  3948. <member name="M:System.Web.HttpWorkerRequest.GetKnownResponseHeaderIndex(System.String)">
  3949. <summary>
  3950. <para>Returns the index number of the specified HTTP response header.</para>
  3951. </summary>
  3952. <param name="header">The name of the HTTP header.</param>
  3953. <returns>
  3954. <para>The index number of the HTTP response header specified
  3955. in the <paramref name="header" /> parameter.</para>
  3956. </returns>
  3957. </member>
  3958. <member name="M:System.Web.HttpWorkerRequest.GetKnownResponseHeaderName(System.Int32)">
  3959. <summary>
  3960. <para>Returns the name of the specified HTTP response header.</para>
  3961. </summary>
  3962. <param name="index">The index number of the header.</param>
  3963. <returns>
  3964. <para>The name of the HTTP response header specified in
  3965. the <paramref name="index" /> parameter.</para>
  3966. </returns>
  3967. </member>
  3968. <member name="P:System.Web.HttpWorkerRequest.MachineConfigPath">
  3969. <summary>
  3970. <para>Gets the full physical path to the Machine.config file.</para>
  3971. </summary>
  3972. </member>
  3973. <member name="P:System.Web.HttpWorkerRequest.MachineInstallDirectory">
  3974. <summary>
  3975. <para> Gets the physical path to the directory where the
  3976. ASP.NET binaries are installed.</para>
  3977. </summary>
  3978. </member>
  3979. <member name="T:System.Web.Caching.CacheItemRemovedCallback">
  3980. <summary>
  3981. <para> Defines a callback method for notifying
  3982. applications when a cached item is removed from the <see cref="T:System.Web.Caching.Cache" />
  3983. .</para>
  3984. </summary>
  3985. <param name="key">The index location for the item removed from the cache.</param>
  3986. <param name="value">The <see cref="T:System.Object" /> item removed from the cache.</param>
  3987. <param name="reason">The reason the item was removed from the cache, as specified by the <see cref="T:System.Web.Caching.CacheItemRemovedReason" /> enumeration.</param>
  3988. </member>
  3989. <member name="T:System.Web.Caching.CacheItemPriority">
  3990. <summary>
  3991. <para> Specifies the relative priority of items stored in the <see cref="T:System.Web.Caching.Cache" /> .</para>
  3992. </summary>
  3993. </member>
  3994. <member name="F:System.Web.Caching.CacheItemPriority.Low">
  3995. <summary>
  3996. <para> Cache items with this priority level are
  3997. the most likely to be deleted from the cache as the server frees system
  3998. memory.</para>
  3999. </summary>
  4000. </member>
  4001. <member name="F:System.Web.Caching.CacheItemPriority.BelowNormal">
  4002. <summary>
  4003. <para>
  4004. Cache items with this priority level are more likely to
  4005. be deleted from the cache as the server frees system memory than items assigned
  4006. a <see langword="Normal" />
  4007. priority. </para>
  4008. </summary>
  4009. </member>
  4010. <member name="F:System.Web.Caching.CacheItemPriority.Normal">
  4011. <summary>
  4012. <para> Cache items with this priority level are likely to be
  4013. deleted from the cache as the server frees system memory only after those items
  4014. with <see langword="Low" /> or <see langword="BelowNormal" />
  4015. priority. This is the default. </para>
  4016. </summary>
  4017. </member>
  4018. <member name="F:System.Web.Caching.CacheItemPriority.AboveNormal">
  4019. <summary>
  4020. <para> Cache items with this priority level are less likely to
  4021. be deleted as the server frees system memory than those assigned a
  4022. <see langword="Normal" />
  4023. priority. </para>
  4024. </summary>
  4025. </member>
  4026. <member name="F:System.Web.Caching.CacheItemPriority.High">
  4027. <summary>
  4028. <para> Cache items with this priority level are the least likely
  4029. to be deleted from the cache as the server frees system memory. </para>
  4030. </summary>
  4031. </member>
  4032. <member name="F:System.Web.Caching.CacheItemPriority.NotRemovable">
  4033. <summary>
  4034. <para> The cache items with this priority level will not be deleted
  4035. from the cache as the server frees system memory. </para>
  4036. </summary>
  4037. </member>
  4038. <member name="F:System.Web.Caching.CacheItemPriority.Default">
  4039. <summary>
  4040. <para>The default value for a cached item's priority is
  4041. <see langword="Normal" /> .</para>
  4042. </summary>
  4043. </member>
  4044. <member name="T:System.Web.Caching.CacheItemRemovedReason">
  4045. <summary>
  4046. <para> Specifies the reason an item was removed from
  4047. the <see cref="T:System.Web.Caching.Cache" /> .</para>
  4048. </summary>
  4049. </member>
  4050. <member name="F:System.Web.Caching.CacheItemRemovedReason.Removed">
  4051. <summary>
  4052. <para>The item is removed from the cache by a <see cref="M:System.Web.Caching.Cache.Remove(System.String)" /> method call or by an <see cref="M:System.Web.Caching.Cache.Insert(System.String,System.Object)" /> method call that specified the same key.</para>
  4053. </summary>
  4054. </member>
  4055. <member name="F:System.Web.Caching.CacheItemRemovedReason.Expired">
  4056. <summary>
  4057. <para>The item is removed from the cache because it expired. </para>
  4058. </summary>
  4059. </member>
  4060. <member name="F:System.Web.Caching.CacheItemRemovedReason.Underused">
  4061. <summary>
  4062. <para>The item
  4063. is removed from the cache because the system removed it to free memory.</para>
  4064. </summary>
  4065. </member>
  4066. <member name="F:System.Web.Caching.CacheItemRemovedReason.DependencyChanged">
  4067. <summary>
  4068. <para> The item is removed from the cache because a file or key dependency
  4069. changed.</para>
  4070. </summary>
  4071. </member>
  4072. <member name="T:System.Web.Caching.Cache">
  4073. <summary>
  4074. <para>Implements the cache for a Web application. This class cannot be inherited.</para>
  4075. </summary>
  4076. </member>
  4077. <member name="F:System.Web.Caching.Cache.NoAbsoluteExpiration">
  4078. <summary>
  4079. <para> Used in the
  4080. <paramref name="absoluteExpiration" /> parameter in an <see cref="M:System.Web.Caching.Cache.Insert(System.String,System.Object)" /> method call
  4081. to indicate the item should never
  4082. expire. This field is read-only.</para>
  4083. </summary>
  4084. </member>
  4085. <member name="F:System.Web.Caching.Cache.NoSlidingExpiration">
  4086. <summary>
  4087. <para> Used as the <paramref name="slidingExpiration" />
  4088. parameter in an <see cref="M:System.Web.Caching.Cache.Insert(System.String,System.Object)" /> method call
  4089. to disable sliding
  4090. expirations. This field is read-only.</para>
  4091. </summary>
  4092. </member>
  4093. <member name="M:System.Web.Caching.Cache.GetEnumerator">
  4094. <summary>
  4095. <para> Retrieves a dictionary
  4096. enumerator used to iterate through the
  4097. key settings and their values contained in the cache.</para>
  4098. </summary>
  4099. <returns>
  4100. <para>An enumerator to iterate through the <see cref="T:System.Web.Caching.Cache" /> object.</para>
  4101. </returns>
  4102. </member>
  4103. <member name="M:System.Web.Caching.Cache.Get(System.String)">
  4104. <summary>
  4105. <para>Retrieves the specified item from the <see cref="T:System.Web.Caching.Cache" /> object.</para>
  4106. </summary>
  4107. <param name="key">The identifier for the cache item to retrieve.</param>
  4108. <returns>
  4109. <para>The retrieved cache item, or <see langword="null" /> if the key is not found.</para>
  4110. </returns>
  4111. </member>
  4112. <member name="M:System.Web.Caching.Cache.Insert(System.String,System.Object)">
  4113. <summary>
  4114. <para>Inserts an item into the <see cref="T:System.Web.Caching.Cache" /> object with a cache key to reference its
  4115. location and using default values provided by the <see cref="T:System.Web.Caching.CacheItemPriority" />
  4116. enumeration.</para>
  4117. </summary>
  4118. <param name="key">The cache key used to reference the item.</param>
  4119. <param name="value">The object to be inserted into the cache.</param>
  4120. </member>
  4121. <member name="M:System.Web.Caching.Cache.Insert(System.String,System.Object,System.Web.Caching.CacheDependency)">
  4122. <summary>
  4123. <para>Inserts an object into the <see cref="T:System.Web.Caching.Cache" /> that has file or key
  4124. dependencies.</para>
  4125. </summary>
  4126. <param name="key">The cache key used to identify the item.</param>
  4127. <param name="value">The object to be inserted in the cache.</param>
  4128. <param name="dependencies">The file or cache key dependencies for the inserted object. When any dependency changes, the object becomes invalid and is removed from the cache. If there are no dependencies, this parameter contains <see langword="null" /> .</param>
  4129. </member>
  4130. <member name="M:System.Web.Caching.Cache.Insert(System.String,System.Object,System.Web.Caching.CacheDependency,System.DateTime,System.TimeSpan)">
  4131. <summary>
  4132. <para>Inserts an object into the <see cref="T:System.Web.Caching.Cache" />
  4133. with dependencies and expiration policies. </para>
  4134. </summary>
  4135. <param name="key">The cache key used to reference the object.</param>
  4136. <param name="value">The object to be inserted in the cache.</param>
  4137. <param name="dependencies">The file or cache key dependencies for the inserted object. When any dependency changes, the object becomes invalid and is removed from the cache. If there are no dependencies, this parameter contains <see langword="null" /> . </param>
  4138. <param name="absoluteExpiration">The time at which the inserted object expires and is removed from the cache.</param>
  4139. <param name="slidingExpiration">The interval between the time the inserted object is last accessed and when that object expires. If this value is the equivalent of 20 minutes, the object will expire and be removed from the cache 20 minutes after it was last accessed.</param>
  4140. </member>
  4141. <member name="M:System.Web.Caching.Cache.Insert(System.String,System.Object,System.Web.Caching.CacheDependency,System.DateTime,System.TimeSpan,System.Web.Caching.CacheItemPriority,System.Web.Caching.CacheItemRemovedCallback)">
  4142. <summary>
  4143. <para>Inserts an object into the <see cref="T:System.Web.Caching.Cache" /> object with dependencies,
  4144. expiration and priority policies, and a delegate you can
  4145. use to notify your application when the inserted item is removed from
  4146. the <see langword="Cache" />
  4147. . </para>
  4148. </summary>
  4149. <param name="key">The cache key used to reference the object.</param>
  4150. <param name="value">The object to be inserted in the cache.</param>
  4151. <param name="dependencies">The file or cache key dependencies for the item. When any dependency changes, the object becomes invalid and is removed from the cache. If there are no dependencies, this parameter contains <see langword="null" /> . </param>
  4152. <param name="absoluteExpiration">The time at which the inserted object expires and is removed from the cache.</param>
  4153. <param name="slidingExpiration">The interval between the time the inserted object was last accessed and when that object expires. If this value is the equivalent of 20 minutes, the object will expire and be removed from the cache 20 minutes after it was last accessed.</param>
  4154. <param name="priority">The cost of the object relative to other items stored in the cache, as expressed by the <see cref="T:System.Web.Caching.CacheItemPriority" /> enumeration. This value is used by the cache when it evicts objects; objects with a lower cost are removed from the cache before objects with a higher cost.</param>
  4155. <param name="onRemoveCallback">A delegate that, if provided, will be called when an object is removed from the cache. You can use this to notify applications when their objects are deleted from the cache.</param>
  4156. </member>
  4157. <member name="M:System.Web.Caching.Cache.Add(System.String,System.Object,System.Web.Caching.CacheDependency,System.DateTime,System.TimeSpan,System.Web.Caching.CacheItemPriority,System.Web.Caching.CacheItemRemovedCallback)">
  4158. <summary>
  4159. <para>Adds the specified item to the <see cref="T:System.Web.Caching.Cache" /> object with dependencies, expiration
  4160. and priority policies, and a delegate you can use to notify your application
  4161. when the inserted item is removed from the <see langword="Cache" />
  4162. . </para>
  4163. </summary>
  4164. <param name="key">The cache key used to reference the item.</param>
  4165. <param name=" value">The item to be added to the cache.</param>
  4166. <param name=" dependencies">The file or cache key dependencies for the item. When any dependency changes, the object becomes invalid and is removed from the cache. If there are no dependencies, this paramter contains <see langword="null" /> .</param>
  4167. <param name=" absoluteExpiration">The time at which the added object expires and is removed from the cache.</param>
  4168. <param name=" slidingExpiration">The interval between the time the added object was last accessed and when that object expires. If this value is the equivalent of 20 minutes, the object expires and is removed from the cache 20 minutes after it is last accessed.</param>
  4169. <param name=" priority">The relative cost of the object, as expressed by the <see cref="T:System.Web.Caching.CacheItemPriority" /> enumeration. The cache uses this value when it evicts objects; objects with a lower cost are removed from the cache before objects with a higher cost.</param>
  4170. <param name=" onRemoveCallback">A delegate that, if provided, is called when an object is removed from the cache. You can use this to notify applications when their objects are deleted from the cache.</param>
  4171. <returns>
  4172. <para>The <see cref="T:System.Object" /> item added to the <see langword="Cache" /> .</para>
  4173. </returns>
  4174. </member>
  4175. <member name="M:System.Web.Caching.Cache.Remove(System.String)">
  4176. <summary>
  4177. <para>Removes the specified item from the
  4178. application's <see cref="T:System.Web.Caching.Cache" /> object. </para>
  4179. </summary>
  4180. <param name="key">A <see cref="T:System.String" /> identifier for the cache item to remove.</param>
  4181. <returns>
  4182. <para> The item removed from the <see langword="Cache" /> . If the value in the key parameter is not found,
  4183. returns <see langword="null" />.</para>
  4184. </returns>
  4185. </member>
  4186. <member name="P:System.Web.Caching.Cache.Count">
  4187. <summary>
  4188. <para> Gets the number of items stored in the
  4189. cache.</para>
  4190. </summary>
  4191. </member>
  4192. <member name="P:System.Web.Caching.Cache.Item(System.String)">
  4193. <summary>
  4194. <para> Gets or sets the cache item at the specified key.</para>
  4195. </summary>
  4196. <param name="key">A <see cref="T:System.String" /> object that represents the key for the cache item.</param>
  4197. </member>
  4198. <member name="T:System.Web.Caching.CacheDependency">
  4199. <summary>
  4200. <para>Tracks cache dependencies, which can be files, directories,
  4201. or keys to other objects in your application's <see cref="T:System.Web.Caching.Cache" /> . This class cannot be inherited.</para>
  4202. </summary>
  4203. </member>
  4204. <member name="M:System.Web.Caching.CacheDependency.#ctor(System.String)">
  4205. <summary>
  4206. <para>Initializes a new instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class that
  4207. monitors a file or directory for changes.</para>
  4208. </summary>
  4209. <param name="filename">The path to a file or directory that the cached object is dependent upon. When this resource changes, the cached object becomes obsolete and is removed from the cache.</param>
  4210. </member>
  4211. <member name="M:System.Web.Caching.CacheDependency.#ctor(System.String,System.DateTime)">
  4212. <summary>
  4213. <para>Initializes a new instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class that monitors a file or directory for
  4214. changes and indicates when change tracking is to begin.</para>
  4215. </summary>
  4216. <param name="filename">The path to a file or directory that the cached object is dependent upon. When this resource changes, the cached object becomes obsolete and is removed from the cache.</param>
  4217. <param name=" start">The time when change tracking begins.</param>
  4218. </member>
  4219. <member name="M:System.Web.Caching.CacheDependency.#ctor(System.String[])">
  4220. <summary>
  4221. <para>Initializes a new instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class that monitors an array of file paths (to files or
  4222. directories) for
  4223. changes.</para>
  4224. </summary>
  4225. <param name="filenames">An array of file paths (to files or directories) that the cached object is dependent upon. When any of these resources change, the cached object becomes obsolete and is removed from the cache.</param>
  4226. </member>
  4227. <member name="M:System.Web.Caching.CacheDependency.#ctor(System.String[],System.DateTime)">
  4228. <summary>
  4229. <para>Initializes a new instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class that monitors an array of file paths
  4230. (to files or directories) for changes and specifies a time when change
  4231. monitoring begins.</para>
  4232. </summary>
  4233. <param name="filenames">An array of file paths (to files or directories) that the cached object is dependent upon. When any of these resources change, the cached object becomes obsolete and is removed from the cache.</param>
  4234. <param name=" start">The time when change tracking begins.</param>
  4235. </member>
  4236. <member name="M:System.Web.Caching.CacheDependency.#ctor(System.String[],System.String[])">
  4237. <summary>
  4238. <para>Initializes a new instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class that monitors an array of file paths (to files or directories), an
  4239. array of cache keys, or both for changes.</para>
  4240. </summary>
  4241. <param name="filenames">An array of file paths (to files or directories) that the cached object is dependent upon. When any of these resources change, the cached object becomes obsolete and is removed from the cache. </param>
  4242. <param name=" cachekeys">An array of cache keys that the new object monitors for changes. When any of these cache keys change, the cached object associated with this dependency object becomes obsolete and is removed from the cache.</param>
  4243. </member>
  4244. <member name="M:System.Web.Caching.CacheDependency.#ctor(System.String[],System.String[],System.DateTime)">
  4245. <summary>
  4246. <para>Initializes a new instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class that monitors an array of file paths
  4247. (to files or directories), an array of cache keys, or both for changes.</para>
  4248. </summary>
  4249. <param name="filenames">An array of file paths (to files or directories) that the cached object is dependent upon. When any of these resources change, the cached object becomes obsolete and is removed from the cache. </param>
  4250. <param name=" cachekeys">An array of cache keys that the new object monitors for changes. When any of these cache keys change, the cached object associated with this dependency object becomes obsolete and is removed from the cache.</param>
  4251. <param name=" start">The time when change tracking begins.</param>
  4252. </member>
  4253. <member name="M:System.Web.Caching.CacheDependency.#ctor(System.String[],System.String[],System.Web.Caching.CacheDependency)">
  4254. <summary>
  4255. <para>Initializes a new instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class that monitors an array of file paths
  4256. (to files or directories), an array of cache keys, or both for changes. It also
  4257. makes itself dependent upon a separate instance of the
  4258. <see langword="CacheDependency" /> class.</para>
  4259. </summary>
  4260. <param name="filenames">An array of file paths (to files or directories) that the cached object is dependent upon. When any of these resources change, the cached object becomes obsolete and is removed from the cache.</param>
  4261. <param name=" cachekeys">An array of cache keys that the new object monitors for changes. When any of these cache keys change, the cached object associated with this dependency object becomes obsolete and is removed from the cache.</param>
  4262. <param name=" dependency">Another instance of the <see langword="CacheDependency" /> class that this instance is dependent upon.</param>
  4263. </member>
  4264. <member name="M:System.Web.Caching.CacheDependency.#ctor(System.String[],System.String[],System.Web.Caching.CacheDependency,System.DateTime)">
  4265. <summary>
  4266. <para>Initializes a new instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class that monitors an array of file paths
  4267. (to files or directories), an array of cache keys, or both for changes. It also
  4268. makes itself dependent upon another instance of the
  4269. <see langword="CacheDependency" /> class and a time when the change monitoring begins.</para>
  4270. </summary>
  4271. <param name="filenames">An array of file paths (to files or directories) that the cached object is dependent upon. When any of these resources change, the cached object becomes obsolete and is removed from the cache.</param>
  4272. <param name=" cachekeys">An array of cache keys that the new object monitors for changes. When any of these cache keys change, the cached object associated with this dependency object becomes obsolete and is removed from the cache.</param>
  4273. <param name=" dependency">Another instance of the <see langword="CacheDependency" /> class that this instance is dependent upon.</param>
  4274. <param name=" start">The time when change tracking begins.</param>
  4275. </member>
  4276. <member name="M:System.Web.Caching.CacheDependency.Dispose">
  4277. <summary>
  4278. <para>Releases the resources used by the <see cref="T:System.Web.Caching.CacheDependency" /> object.</para>
  4279. </summary>
  4280. </member>
  4281. <member name="P:System.Web.Caching.CacheDependency.HasChanged">
  4282. <summary>
  4283. <para>Gets a value indicating whether the <see cref="T:System.Web.Caching.CacheDependency" /> object has changed.</para>
  4284. </summary>
  4285. </member>
  4286. <member name="T:System.Web.Configuration.AuthenticationMode">
  4287. <summary>
  4288. <para> Provides enumerated values that specify the
  4289. authentication mode
  4290. for an application.</para>
  4291. </summary>
  4292. </member>
  4293. <member name="F:System.Web.Configuration.AuthenticationMode.None">
  4294. <summary>
  4295. <para>Specifies no authentication. Only anonymous users are
  4296. expected. Also, applications can handle events to provide their own authentication.</para>
  4297. </summary>
  4298. </member>
  4299. <member name="F:System.Web.Configuration.AuthenticationMode.Windows">
  4300. <summary>
  4301. <para> Specifies Windows authentication as
  4302. the
  4303. default authentication mode. Use this mode when using any form of
  4304. Internet Information Services (IIS) authentication: Basic, Digest, Integrated Windows
  4305. (NTLM/Kerberos), or certificates.</para>
  4306. </summary>
  4307. </member>
  4308. <member name="F:System.Web.Configuration.AuthenticationMode.Passport">
  4309. <summary>
  4310. <para>Specifies Microsoft Passport authentication as the
  4311. default authentication
  4312. mode.</para>
  4313. </summary>
  4314. </member>
  4315. <member name="F:System.Web.Configuration.AuthenticationMode.Forms">
  4316. <summary>
  4317. <para> Specifies ASP.NET forms-based authentication as
  4318. the default authentication
  4319. mode.</para>
  4320. </summary>
  4321. </member>
  4322. <member name="T:System.Web.Configuration.FormsAuthPasswordFormat">
  4323. <summary>
  4324. <para> Specifies the encryption format for storing passwords.</para>
  4325. </summary>
  4326. </member>
  4327. <member name="F:System.Web.Configuration.FormsAuthPasswordFormat.Clear">
  4328. <summary>
  4329. <para>Specifies that passwords are not encrypted.</para>
  4330. </summary>
  4331. </member>
  4332. <member name="F:System.Web.Configuration.FormsAuthPasswordFormat.SHA1">
  4333. <summary>
  4334. <para>Specifies that passwords are encrypted using the SHA1 hash algorithm.</para>
  4335. </summary>
  4336. </member>
  4337. <member name="F:System.Web.Configuration.FormsAuthPasswordFormat.MD5">
  4338. <summary>
  4339. <para>Specifies that passwords are encrypted using the MD5 hash algorithm.</para>
  4340. </summary>
  4341. </member>
  4342. <member name="T:System.Web.Configuration.FormsProtectionEnum">
  4343. <summary>
  4344. <para> Specifies the forms protection method that
  4345. the application uses.</para>
  4346. </summary>
  4347. </member>
  4348. <member name="F:System.Web.Configuration.FormsProtectionEnum.All">
  4349. <summary>
  4350. <para> Specifies that the application uses both data validation and encryption
  4351. to protect cookies. This option uses the configured data validation algorithm (based
  4352. on the &lt;machineKey&gt; element). Triple-DES (3DES) is used
  4353. for encryption, if it is available and if the key is at least 48 bytes
  4354. longs. <see langword="All" />
  4355. is the default (and recommended) value.</para>
  4356. </summary>
  4357. </member>
  4358. <member name="F:System.Web.Configuration.FormsProtectionEnum.None">
  4359. <summary>
  4360. <para> Specifies that both encryption and validation are
  4361. disabled for sites that use cookies only for personalization and have weaker
  4362. security requirements. Using cookies in this manner is not recommended; however,
  4363. it is the least resource-intensive way to enable personalization using the .NET Framework.</para>
  4364. </summary>
  4365. </member>
  4366. <member name="F:System.Web.Configuration.FormsProtectionEnum.Encryption">
  4367. <summary>
  4368. <para> Specifies that cookies are
  4369. encrypted using Triple-DES or DES, but data validation is not performed on cookies. Cookies used this
  4370. way might be subject to chosen plain-text security attacks.</para>
  4371. </summary>
  4372. </member>
  4373. <member name="F:System.Web.Configuration.FormsProtectionEnum.Validation">
  4374. <summary>
  4375. <para>Specifies that the application uses a validation scheme
  4376. to verify that the contents of an encrypted cookie have not been altered in
  4377. transit. The cookie is created by concatenating a validation key with the
  4378. cookie data, computing a Message Authentication Code (MAC), and appending the
  4379. MAC to the outgoing cookie.</para>
  4380. </summary>
  4381. </member>
  4382. <member name="T:System.Web.Configuration.HttpConfigurationContext">
  4383. <summary>
  4384. <para> Supplies current context information to configuration section handlers
  4385. in ASP.NET applications.
  4386. </para>
  4387. </summary>
  4388. </member>
  4389. <member name="P:System.Web.Configuration.HttpConfigurationContext.VirtualPath">
  4390. <summary>
  4391. <para>Gets the virtual path to the Web.config configuration file.</para>
  4392. </summary>
  4393. </member>
  4394. <member name="M:System.Web.Hosting.IAppDomainFactory.Create(System.String,System.String,System.String,System.String,System.String,System.Int32)">
  4395. <summary>
  4396. <para>[To be supplied.]</para>
  4397. </summary>
  4398. </member>
  4399. <member name="M:System.Web.Hosting.AppDomainFactory.Create(System.String,System.String,System.String,System.String,System.String,System.Int32)">
  4400. <summary>
  4401. <para>[To be supplied.]</para>
  4402. </summary>
  4403. </member>
  4404. <member name="T:System.Web.Hosting.ApplicationHost">
  4405. <summary>
  4406. <para> Enables hosting of ASP.NET pages outside
  4407. the Internet Information Services (IIS) application. This class
  4408. enables the host to create application domains for processing ASP.NET requests.</para>
  4409. </summary>
  4410. </member>
  4411. <member name="M:System.Web.Hosting.ApplicationHost.CreateApplicationHost(System.Type,System.String,System.String)">
  4412. <summary>
  4413. <para>Creates and configures an application domain for hosting
  4414. ASP.NET.</para>
  4415. </summary>
  4416. <param name="hostType">The name of a user-supplied class to be created in the new application domain.</param>
  4417. <param name=" virtualDir">The virtual directory for the application domain; for example, /myapp.</param>
  4418. <param name=" physicalDir">The physical directory for the application domain where ASP.NET pages are located; for example, c:\mypages.</param>
  4419. <returns>
  4420. <para>An instance of a user-suplied class used to marshal calls into the newly created
  4421. application domain.</para>
  4422. </returns>
  4423. </member>
  4424. <member name="M:System.Web.Hosting.IISAPIRuntime.StartProcessing">
  4425. <summary>
  4426. <para>[To be supplied.]</para>
  4427. </summary>
  4428. </member>
  4429. <member name="M:System.Web.Hosting.IISAPIRuntime.StopProcessing">
  4430. <summary>
  4431. <para>[To be supplied.]</para>
  4432. </summary>
  4433. </member>
  4434. <member name="M:System.Web.Hosting.IISAPIRuntime.ProcessRequest(System.IntPtr,System.Int32)">
  4435. <summary>
  4436. <para>[To be supplied.]</para>
  4437. </summary>
  4438. </member>
  4439. <member name="M:System.Web.Hosting.IISAPIRuntime.DoGCCollect">
  4440. <summary>
  4441. <para>[To be supplied.]</para>
  4442. </summary>
  4443. </member>
  4444. <member name="M:System.Web.Hosting.ISAPIRuntime.StartProcessing">
  4445. <summary>
  4446. <para>[To be supplied.]</para>
  4447. </summary>
  4448. </member>
  4449. <member name="M:System.Web.Hosting.ISAPIRuntime.StopProcessing">
  4450. <summary>
  4451. <para>[To be supplied.]</para>
  4452. </summary>
  4453. </member>
  4454. <member name="M:System.Web.Hosting.ISAPIRuntime.ProcessRequest(System.IntPtr,System.Int32)">
  4455. <summary>
  4456. <para>[To be supplied.]</para>
  4457. </summary>
  4458. </member>
  4459. <member name="M:System.Web.Hosting.ISAPIRuntime.DoGCCollect">
  4460. <summary>
  4461. <para>[To be supplied.]</para>
  4462. </summary>
  4463. </member>
  4464. <member name="T:System.Web.Hosting.SimpleWorkerRequest">
  4465. <summary>
  4466. <para>Provides a simple implementation of the <see cref="T:System.Web.HttpWorkerRequest" /><see langword=" " /> abstract class that can
  4467. be used to host ASP.NET applications outside an Internet Information Server (IIS)
  4468. application. You can employ <see langword="SimpleWorkerRequest" /> directly or extend it.</para>
  4469. </summary>
  4470. </member>
  4471. <member name="M:System.Web.Hosting.SimpleWorkerRequest.GetUriPath">
  4472. <summary>
  4473. <para>Returns the virtual path to the requested URI.</para>
  4474. </summary>
  4475. <returns>
  4476. <para>The path to the requested URI.</para>
  4477. </returns>
  4478. </member>
  4479. <member name="M:System.Web.Hosting.SimpleWorkerRequest.GetQueryString">
  4480. <summary>
  4481. <para>Returns the query string specified in the request URL.</para>
  4482. </summary>
  4483. <returns>
  4484. <para>The request query string.</para>
  4485. </returns>
  4486. </member>
  4487. <member name="M:System.Web.Hosting.SimpleWorkerRequest.GetRawUrl">
  4488. <summary>
  4489. <para>Returns the URL path contained in the request header
  4490. with the query string appended.</para>
  4491. </summary>
  4492. <returns>
  4493. <para>The raw URL path of the request header.</para>
  4494. </returns>
  4495. </member>
  4496. <member name="M:System.Web.Hosting.SimpleWorkerRequest.GetHttpVerbName">
  4497. <summary>
  4498. <para>Returns the specified member of the request header.</para>
  4499. </summary>
  4500. <returns>
  4501. The HTTP verb returned in the request
  4502. header.
  4503. </returns>
  4504. </member>
  4505. <member name="M:System.Web.Hosting.SimpleWorkerRequest.GetHttpVersion">
  4506. <summary>
  4507. <para> Returns the HTTP version of the request (for
  4508. example, "HTTP/1.1").</para>
  4509. </summary>
  4510. <returns>
  4511. <para>The HTTP version number returned in the request header.</para>
  4512. </returns>
  4513. </member>
  4514. <member name="M:System.Web.Hosting.SimpleWorkerRequest.GetRemoteAddress">
  4515. <summary>
  4516. <para>Returns the IP address of the client.</para>
  4517. </summary>
  4518. <returns>
  4519. <para>The client's IP address.</para>
  4520. </returns>
  4521. </member>
  4522. <member name="M:System.Web.Hosting.SimpleWorkerRequest.GetRemotePort">
  4523. <summary>
  4524. <para>Returns the client's port number.</para>
  4525. </summary>
  4526. <returns>
  4527. <para>The client's HTTP port number.</para>
  4528. </returns>
  4529. </member>
  4530. <member name="M:System.Web.Hosting.SimpleWorkerRequest.GetLocalAddress">
  4531. <summary>
  4532. <para>Returns the server IP address that is in the request header.</para>
  4533. </summary>
  4534. <returns>
  4535. <para>The server IP address returned in the request header.</para>
  4536. </returns>
  4537. </member>
  4538. <member name="M:System.Web.Hosting.SimpleWorkerRequest.GetLocalPort">
  4539. <summary>
  4540. <para>Provides access to the specified member of the request header.</para>
  4541. </summary>
  4542. <returns>
  4543. <para>The server port number returned in the request header.</para>
  4544. </returns>
  4545. </member>
  4546. <member name="M:System.Web.Hosting.SimpleWorkerRequest.GetUserToken">
  4547. <summary>
  4548. <para>Returns the client's impersonation token.</para>
  4549. </summary>
  4550. <returns>
  4551. <para>A value representing the client's impersonation token.
  4552. The default is <see cref="F:System.IntPtr.Zero" />
  4553. .</para>
  4554. </returns>
  4555. </member>
  4556. <member name="M:System.Web.Hosting.SimpleWorkerRequest.GetFilePath">
  4557. <summary>
  4558. <para>Returns the physical path to the requested URI.</para>
  4559. </summary>
  4560. <returns>
  4561. <para>The physical path to the requested URI.</para>
  4562. </returns>
  4563. </member>
  4564. <member name="M:System.Web.Hosting.SimpleWorkerRequest.GetFilePathTranslated">
  4565. <summary>
  4566. <para>Returns the physical file path to the requested URI (and
  4567. translates it from virtual path to physical path: for example,
  4568. "/proj1/page.aspx" to "c:\dir\page.aspx")</para>
  4569. </summary>
  4570. <returns>
  4571. <para>The translated physical file path to the requested URI.</para>
  4572. </returns>
  4573. </member>
  4574. <member name="M:System.Web.Hosting.SimpleWorkerRequest.GetPathInfo">
  4575. <summary>
  4576. <para> Returns additional path information for a resource with
  4577. a URL extension. That is, for the path /virdir/page.html/tail, the return
  4578. value is /tail.</para>
  4579. </summary>
  4580. <returns>
  4581. <para>Additional path information for a resource.</para>
  4582. </returns>
  4583. </member>
  4584. <member name="M:System.Web.Hosting.SimpleWorkerRequest.GetAppPath">
  4585. <summary>
  4586. <para>Returns the virtual path to the currently executing
  4587. server application.</para>
  4588. </summary>
  4589. <returns>
  4590. <para>The virtual path of the current application.</para>
  4591. </returns>
  4592. </member>
  4593. <member name="M:System.Web.Hosting.SimpleWorkerRequest.GetAppPathTranslated">
  4594. <summary>
  4595. <para>Returns the UNC-translated path to the currently
  4596. executing server application.</para>
  4597. </summary>
  4598. <returns>
  4599. <para>The physical path of the current application.</para>
  4600. </returns>
  4601. </member>
  4602. <member name="M:System.Web.Hosting.SimpleWorkerRequest.GetServerVariable(System.String)">
  4603. <summary>
  4604. <para>Returns a single server variable from a dictionary of
  4605. server variables associated with the request.</para>
  4606. </summary>
  4607. <param name="name">The name of the requested server variable.</param>
  4608. <returns>
  4609. <para>The requested server variable.</para>
  4610. </returns>
  4611. </member>
  4612. <member name="M:System.Web.Hosting.SimpleWorkerRequest.MapPath(System.String)">
  4613. <summary>
  4614. <para>Returns the physical path corresponding to the specified virtual path.</para>
  4615. </summary>
  4616. <param name="path">The virtual path.</param>
  4617. <returns>
  4618. <para>The physical path that corresponds to the virtual path
  4619. specified in the <paramref name="path " />
  4620. parameter.</para>
  4621. </returns>
  4622. </member>
  4623. <member name="M:System.Web.Hosting.SimpleWorkerRequest.SendStatus(System.Int32,System.String)">
  4624. <summary>
  4625. <para>Specifies the HTTP status code and status description of
  4626. the response; for example, SendStatus(200, "Ok").</para>
  4627. </summary>
  4628. <param name="statusCode">The status code to send</param>
  4629. <param name=" statusDescription">The status description to send.</param>
  4630. </member>
  4631. <member name="M:System.Web.Hosting.SimpleWorkerRequest.SendKnownResponseHeader(System.Int32,System.String)">
  4632. <summary>
  4633. <para>Adds a standard HTTP header to the response.</para>
  4634. </summary>
  4635. <param name="index">The header index. For example, <see cref="F:System.Web.HttpWorkerRequest.HeaderContentLength" />.</param>
  4636. <param name=" value">The header value.</param>
  4637. </member>
  4638. <member name="M:System.Web.Hosting.SimpleWorkerRequest.SendUnknownResponseHeader(System.String,System.String)">
  4639. <summary>
  4640. <para>Adds a nonstandard HTTP header to the response.</para>
  4641. </summary>
  4642. <param name="name">The name of the header to send.</param>
  4643. <param name=" value">The value of the header.</param>
  4644. </member>
  4645. <member name="M:System.Web.Hosting.SimpleWorkerRequest.SendResponseFromMemory(System.Byte[],System.Int32)">
  4646. <summary>
  4647. <para>Adds the contents of a byte array to the response
  4648. and specifies the number of bytes to send.</para>
  4649. </summary>
  4650. <param name="data">The byte array to send.</param>
  4651. <param name=" length">The number of bytes to send.</param>
  4652. </member>
  4653. <member name="M:System.Web.Hosting.SimpleWorkerRequest.SendResponseFromFile(System.String,System.Int64,System.Int64)">
  4654. <summary>
  4655. <para> Adds the contents of the file with the specified name to the response and
  4656. specifies the starting position in the file and the number of bytes to send.</para>
  4657. </summary>
  4658. <param name="filename">The name of the file to send.</param>
  4659. <param name=" offset">The starting position in the file.</param>
  4660. <param name=" length">The number of bytes to send.</param>
  4661. </member>
  4662. <member name="M:System.Web.Hosting.SimpleWorkerRequest.SendResponseFromFile(System.IntPtr,System.Int64,System.Int64)">
  4663. <summary>
  4664. <para>Adds the contents of the file with the specified handle to the response and
  4665. specifies the starting position in the file and the number of bytes to send.</para>
  4666. </summary>
  4667. <param name="handle">The handle of the file to send.</param>
  4668. <param name=" offset">The starting position in the file.</param>
  4669. <param name=" length">The number of bytes to send.</param>
  4670. </member>
  4671. <member name="M:System.Web.Hosting.SimpleWorkerRequest.FlushResponse(System.Boolean)">
  4672. <summary>
  4673. <para>Sends all pending response data to the client.</para>
  4674. </summary>
  4675. <param name="finalFlush">
  4676. <see langword="true" /> if this is the last time response data will be flushed; otherwise, <see langword="false" />.</param>
  4677. </member>
  4678. <member name="M:System.Web.Hosting.SimpleWorkerRequest.EndOfRequest">
  4679. <summary>
  4680. <para> Notifies the <see cref="T:System.Web.HttpWorkerRequest" />
  4681. that request processing for the current request is complete.</para>
  4682. </summary>
  4683. </member>
  4684. <member name="M:System.Web.Hosting.SimpleWorkerRequest.#ctor(System.String,System.String,System.IO.TextWriter)">
  4685. <summary>
  4686. <para>Initializes a new instance of the <see cref="T:System.Web.Hosting.SimpleWorkerRequest" /> class when the target application
  4687. domain has been created using the <see cref="M:System.Web.Hosting.ApplicationHost.CreateApplicationHost(System.Type,System.String,System.String)" />
  4688. method.</para>
  4689. </summary>
  4690. <param name="page"> The page to be requested (or the virtual path to the page, relative to the application directory).</param>
  4691. <param name=" query"> The text of the query string.</param>
  4692. <param name=" output">A <see cref="T:System.IO.TextWriter" /> that captures output from the response</param>
  4693. </member>
  4694. <member name="M:System.Web.Hosting.SimpleWorkerRequest.#ctor(System.String,System.String,System.String,System.String,System.IO.TextWriter)">
  4695. <summary>
  4696. <para>Initializes a new instance of the <see cref="T:System.Web.Hosting.SimpleWorkerRequest" /> class for use in an arbitrary application domain, when the
  4697. user code creates an <see cref="T:System.Web.HttpContext" /> (passing the <see langword="SimpleWorkerRequest" /> as
  4698. an argument to the <see langword="HttpContext" /> constructor)</para>
  4699. </summary>
  4700. <param name="appVirtualDir">The virtual path to the application directory; for example, “/app”.</param>
  4701. <param name=" appPhysicalDir">The physical path to the application directory; for example, "c:\app".</param>
  4702. <param name=" page">The virtual path for the request (relative to the application directory).</param>
  4703. <param name=" query">The text of the query string.</param>
  4704. <param name=" output">A <see cref="T:System.IO.TextWriter" /> that captures the output from the response.</param>
  4705. </member>
  4706. <member name="P:System.Web.Hosting.SimpleWorkerRequest.MachineConfigPath">
  4707. <summary>
  4708. <para>Gets the full physical path to the Machine.config file.</para>
  4709. </summary>
  4710. </member>
  4711. <member name="P:System.Web.Hosting.SimpleWorkerRequest.MachineInstallDirectory">
  4712. <summary>
  4713. <para>Gets the physical path to the directory where the ASP.NET
  4714. binaries are installed.</para>
  4715. </summary>
  4716. </member>
  4717. <member name="P:System.Web.Handlers.BatchHandler.IsReusable">
  4718. <summary>
  4719. <para>[To be supplied.]</para>
  4720. </summary>
  4721. </member>
  4722. <member name="T:System.Web.Security.DefaultAuthenticationModule">
  4723. <summary>
  4724. <para>Insures that an <see langword="Authentication" /> object is present in
  4725. the context. This class cannot be inherited.</para>
  4726. </summary>
  4727. </member>
  4728. <member name="M:System.Web.Security.DefaultAuthenticationModule.Dispose">
  4729. <summary>
  4730. <para> Called by the HTTP runtime to Dispose of the module
  4731. (derived from <see langword="IHttpModule" /> ).</para>
  4732. </summary>
  4733. </member>
  4734. <member name="M:System.Web.Security.DefaultAuthenticationModule.Init(System.Web.HttpApplication)">
  4735. <summary>
  4736. <para>Initializes the module.</para>
  4737. </summary>
  4738. <param name="app">The <see langword="HTTP application" /> .</param>
  4739. </member>
  4740. <member name="E:System.Web.Security.DefaultAuthenticationModule.Authenticate">
  4741. <summary>
  4742. <para>Defines the event raised by the <see cref="T:System.Web.Security.DefaultAuthenticationModule" /> . Used by the
  4743. DefaultAuthentication_OnAuthenticate
  4744. handler, if one exists.</para>
  4745. </summary>
  4746. </member>
  4747. <member name="T:System.Web.Security.FileAuthorizationModule">
  4748. <summary>
  4749. <para> Verifies that the remote user has NT permissions to access the file requested. This class cannot
  4750. be inherited.
  4751. </para>
  4752. </summary>
  4753. </member>
  4754. <member name="M:System.Web.Security.FileAuthorizationModule.Init(System.Web.HttpApplication)">
  4755. <summary>
  4756. <para>Initializes the module.</para>
  4757. </summary>
  4758. <param name="app">The <see langword="HttpApplication" /> module.</param>
  4759. </member>
  4760. <member name="M:System.Web.Security.FileAuthorizationModule.Dispose">
  4761. <summary>
  4762. <para>Disposes of the module derived from
  4763. <see langword="IHttpModule" /> when called by the
  4764. <see langword="HttpRuntime" />
  4765. .</para>
  4766. </summary>
  4767. </member>
  4768. <member name="T:System.Web.Security.FormsAuthenticationEventArgs">
  4769. <summary>
  4770. <para>Provides data for the <c>FormsAuthentication_OnAuthenticate</c> event. This
  4771. class cannot be inherited.</para>
  4772. </summary>
  4773. </member>
  4774. <member name="M:System.Web.Security.FormsAuthenticationEventArgs.#ctor(System.Web.HttpContext)">
  4775. <summary>
  4776. <para>Initializes a new instance of the <see cref="T:System.Web.Security.FormsAuthenticationEventArgs" />class.</para>
  4777. </summary>
  4778. <param name="context">The context for the event.</param>
  4779. </member>
  4780. <member name="P:System.Web.Security.FormsAuthenticationEventArgs.User">
  4781. <summary>
  4782. <para>Gets or sets the <see cref="T:System.Security.Principal.IPrincipal" /> object to be associated with the request. </para>
  4783. </summary>
  4784. </member>
  4785. <member name="P:System.Web.Security.FormsAuthenticationEventArgs.Context">
  4786. <summary>
  4787. <para>Gets the <see cref="T:System.Web.HttpContext" /> object for the current HTTP
  4788. request. </para>
  4789. </summary>
  4790. </member>
  4791. <member name="T:System.Web.Security.FormsAuthenticationEventHandler">
  4792. <summary>
  4793. <para>Represents the method that will handle the <see cref="E:System.Web.Security.FormsAuthenticationModule.Authenticate" /> event of a <see cref="T:System.Web.Security.FormsAuthenticationModule" />
  4794. .</para>
  4795. </summary>
  4796. <param name="sender">The source of the event.</param>
  4797. <param name=" e">A <see cref="T:System.Web.Security.FormsAuthenticationEventArgs" />that contains the event data.</param>
  4798. </member>
  4799. <member name="T:System.Web.Security.FormsAuthenticationModule">
  4800. <summary>
  4801. <para>Enables ASP.NET applications to use forms authentication. This class cannot
  4802. be inherited. </para>
  4803. </summary>
  4804. </member>
  4805. <member name="M:System.Web.Security.FormsAuthenticationModule.Dispose">
  4806. <summary>
  4807. <para>Disposes of the module derived from <see cref="T:System.Web.IHttpModule" /> when
  4808. called by the HttpRuntime .</para>
  4809. </summary>
  4810. </member>
  4811. <member name="M:System.Web.Security.FormsAuthenticationModule.Init(System.Web.HttpApplication)">
  4812. <summary>
  4813. <para>Initializes the module derived from <see cref="T:System.Web.IHttpModule" /> when
  4814. called by the HttpRuntime<see langword="." /></para>
  4815. </summary>
  4816. <param name="app">The <see cref="T:System.Web.HttpApplication" /> module.</param>
  4817. </member>
  4818. <member name="E:System.Web.Security.FormsAuthenticationModule.Authenticate">
  4819. <summary>
  4820. <para>Defines the event raised during authentication. This is
  4821. a Global.asax event that must be named <c>FormsAuthentication_OnAuthenticate</c> .
  4822. You can use this event to
  4823. customize cookie authentication.</para>
  4824. </summary>
  4825. </member>
  4826. <member name="T:System.Web.Security.FormsAuthentication">
  4827. <summary>
  4828. <para> Provides static methods that supply helper utilities for manipulating
  4829. authentication tickets. This class cannot be inherited.</para>
  4830. </summary>
  4831. </member>
  4832. <member name="M:System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(System.String,System.String)">
  4833. <summary>
  4834. <para>Given a password and a string identifying the hash type,
  4835. this routine produces a hash password suitable for storing in a configuration
  4836. file.</para>
  4837. </summary>
  4838. <param name="password">
  4839. <para>The password to hash.</para>
  4840. </param>
  4841. <param name="passwordFormat">
  4842. <para>The hash algorithm to use. Choices are "sha1" or "md5".</para>
  4843. </param>
  4844. <returns>
  4845. <para>Returns a <see langword="String " /> containing a hashed password.</para>
  4846. </returns>
  4847. </member>
  4848. <member name="M:System.Web.Security.FormsAuthentication.Initialize">
  4849. <summary>
  4850. <para>Initializes <see cref="T:System.Web.Security.FormsAuthentication" /> by reading the
  4851. configuration and getting the cookie values and encryption keys for the given
  4852. application.</para>
  4853. </summary>
  4854. </member>
  4855. <member name="M:System.Web.Security.FormsAuthentication.Decrypt(System.String)">
  4856. <summary>
  4857. <para> Returns an instance of a <see cref="T:System.Web.Security.FormsAuthenticationTicket" /> class, given
  4858. an encrypted authentication ticket obtained from an HTTP
  4859. cookie.</para>
  4860. </summary>
  4861. <param name="encryptedTicket">The encrypted authentication ticket.</param>
  4862. <returns>
  4863. <para>Returns a <see cref="T:System.Web.Security.FormsAuthenticationTicket" />
  4864. object.</para>
  4865. </returns>
  4866. </member>
  4867. <member name="M:System.Web.Security.FormsAuthentication.Encrypt(System.Web.Security.FormsAuthenticationTicket)">
  4868. <summary>
  4869. <para>Produces a string containing an encrypted authentication
  4870. ticket suitable for use in an HTTP cookie, given a <see cref="T:System.Web.Security.FormsAuthenticationTicket" />
  4871. .</para>
  4872. </summary>
  4873. <param name="ticket">An authentication ticket class.</param>
  4874. <returns>
  4875. <para> A string containing an
  4876. encrypted authentication ticket.</para>
  4877. </returns>
  4878. </member>
  4879. <member name="M:System.Web.Security.FormsAuthentication.Authenticate(System.String,System.String)">
  4880. <summary>
  4881. <para> Attempts to validate the
  4882. credentials against those contained in the configured credential store, given the
  4883. supplied credentials.</para>
  4884. </summary>
  4885. <param name="name">The user name</param>
  4886. <param name=" password">The user password.</param>
  4887. <returns>
  4888. <para>
  4889. <see langword="true " />if the credentials are
  4890. valid, otherwise returns <see langword="false" />
  4891. .</para>
  4892. </returns>
  4893. </member>
  4894. <member name="M:System.Web.Security.FormsAuthentication.SignOut">
  4895. <summary>
  4896. <para>Removes the authentication ticket.</para>
  4897. </summary>
  4898. </member>
  4899. <member name="M:System.Web.Security.FormsAuthentication.SetAuthCookie(System.String,System.Boolean)">
  4900. <summary>
  4901. <para> Creates an authentication ticket for the given
  4902. <paramref name="userName" /> and <paramref name="createPersistentCookie" />
  4903. and attaches it to the cookie's collection of the outgoing
  4904. response. It does not perform a redirect.</para>
  4905. </summary>
  4906. <param name="userName">The name of an authenticated user. This does not have to map to a Windows account.</param>
  4907. <param name=" createPersistentCookie">Specifies whether or not a durable cookie (one that is saved across browser sessions) should be issued.</param>
  4908. </member>
  4909. <member name="M:System.Web.Security.FormsAuthentication.SetAuthCookie(System.String,System.Boolean,System.String)">
  4910. <summary>
  4911. <para>Creates an authentication ticket for the given <paramref name="userName," /><paramref name="createPersistentCookie," /> and <paramref name="strCookiePath" /> and attaches it
  4912. to the cookie's collection of the outgoing response. It does not perform a
  4913. redirect.</para>
  4914. </summary>
  4915. <param name="userName">The name of an authenticated user. This does not have to map to a Windows account.</param>
  4916. <param name=" createPersistentCookie">Specifies whether or not a durable cookie (one that is saved across browser sessions) should be issued.</param>
  4917. <param name="strCookiePath"> Specifies cookie path.</param>
  4918. </member>
  4919. <member name="M:System.Web.Security.FormsAuthentication.GetAuthCookie(System.String,System.Boolean)">
  4920. <summary>
  4921. <para>Creates an authentication cookie for a given
  4922. user name. This does not set the cookie as part of the outgoing response, so
  4923. that an application can have more control over how the cookie is issued.</para>
  4924. </summary>
  4925. <param name="userName">Name of the authenticated user. This does not have to map to a Windows account.</param>
  4926. <param name=" createPersistentCookie">Specifies whether or not a durable cookie (a cookie that is saved across browser sessions) should be issued. Cookie path defaults to'/'.</param>
  4927. <returns>
  4928. <para>Returns an HTTP cookie.</para>
  4929. </returns>
  4930. </member>
  4931. <member name="M:System.Web.Security.FormsAuthentication.GetAuthCookie(System.String,System.Boolean,System.String)">
  4932. <summary>
  4933. <para>Creates an authentication cookie for a given user name.
  4934. This does not set the cookie as part of the outgoing response, so that an
  4935. application can have more control over how the cookie is issued.</para>
  4936. </summary>
  4937. <param name="userName">Name of the authenticated user. This does not have to map to a Windows account.</param>
  4938. <param name=" createPersistentCookie">Specifies whether or not a durable cookie (a cookie that is saved across browser sessions) should be issued.</param>
  4939. <param name=" strCookiePath">Specifies cookie path.</param>
  4940. <returns>
  4941. <para>Returns an HTTP cookie. </para>
  4942. </returns>
  4943. </member>
  4944. <member name="M:System.Web.Security.FormsAuthentication.GetRedirectUrl(System.String,System.Boolean)">
  4945. <summary>
  4946. <para>Returns the redirect URL for the original
  4947. request that caused the redirect to the logon page.</para>
  4948. </summary>
  4949. <param name="userName">Name of the authenticated user. This does not have to map to a Windows account.</param>
  4950. <param name=" createPersistentCookie">Specifies whether or not a durable cookie (a cookie that is saved across browser sessions) should be issued. Cookie path defaults to'/'.</param>
  4951. <returns>
  4952. <para>A string containing the redirect URL.</para>
  4953. </returns>
  4954. </member>
  4955. <member name="M:System.Web.Security.FormsAuthentication.RedirectFromLoginPage(System.String,System.Boolean)">
  4956. <summary>
  4957. <para> Redirects an
  4958. authenticated user back to the originally requested URL.</para>
  4959. </summary>
  4960. <param name="userName">Name of the user for cookie authentication purposes. This does not need to map to an account name and will be used by URL Authorization.</param>
  4961. <param name=" createPersistentCookie">Specifies whether or not a durable cookie (one that is saved across browser sessions) should be issued.</param>
  4962. </member>
  4963. <member name="M:System.Web.Security.FormsAuthentication.RedirectFromLoginPage(System.String,System.Boolean,System.String)">
  4964. <summary>
  4965. <para> Redirects an authenticated user back to the originally requested
  4966. URL.</para>
  4967. </summary>
  4968. <param name="userName">Name of the user for cookie authentication purposes. This does not need to map to an account name and will be used by URL Authorization.</param>
  4969. <param name=" createPersistentCookie">Specifies whether or not a durable cookie (one that is saved across browser sessions) should be issued.</param>
  4970. <param name=" strCookiePath">Specifies cookie path.</param>
  4971. </member>
  4972. <member name="M:System.Web.Security.FormsAuthentication.RenewTicketIfOld(System.Web.Security.FormsAuthenticationTicket)">
  4973. <summary>
  4974. <para>Conditionally
  4975. updates the sliding expiration on a <see cref="T:System.Web.Security.FormsAuthenticationTicket" />.
  4976. </para>
  4977. </summary>
  4978. <param name="tOld">Authentication ticket.</param>
  4979. <returns>
  4980. <para> The updated <see cref="T:System.Web.Security.FormsAuthenticationTicket" />.</para>
  4981. </returns>
  4982. </member>
  4983. <member name="P:System.Web.Security.FormsAuthentication.FormsCookieName">
  4984. <summary>
  4985. <para>Returns the configured cookie name used for the current application.</para>
  4986. </summary>
  4987. </member>
  4988. <member name="P:System.Web.Security.FormsAuthentication.FormsCookiePath">
  4989. <summary>
  4990. <para>Returns the configured cookie path used for the current application.</para>
  4991. </summary>
  4992. </member>
  4993. <member name="T:System.Web.Security.FormsAuthenticationTicket">
  4994. <summary>
  4995. <para> Provides the information represented in
  4996. an authentication cookie as used by <see cref="T:System.Web.Security.FormsAuthenticationModule" />
  4997. . This class cannot be inherited.</para>
  4998. </summary>
  4999. </member>
  5000. <member name="M:System.Web.Security.FormsAuthenticationTicket.#ctor(System.Int32,System.String,System.DateTime,System.DateTime,System.Boolean,System.String)">
  5001. <summary>
  5002. <para>Creates a <see cref="T:System.Web.Security.FormsAuthenticationTicket" />
  5003. instance with explicit values.</para>
  5004. </summary>
  5005. <param name="version">The version number.</param>
  5006. <param name="name">User name associated with the ticket.</param>
  5007. <param name="expiration">Expiration date for the cookie.</param>
  5008. <param name="issueDate">Time at which the cookie was issued.</param>
  5009. <param name="isPersistent">
  5010. <see langword="True" /> if the cookie is persistent.</param>
  5011. <param name="userData">User-defined data to be stored in the cookie.</param>
  5012. </member>
  5013. <member name="M:System.Web.Security.FormsAuthenticationTicket.#ctor(System.Int32,System.String,System.DateTime,System.DateTime,System.Boolean,System.String,System.String)">
  5014. <summary>
  5015. <para>Creates a <see cref="T:System.Web.Security.FormsAuthenticationTicket" />
  5016. instance with explicit values.</para>
  5017. </summary>
  5018. <param name="version">The version number.</param>
  5019. <param name="name">User name associated with the ticket.</param>
  5020. <param name="expiration">Expiration date for the cookie.</param>
  5021. <param name="issueDate">Time at which the cookie was issued.</param>
  5022. <param name="isPersistent">
  5023. <see langword="True" /> if the cookie is persistent.</param>
  5024. <param name="userData">User-defined data to be stored in the cookie.</param>
  5025. <param name="cookiePath">The path for the cookie.</param>
  5026. </member>
  5027. <member name="M:System.Web.Security.FormsAuthenticationTicket.#ctor(System.String,System.Boolean,System.Int32)">
  5028. <summary>
  5029. <para> Creates a <see cref="T:System.Web.Security.FormsAuthenticationTicket" /> instance with the
  5030. specified name and cookie durability, and default values for the
  5031. other settings (version set internally, dates set to current date,
  5032. and expiration determined on durability of cookie).</para>
  5033. </summary>
  5034. <param name="name">User name associated with the ticket.</param>
  5035. <param name="isPersistent">If true, use a persistent cookie.</param>
  5036. <param name="timeout">Specifies the time in minutes (as an integer) for which the authentication ticket is valid.</param>
  5037. </member>
  5038. <member name="P:System.Web.Security.FormsAuthenticationTicket.Version">
  5039. <summary>
  5040. <para>Returns a byte version number for future
  5041. use.</para>
  5042. </summary>
  5043. </member>
  5044. <member name="P:System.Web.Security.FormsAuthenticationTicket.Name">
  5045. <summary>
  5046. <para>Gets the user name associated with the authentication cookie. </para>
  5047. </summary>
  5048. </member>
  5049. <member name="P:System.Web.Security.FormsAuthenticationTicket.Expiration">
  5050. <summary>
  5051. <para>Gets the date/time at which the cookie
  5052. expires.</para>
  5053. </summary>
  5054. </member>
  5055. <member name="P:System.Web.Security.FormsAuthenticationTicket.IssueDate">
  5056. <summary>
  5057. <para> Gets
  5058. the date/time at which the cookie was originally issued.</para>
  5059. </summary>
  5060. </member>
  5061. <member name="P:System.Web.Security.FormsAuthenticationTicket.IsPersistent">
  5062. <summary>
  5063. <para>Returns <see langword="true" /> if a durable cookie was issued.
  5064. Otherwise, the authentication cookie is scoped to the browser lifetime.</para>
  5065. </summary>
  5066. </member>
  5067. <member name="P:System.Web.Security.FormsAuthenticationTicket.Expired">
  5068. <summary>
  5069. <para>Returns <see langword="true" /> if the cookie has expired.</para>
  5070. </summary>
  5071. </member>
  5072. <member name="P:System.Web.Security.FormsAuthenticationTicket.UserData">
  5073. <summary>
  5074. <para> Gets an application-defined string
  5075. stored in the cookie.</para>
  5076. </summary>
  5077. </member>
  5078. <member name="P:System.Web.Security.FormsAuthenticationTicket.CookiePath">
  5079. <summary>
  5080. <para>Returns the path for which the cookie was issued.</para>
  5081. </summary>
  5082. </member>
  5083. <member name="T:System.Web.Security.FormsIdentity">
  5084. <summary>
  5085. <para> Provides a class to
  5086. be used by <see cref="T:System.Web.Security.FormsAuthenticationModule" />
  5087. .
  5088. This class cannot be inherited.</para>
  5089. </summary>
  5090. </member>
  5091. <member name="M:System.Web.Security.FormsIdentity.#ctor(System.Web.Security.FormsAuthenticationTicket)">
  5092. <summary>
  5093. <para>Initializes a new instance of the <see cref="T:System.Web.Security.FormsIdentity" />class.</para>
  5094. </summary>
  5095. <param name="ticket">The authentication ticket upon which this identity is based.</param>
  5096. </member>
  5097. <member name="P:System.Web.Security.FormsIdentity.Name">
  5098. <summary>
  5099. <para> Gets the name of the identity (in this case,
  5100. the user name).</para>
  5101. </summary>
  5102. </member>
  5103. <member name="P:System.Web.Security.FormsIdentity.AuthenticationType">
  5104. <summary>
  5105. <para>Gets the type of the identity (in this case,
  5106. "Forms").</para>
  5107. </summary>
  5108. </member>
  5109. <member name="P:System.Web.Security.FormsIdentity.IsAuthenticated">
  5110. <summary>
  5111. <para> Indicates whether authentication took
  5112. place.</para>
  5113. </summary>
  5114. </member>
  5115. <member name="P:System.Web.Security.FormsIdentity.Ticket">
  5116. <summary>
  5117. <para>Gets the <see cref="T:System.Web.Security.FormsAuthenticationTicket" />
  5118. associated with the current request.</para>
  5119. </summary>
  5120. </member>
  5121. <member name="T:System.Web.Security.DefaultAuthenticationEventArgs">
  5122. <summary>
  5123. <para>Provides a wrapper around the default authentication services. This class
  5124. cannot be inherited.</para>
  5125. </summary>
  5126. </member>
  5127. <member name="M:System.Web.Security.DefaultAuthenticationEventArgs.#ctor(System.Web.HttpContext)">
  5128. <summary>
  5129. <para>Initializes a new instance of the <see cref="T:System.Web.Security.DefaultAuthenticationEventArgs" /> class.</para>
  5130. </summary>
  5131. <param name=" context">The context for the event.</param>
  5132. </member>
  5133. <member name="P:System.Web.Security.DefaultAuthenticationEventArgs.Context">
  5134. <summary>
  5135. <para>Gets the <see cref="T:System.Web.HttpContext" /> object for the current HTTP request. </para>
  5136. </summary>
  5137. </member>
  5138. <member name="T:System.Web.Security.DefaultAuthenticationEventHandler">
  5139. <summary>
  5140. <para>Represents the method that handles the <see cref="E:System.Web.Security.DefaultAuthenticationModule.Authenticate" /> event of a <see cref="T:System.Web.Security.DefaultAuthenticationModule" />.</para>
  5141. </summary>
  5142. <param name="sender">The object that raised the event.</param>
  5143. <param name=" e">A <see cref="T:System.Web.Security.DefaultAuthenticationEventArgs" /> object that contains the event data.</param>
  5144. </member>
  5145. <member name="T:System.Web.Security.PassportAuthenticationModule">
  5146. <summary>
  5147. <para>Provides a wrapper around PassportAuthentication services.
  5148. This class cannot be inherited.</para>
  5149. </summary>
  5150. </member>
  5151. <member name="M:System.Web.Security.PassportAuthenticationModule.Dispose">
  5152. <summary>
  5153. <para>Disposes of the module derived from <see cref="T:System.Web.IHttpModule" /> when
  5154. called by the HttpRuntime<see langword="." /></para>
  5155. </summary>
  5156. </member>
  5157. <member name="M:System.Web.Security.PassportAuthenticationModule.Init(System.Web.HttpApplication)">
  5158. <summary>
  5159. <para> Initializes the module derived from <see cref="T:System.Web.IHttpModule" /> when
  5160. called by the HttpRuntime
  5161. .</para>
  5162. </summary>
  5163. <param name="app">The <see cref="T:System.Web.HttpApplication" /> module</param>
  5164. </member>
  5165. <member name="E:System.Web.Security.PassportAuthenticationModule.Authenticate">
  5166. <summary>
  5167. <para>Raised during authentication. This is a Global.asax event
  5168. that must be named <c>PassportAuthentication_OnAuthenticate</c>
  5169. .</para>
  5170. </summary>
  5171. </member>
  5172. <member name="T:System.Web.Security.PassportAuthenticationEventArgs">
  5173. <summary>
  5174. <para>The event argument passed to the <see cref="E:System.Web.Security.PassportAuthenticationModule.Authenticate" /> event by a <see cref="T:System.Web.Security.PassportAuthenticationModule" />. Since there is already an identity at this
  5175. point, this is useful mainly for attaching a custom <see cref="T:System.Security.Principal.IPrincipal" />
  5176. object to the context using the supplied
  5177. identity.</para>
  5178. </summary>
  5179. </member>
  5180. <member name="M:System.Web.Security.PassportAuthenticationEventArgs.#ctor(System.Web.Security.PassportIdentity,System.Web.HttpContext)">
  5181. <summary>
  5182. <para>Initializes a new instance of the <see cref="T:System.Web.Security.PassportAuthenticationEventArgs" />class.</para>
  5183. </summary>
  5184. <param name="identity">The identity object</param>
  5185. <param name=" context">The context for the event.</param>
  5186. </member>
  5187. <member name="P:System.Web.Security.PassportAuthenticationEventArgs.User">
  5188. <summary>
  5189. <para>Gets or sets the <see cref="T:System.Security.Principal.IPrincipal" /> object to be associated with the
  5190. request. </para>
  5191. </summary>
  5192. </member>
  5193. <member name="P:System.Web.Security.PassportAuthenticationEventArgs.Context">
  5194. <summary>
  5195. <para>Gets the <see cref="T:System.Web.HttpContext" /> object for the current HTTP request.</para>
  5196. </summary>
  5197. </member>
  5198. <member name="P:System.Web.Security.PassportAuthenticationEventArgs.Identity">
  5199. <summary>
  5200. <para>Gets an authenticated Passport identity.</para>
  5201. </summary>
  5202. </member>
  5203. <member name="T:System.Web.Security.PassportAuthenticationEventHandler">
  5204. <summary>
  5205. <para> Represents the method that handles the
  5206. PassportAuthentication_OnAuthenticate event of a <see cref="T:System.Web.Security.PassportAuthenticationModule" />.</para>
  5207. </summary>
  5208. <param name="sender">The object that raised the event.</param>
  5209. <param name=" e">A <see cref="T:System.Web.Security.PassportAuthenticationEventArgs" /> object that contains the event data.</param>
  5210. </member>
  5211. <member name="T:System.Web.Security.PassportIdentity">
  5212. <summary>
  5213. <para>Provides a class to be used by <see cref="T:System.Web.Security.PassportAuthenticationModule" /> . It provides a
  5214. way for an application to access the <see cref="M:System.Web.Security.PassportIdentity.Ticket(System.String)" />method. This class cannot be inherited.</para>
  5215. </summary>
  5216. </member>
  5217. <member name="M:System.Web.Security.PassportIdentity.#ctor">
  5218. <summary>
  5219. <para>Initializes a new instance of the
  5220. <see cref="T:System.Web.Security.PassportIdentity" /> class.</para>
  5221. </summary>
  5222. </member>
  5223. <member name="M:System.Web.Security.PassportIdentity.Finalize">
  5224. <summary>
  5225. <para>Frees resources used by the <see cref="T:System.Web.Security.PassportIdentity" /> class.</para>
  5226. </summary>
  5227. </member>
  5228. <member name="M:System.Web.Security.PassportIdentity.GetIsAuthenticated(System.Int32,System.Boolean,System.Boolean)">
  5229. <summary>
  5230. <para>Indicates whether the user is authenticated by a a central site
  5231. responsible for Passport authentication.</para>
  5232. </summary>
  5233. <param name="iTimeWindow">Specifies the interval during which members must have last logged on to the calling domain.</param>
  5234. <param name="bForceLogin">Determines how the <paramref name="iTimeWindow" /> parameter is used.</param>
  5235. <param name="bCheckSecure">Enables checking for a secure logon.</param>
  5236. <returns>
  5237. <para>
  5238. <see langword="true" /> if the user is
  5239. authenticated by a Passport authority; otherwise, <see langword="false" />
  5240. .</para>
  5241. </returns>
  5242. </member>
  5243. <member name="M:System.Web.Security.PassportIdentity.GetIsAuthenticated(System.Int32,System.Int32,System.Int32)">
  5244. <summary>
  5245. <para>Indicates whether the user is authenticated by a
  5246. Passport authority.</para>
  5247. </summary>
  5248. <param name="iTimeWindow">Specifies the interval during which members must have last logged on to the calling domain.</param>
  5249. <param name="iForceLogin">Determines how the <paramref name="iTimeWindow" /> parameter is used.</param>
  5250. <param name="iCheckSecure">Enables checking for a secure logon.</param>
  5251. <returns>
  5252. <para>
  5253. <see langword="true" /> if the user is
  5254. authenticated by a
  5255. central site responsible for Passport authentication; otherwise, <see langword="false" />
  5256. .</para>
  5257. </returns>
  5258. </member>
  5259. <member name="M:System.Web.Security.PassportIdentity.GetProfileObject(System.String)">
  5260. <summary>
  5261. <para>Returns Passport profile information for
  5262. the specified profile attribute.</para>
  5263. </summary>
  5264. <param name="strProfileName">The Passport profile attribute to return.</param>
  5265. <returns>
  5266. <para>The value of the Passport profile attribute specified by
  5267. the <paramref name="strProfileName " />parameter.</para>
  5268. </returns>
  5269. </member>
  5270. <member name="M:System.Web.Security.PassportIdentity.GetDomainFromMemberName(System.String)">
  5271. <summary>
  5272. <para> Returns the Passport domain from the member
  5273. name string.</para>
  5274. </summary>
  5275. <param name="strMemberName">The name of the Passport member</param>
  5276. <returns>
  5277. <para>The Passport domain for the specified member.</para>
  5278. </returns>
  5279. </member>
  5280. <member name="M:System.Web.Security.PassportIdentity.HasProfile(System.String)">
  5281. <summary>
  5282. <para>Indicates whether a given profile
  5283. attribute exists in this user's profile.</para>
  5284. </summary>
  5285. <param name="strProfile">The Passport profile attribute to query.</param>
  5286. <returns>
  5287. <para>
  5288. <see langword="true" /> if the profile attribute <paramref name="strProfile" /> exists in this user's
  5289. profile; otherwise, <see langword="false" />
  5290. .</para>
  5291. </returns>
  5292. </member>
  5293. <member name="M:System.Web.Security.PassportIdentity.HasFlag(System.Int32)">
  5294. <summary>
  5295. <para>Indicates whether a given flag is set in this user's profile.</para>
  5296. </summary>
  5297. <param name="iFlagMask">The Passport profile flag to query.</param>
  5298. <returns>
  5299. <para>
  5300. <see langword="true" /> if the
  5301. Passport profile flag <paramref name="iFlagMask" /> is set in this
  5302. user's profile; otherwise, <see langword="false" /> .</para>
  5303. </returns>
  5304. </member>
  5305. <member name="M:System.Web.Security.PassportIdentity.HaveConsent(System.Boolean,System.Boolean)">
  5306. <summary>
  5307. <para>Indicates whether full consent is granted in this user's
  5308. profile.</para>
  5309. </summary>
  5310. <param name="bNeedFullConsent">
  5311. <see langword="true" /> to indicate full consent is required for Passport Authentication; otherwise, <see langword="false" /> .</param>
  5312. <param name="bNeedBirthdate">
  5313. <see langword="true" /> to indicate the user's birthdate is required for Passport Authentication; otherwise, <see langword="false" /> .</param>
  5314. <returns>
  5315. <para>
  5316. <see langword="true" /> if full consent is granted in this user's profile.</para>
  5317. </returns>
  5318. </member>
  5319. <member name="M:System.Web.Security.PassportIdentity.LogoTag">
  5320. <summary>
  5321. <para>Returns an HTML fragment containing an image tag for a Passport link. </para>
  5322. </summary>
  5323. <returns>
  5324. <para>An HTML fragment containing an image tag for a Passport link.</para>
  5325. </returns>
  5326. </member>
  5327. <member name="M:System.Web.Security.PassportIdentity.LogoTag2">
  5328. <summary>
  5329. <para>Returns an HTML fragment containing an image tag for a Passport link. </para>
  5330. </summary>
  5331. <returns>
  5332. <para>
  5333. An HTML fragment containing an image tag for a Passport link.</para>
  5334. </returns>
  5335. </member>
  5336. <member name="M:System.Web.Security.PassportIdentity.LogoTag(System.String,System.Int32,System.Boolean,System.String,System.Int32,System.Boolean,System.String,System.Int32,System.Boolean)">
  5337. <summary>
  5338. <para> Returns an HTML fragment containing an HTML &lt;img&gt; tag for a Passport
  5339. link. </para>
  5340. </summary>
  5341. <param name="strReturnUrl">Sets the URL of the location to which the Login server should redirect members after they log on.</param>
  5342. <param name="iTimeWindow">Specifies the interval during which members must have last logged on. </param>
  5343. <param name="fForceLogin">Determines how the <paramref name="iTimeWindow" /> parameter gets used.</param>
  5344. <param name="strCoBrandedArgs">Specifies variables to be appended as query string variables to the URL of the participant's Cobranding Template script page.</param>
  5345. <param name="iLangID">Specifies the language to be used for the logon page that is displayed to the member.</param>
  5346. <param name="fSecure">Declares whether this method is being called from an HTTPS (SSL) page. </param>
  5347. <param name="strNameSpace">Specifies the domain in which the Passport should be created.</param>
  5348. <param name="iKPP">Specifies data collection policies for purposes of Children's Online Privacy Protection Act (COPPA) compliance. </param>
  5349. <param name="bUseSecureAuth">Declares whether the actual logon UI should be served HTTPS from the Passport domain authority. </param>
  5350. <returns>
  5351. <para>An HTML fragment containing an image tag for a Passport link.</para>
  5352. </returns>
  5353. </member>
  5354. <member name="M:System.Web.Security.PassportIdentity.LogoTag(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32)">
  5355. <summary>
  5356. <para> Returns an HTML fragment containing an HTML &lt;img&gt; tag for a Passport
  5357. link. </para>
  5358. </summary>
  5359. <param name="strReturnUrl">Sets the URL of the location to which the Login server should redirect members after they log on.</param>
  5360. <param name="iTimeWindow">Specifies the interval during which members must have last logged on.</param>
  5361. <param name="iForceLogin">Determines how the <paramref name="iTimeWindow" /> parameter gets used.</param>
  5362. <param name="strCoBrandedArgs">Specifies variables to be appended as query string variables to the URL of the participant's Cobranding Template script page.</param>
  5363. <param name="iLangID">Specifies the language to be used for the logon page that is displayed to the member.</param>
  5364. <param name="iSecure">Declares whether this method is being called from an HTTPS (SSL) page.</param>
  5365. <param name="strNameSpace">Specifies the domain in which the Passport should be created.</param>
  5366. <param name="iKPP">Specifies data collection policies for purposes of Children's Online Privacy Protection Act (COPPA) compliance.</param>
  5367. <param name="iUseSecureAuth">Declares whether the actual logon UI should be served HTTPS from the Passport domain authority.</param>
  5368. <returns>
  5369. <para>An HTML fragment containing an image tag for a Passport link.</para>
  5370. </returns>
  5371. </member>
  5372. <member name="M:System.Web.Security.PassportIdentity.LogoTag2(System.String,System.Int32,System.Boolean,System.String,System.Int32,System.Boolean,System.String,System.Int32,System.Boolean)">
  5373. <summary>
  5374. <para> Returns an HTML fragment containing an HTML &lt;img&gt; tag for a Passport
  5375. link. </para>
  5376. </summary>
  5377. <param name="strReturnUrl">Sets the URL of the location to which the Login server should redirect members after they log on.</param>
  5378. <param name="iTimeWindow">Specifies the interval during which members must have last logged on.</param>
  5379. <param name="fForceLogin">Determines how the <paramref name="iTimeWindow" /> parameter gets used.</param>
  5380. <param name="strCoBrandedArgs">Specifies variables to be appended as query string variables to the URL of the participant's Cobranding Template script page.</param>
  5381. <param name="iLangID">Specifies the language to be used for the logon page that is displayed to the member.</param>
  5382. <param name="fSecure">Declares whether this method is being called from an HTTPS (SSL) page.</param>
  5383. <param name="strNameSpace">Specifies the domain in which the Passport should be created.</param>
  5384. <param name="iKPP">Specifies data collection policies for purposes of Children's Online Privacy Protection Act (COPPA) compliance.</param>
  5385. <param name="bUseSecureAuth">Declares whether the actual logon UI should be served HTTPS from the Passport domain authority.</param>
  5386. <returns>
  5387. <para>An HTML fragment containing an image tag for a Passport link.</para>
  5388. </returns>
  5389. </member>
  5390. <member name="M:System.Web.Security.PassportIdentity.LogoTag2(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32)">
  5391. <summary>
  5392. <para> Returns an HTML fragment containing an HTML &lt;img&gt; tag for a Passport
  5393. link. </para>
  5394. </summary>
  5395. <param name="strReturnUrl">Sets the URL of the location to which the Login server should redirect members after they log on.</param>
  5396. <param name="iTimeWindow">Specifies the interval during which members must have last logged on.</param>
  5397. <param name="iForceLogin">Determines how the <paramref name="iTimeWindow" /> parameter gets used.</param>
  5398. <param name="strCoBrandedArgs">Specifies variables to be appended as query string variables to the URL of the participant's Cobranding Template script page.</param>
  5399. <param name="iLangID">Specifies the language to be used for the logon page that is displayed to the member.</param>
  5400. <param name="iSecure">Declares whether this method is being called from an HTTPS (SSL) page.</param>
  5401. <param name="strNameSpace">Specifies the domain in which the Passport should be created.</param>
  5402. <param name="iKPP">Specifies data collection policies for purposes of Children's Online Privacy Protection Act (COPPA) compliance.</param>
  5403. <param name="iUseSecureAuth">Declares whether the actual logon UI should be served HTTPS from the Passport domain authority.</param>
  5404. <returns>
  5405. <para>An HTML fragment containing an image tag for a Passport link.</para>
  5406. </returns>
  5407. </member>
  5408. <member name="M:System.Web.Security.PassportIdentity.AuthUrl">
  5409. <summary>
  5410. <para> Returns a string
  5411. containing the Login server URL for a member, along with optional information sent to the Login
  5412. server in the query string.</para>
  5413. </summary>
  5414. <returns>
  5415. <para> The Login server URL for a member, as well as optional information sent
  5416. to the Login server in the query string. </para>
  5417. </returns>
  5418. </member>
  5419. <member name="M:System.Web.Security.PassportIdentity.AuthUrl2">
  5420. <summary>
  5421. <para> Returns a string containing the Login server URL for a member,
  5422. as well as optional information sent to the Login server in the query string.</para>
  5423. </summary>
  5424. <returns>
  5425. <para> The Login server URL for a member, as well as optional information sent
  5426. to the Login server in the query string. </para>
  5427. </returns>
  5428. </member>
  5429. <member name="M:System.Web.Security.PassportIdentity.AuthUrl(System.String,System.Int32,System.Boolean,System.String,System.Int32,System.String,System.Int32,System.Boolean)">
  5430. <summary>
  5431. <para> Returns the authentication server URL for
  5432. a member.</para>
  5433. </summary>
  5434. <param name="strReturnUrl">Sets the URL of the location that the Login server should redirect to after logon is complete.</param>
  5435. <param name="iTimeWindow">Specifies the interval during which members must have last logged on. </param>
  5436. <param name="fForceLogin">Determines how the <paramref name="iTimeWindow" /> parameter will be used.</param>
  5437. <param name="strCoBrandedArgs">Specifies variables to be appended to the URL of the Cobranding Template script page that was specified at initial participant registration.</param>
  5438. <param name="iLangID">Specifies the language in which the required domain authority page should be displayed. </param>
  5439. <param name="strNameSpace">Specifies the domain in which the Passport should be created.</param>
  5440. <param name="iKPP">Specifies data collection policies for purposes of Children's Online Privacy Protection Act (COPPA) compliance. </param>
  5441. <param name="bUseSecureAuth">Declares whether the actual logon UI should be served HTTPS from the Passport domain authority. </param>
  5442. <returns>
  5443. <para>The Login server URL for a member, as well as the optional information sent
  5444. to the Login server in the query string. </para>
  5445. </returns>
  5446. </member>
  5447. <member name="M:System.Web.Security.PassportIdentity.AuthUrl2(System.String,System.Int32,System.Boolean,System.String,System.Int32,System.String,System.Int32,System.Boolean)">
  5448. <summary>
  5449. <para>Returns a string containing the Login server URL for a member, as well as the optional
  5450. information sent to the Login server in the query string.</para>
  5451. </summary>
  5452. <param name="strReturnUrl">Sets the URL of the location that the Login server should redirect to after logon is complete. </param>
  5453. <param name="iTimeWindow">Specifies the interval during which members must have last logged on.</param>
  5454. <param name="fForceLogin">Determines how the <paramref name="iTimeWindow" /> parameter will be used. </param>
  5455. <param name="strCoBrandedArgs">Specifies variables to be appended to the URL of the Cobranding Template script page that was specified at initial participant registration. </param>
  5456. <param name="iLangID">Specifies the language in which the required domain authority page should be displayed. </param>
  5457. <param name="strNameSpace">Specifies the domain in which the Passport should be created. </param>
  5458. <param name="iKPP">Specifies data collection policies for purposes of Children's Online Privacy Protection Act (COPPA) compliance. </param>
  5459. <param name="bUseSecureAuth">Declares whether the actual logon UI should be served HTTPS from the Passport domain authority. </param>
  5460. <returns>
  5461. <para>The Login server URL for a member, as well as the optional information sent
  5462. to the Login server in the query string. </para>
  5463. </returns>
  5464. </member>
  5465. <member name="M:System.Web.Security.PassportIdentity.AuthUrl(System.String,System.Int32,System.Int32,System.String,System.Int32,System.String,System.Int32,System.Int32)">
  5466. <summary>
  5467. <para>Returns a string containing the Login
  5468. server URL for a member, along with the optional information sent to the Login
  5469. server in the query string</para>
  5470. </summary>
  5471. <param name="strReturnUrl">Sets the URL of the location that the Login server should redirect to after logon is complete.</param>
  5472. <param name="iTimeWindow">Specifies the interval during which members must have last logged on. </param>
  5473. <param name="iForceLogin">Determines how the <paramref name="iTimeWindow" /> parameter will be used.</param>
  5474. <param name="strCoBrandedArgs">Specifies variables to be appended to the URL of the Cobranding Template script page that was specified at initial participant registration.</param>
  5475. <param name="iLangID">Specifies the language in which the required domain authority page should be displayed.</param>
  5476. <param name="strNameSpace">Specifies the domain in which the Passport should be created.</param>
  5477. <param name="iKPP">Specifies data collection policies for purposes of Children's Online Privacy Protection Act (COPPA) compliance.</param>
  5478. <param name="iUseSecureAuth">Declares whether the actual Login UI should be served HTTPS from the Passport domain authority.</param>
  5479. <returns>
  5480. <para>The Login server URL for a member, as well as the optional information sent
  5481. to the Login server in the query string.</para>
  5482. </returns>
  5483. </member>
  5484. <member name="M:System.Web.Security.PassportIdentity.AuthUrl2(System.String,System.Int32,System.Int32,System.String,System.Int32,System.String,System.Int32,System.Int32)">
  5485. <summary>
  5486. <para>Retrieves a string containing the Login server URL for a member, as well as the optional
  5487. information sent to the Login server in the query string.</para>
  5488. </summary>
  5489. <param name="strReturnUrl">Sets the URL of the location that the Login server should redirect to after logon is complete.</param>
  5490. <param name="iTimeWindow">Specifies the interval during which members must have last logged on.</param>
  5491. <param name="iForceLogin">Determines how the <paramref name="iTimeWindow" /> parameter will be used.</param>
  5492. <param name="strCoBrandedArgs">Specifies variables to be appended to the URL of the Cobranding Template script page that was specified at initial participant registration.</param>
  5493. <param name="iLangID">Specifies the language in which the required domain authority page should be displayed.</param>
  5494. <param name="strNameSpace">Specifies the domain in which the Passport should be created.</param>
  5495. <param name="iKPP">Specifies data collection policies for purposes of Children's Online Privacy Protection Act (COPPA) compliance.</param>
  5496. <param name="iUseSecureAuth">Declares whether the actual logon UI should be served HTTPS from the Passport domain authority.</param>
  5497. <returns>
  5498. <para>The Login server URL for a member, as well as the optional information sent
  5499. to the Login server in the query string.</para>
  5500. </returns>
  5501. </member>
  5502. <member name="M:System.Web.Security.PassportIdentity.LoginUser(System.String,System.Int32,System.Boolean,System.String,System.Int32,System.String,System.Int32,System.Boolean,System.Object)">
  5503. <summary>
  5504. <para> Logs the user on, either by generating a 302 redirect URL or by
  5505. initiating a Passport-aware client authentication exchange.</para>
  5506. </summary>
  5507. <param name="szRetURL">The URL to which the Login server should redirect users after sign in is complete.</param>
  5508. <param name="iTimeWindow">The time value, in seconds.</param>
  5509. <param name="fForceLogin">
  5510. <see langword="true" />to have the Login server compare the <paramref name="iTimeWindow" /> parameter against the time since the user last signed in; <see langword="false" /> to have the Login server compare <paramref name="iTimeWindow" /> against the last time the Ticket was refreshed.</param>
  5511. <param name="szCOBrandArgs">A string specifying variables to be appended as query string variables to the URL of the participant's Cobranding Template script page.</param>
  5512. <param name="iLangID">A locale identifier (LCID) specifying the language in which the Login page should be displayed.</param>
  5513. <param name="strNameSpace">A domain name space to which you want to direct users without Passports to register. The specified name space must appear as a "domain name" entry in the Partner.xml Component Configuration Document (CCD). The typical default name space is "passport.com".</param>
  5514. <param name="iKPP">Do not use; leave as default/blank. This parameter is only relevant when implementing Kids Passport service; however, Kids Passport service cannot currently support use of this method.</param>
  5515. <param name="fUseSecureAuth">Secure sign in is not available as an option in the current version Login servers. Passport Manager methods include secure sign-in parameters and they may be required for syntax, but they are currently ignored at the server. Check the Passport Web site for updates on the status of secure sign in.</param>
  5516. <param name="oExtraParams">Name-value pairs to be inserted directly into the challenge authentication header, specifically for Passport-aware authentication interaction.</param>
  5517. <returns>
  5518. <para>An integer result code.</para>
  5519. </returns>
  5520. </member>
  5521. <member name="M:System.Web.Security.PassportIdentity.LoginUser(System.String,System.Int32,System.Int32,System.String,System.Int32,System.String,System.Int32,System.Int32,System.Object)">
  5522. <summary>
  5523. <para> Logs the user on, either by generating a 302 redirect URL or initiating
  5524. a Passport-aware client authentication exchange.</para>
  5525. </summary>
  5526. <param name="szRetURL">The URL to which the Login server should redirect users after sign in is complete.</param>
  5527. <param name="iTimeWindow">The time value, in seconds.</param>
  5528. <param name="fForceLogin">Indicates whether the Login server should compare the <paramref name="iTimeWindow" /> parameter against the time since the user last signed in or against the last time the Ticket was refreshed.</param>
  5529. <param name="szCOBrandArgs">A string specifying variables to be appended as query string variables to the URL of the participant's Cobranding Template script page.</param>
  5530. <param name="iLangID">A locale identifier (LCID) specifying the language in which the Login page should be displayed.</param>
  5531. <param name="strNameSpace">A domain name space to which you want to direct users without Passports to register. The specified name space must appear as a "domain name" entry in the Partner.xml Component Configuration Document (CCD). The typical default name space is "passport.com".</param>
  5532. <param name="iKPP">Do not use; leave as default/blank. This parameter is only relevant when implementing Kids Passport service; however, Kids Passport service cannot currently support use of this method.</param>
  5533. <param name="iUseSecureAuth">Secure sign in is not available as an option in the current version Login servers. Passport Manager methods include secure sign-in parameters and they may be required for syntax, but they are currently ignored at the server. Check the Passport Web site for updates on the status of secure sign in.</param>
  5534. <param name="oExtraParams">Name-value pairs to be inserted directly into the challenge authentication header, specifically for Passport-aware authentication interaction.</param>
  5535. <returns>
  5536. <para>An integer result code.</para>
  5537. </returns>
  5538. </member>
  5539. <member name="M:System.Web.Security.PassportIdentity.LoginUser">
  5540. <summary>
  5541. <para> Logs the user on, either by generating a 302 redirect URL or initiating
  5542. a Passport-aware client authentication exchange.</para>
  5543. </summary>
  5544. <returns>
  5545. <para>An integer result code.</para>
  5546. </returns>
  5547. </member>
  5548. <member name="M:System.Web.Security.PassportIdentity.GetLoginChallenge">
  5549. <summary>
  5550. <para>Logs the user on, either by generating a 302 redirect URL or initiating a
  5551. Passport-aware client authentication exchange.</para>
  5552. </summary>
  5553. <returns>
  5554. <para>A string representing the Passport Login Challenge.</para>
  5555. </returns>
  5556. </member>
  5557. <member name="M:System.Web.Security.PassportIdentity.GetLoginChallenge(System.String,System.Int32,System.Int32,System.String,System.Int32,System.String,System.Int32,System.Int32,System.Object)">
  5558. <summary>
  5559. <para>Logs the user on, either by generating a 302 redirect
  5560. URL or initiating a Passport-aware client authentication exchange.</para>
  5561. </summary>
  5562. <param name="szRetURL">See Passport documentation for IPassportManager3.GetLoginChallenge .</param>
  5563. <param name="iTimeWindow">See Passport documentation for IPassportManager3.GetLoginChallenge .</param>
  5564. <param name="fForceLogin">See Passport documentation for IPassportManager3.GetLoginChallenge .</param>
  5565. <param name="szCOBrandArgs">See Passport documentation for IPassportManager3.GetLoginChallenge .</param>
  5566. <param name="iLangID">See Passport documentation for IPassportManager3.GetLoginChallenge .</param>
  5567. <param name="strNameSpace">See Passport documentation for IPassportManager3.GetLoginChallenge .</param>
  5568. <param name="iKPP">See Passport documentation for IPassportManager3.GetLoginChallenge .</param>
  5569. <param name="iUseSecureAuth">See Passport documentation for IPassportManager3.GetLoginChallenge .</param>
  5570. <param name="oExtraParams">See Passport documentation for IPassportManager3.GetLoginChallenge .</param>
  5571. <returns>
  5572. <para>A string representing the Passport Login Challenge.</para>
  5573. </returns>
  5574. </member>
  5575. <member name="M:System.Web.Security.PassportIdentity.GetDomainAttribute(System.String,System.Int32,System.String)">
  5576. <summary>
  5577. <para>Provides information for a Passport domain by querying
  5578. the Passport manager for the requested domain attribute.</para>
  5579. </summary>
  5580. <param name="strAttribute">The name of the attribute value to retrieve.</param>
  5581. <param name="iLCID">The language in which various Passport network pages should be displayed to the member. </param>
  5582. <param name="strDomain">The domain authority name to query for an attribute. </param>
  5583. <returns>
  5584. <para>A string
  5585. representing the requested attribute.</para>
  5586. </returns>
  5587. </member>
  5588. <member name="M:System.Web.Security.PassportIdentity.Ticket(System.String)">
  5589. <summary>
  5590. <para>Gets information on a specific attribute of the Passport authentication ticket.</para>
  5591. </summary>
  5592. <param name="strAttribute">A string identifying the Passport authentication ticket to return<see langword="." /></param>
  5593. <returns>
  5594. <para>An object representing an attribute of the Passport authentication
  5595. ticket.</para>
  5596. </returns>
  5597. </member>
  5598. <member name="M:System.Web.Security.PassportIdentity.GetCurrentConfig(System.String)">
  5599. <summary>
  5600. <para>Gets the contents of a registry key under the HKLM\SW\Microsoft\Passport
  5601. hive. </para>
  5602. </summary>
  5603. <param name="strAttribute">The name of the registry key.</param>
  5604. <returns>
  5605. <para>The contents of the registry key.</para>
  5606. </returns>
  5607. </member>
  5608. <member name="M:System.Web.Security.PassportIdentity.SignOut(System.String)">
  5609. <summary>
  5610. <para>Logs off the given Passport member from
  5611. the current session.</para>
  5612. </summary>
  5613. <param name="strSignOutDotGifFileName">An HTML fragment containing an image for the user to click on to sign out.</param>
  5614. </member>
  5615. <member name="M:System.Web.Security.PassportIdentity.Encrypt(System.String)">
  5616. <summary>
  5617. <para>Encrypts data using the Passport participant key for the
  5618. current site.</para>
  5619. </summary>
  5620. <param name="strData">The data to be encrypted.</param>
  5621. <returns>
  5622. <para>Data encrypted using the Passport participant key for
  5623. the current site.</para>
  5624. </returns>
  5625. </member>
  5626. <member name="M:System.Web.Security.PassportIdentity.Decrypt(System.String)">
  5627. <summary>
  5628. <para>Decrypts data using the Passport
  5629. participant key for the current site.</para>
  5630. </summary>
  5631. <param name="strData">The data to be decrypted.</param>
  5632. <returns>
  5633. <para>Data decrypted using the Passport participant key
  5634. for the current site.</para>
  5635. </returns>
  5636. </member>
  5637. <member name="M:System.Web.Security.PassportIdentity.Compress(System.String)">
  5638. <summary>
  5639. <para>Compresses data.</para>
  5640. </summary>
  5641. <param name="strData">The data to be compressed.</param>
  5642. <returns>
  5643. <para>The compressed data.</para>
  5644. </returns>
  5645. </member>
  5646. <member name="M:System.Web.Security.PassportIdentity.Decompress(System.String)">
  5647. <summary>
  5648. <para>Decompresses data that has been compressed by the
  5649. <see cref="M:System.Web.Security.PassportIdentity.Compress(System.String)" /> method.</para>
  5650. </summary>
  5651. <param name="strData">The data to be decompressed.</param>
  5652. <returns>
  5653. <para>The decompressed data.</para>
  5654. </returns>
  5655. </member>
  5656. <member name="M:System.Web.Security.PassportIdentity.CryptPutHost(System.String)">
  5657. <summary>
  5658. <para>Sets the key being used for Passport encryption and decryption. </para>
  5659. </summary>
  5660. <param name="strHost">The host name or IP address.</param>
  5661. <returns>
  5662. <para>An integer result code.</para>
  5663. </returns>
  5664. </member>
  5665. <member name="M:System.Web.Security.PassportIdentity.CryptPutSite(System.String)">
  5666. <summary>
  5667. <para>Sets the key being used for Passport encryption and decryption by
  5668. referring to the site-name label assigned to that key when the key was first installed.</para>
  5669. </summary>
  5670. <param name="strSite">The site label.</param>
  5671. <returns>
  5672. <para>An integer result code.</para>
  5673. </returns>
  5674. </member>
  5675. <member name="M:System.Web.Security.PassportIdentity.CryptIsValid">
  5676. <summary>
  5677. <para>Gets the state of a flag indicating if the Passport
  5678. Manager is in a valid state for encryption.</para>
  5679. </summary>
  5680. <returns>
  5681. <para>
  5682. <see langword="true" /> if the key used for encryption and decryption is valid
  5683. and if the Passport Manager is in a valid state for encryption</para>
  5684. </returns>
  5685. </member>
  5686. <member name="P:System.Web.Security.PassportIdentity.Name">
  5687. <summary>
  5688. <para>Gets the name of the current user. </para>
  5689. </summary>
  5690. </member>
  5691. <member name="P:System.Web.Security.PassportIdentity.AuthenticationType">
  5692. <summary>
  5693. <para>Gets the type of authentication used to identify the user.</para>
  5694. </summary>
  5695. </member>
  5696. <member name="P:System.Web.Security.PassportIdentity.IsAuthenticated">
  5697. <summary>
  5698. <para>Gets a value indicating whether
  5699. the user is authenticated against a
  5700. Passport authority.</para>
  5701. </summary>
  5702. </member>
  5703. <member name="P:System.Web.Security.PassportIdentity.Item(System.String)">
  5704. <summary>
  5705. <para> Gets Passport profile attributes. </para>
  5706. </summary>
  5707. <param name="strProfileName">The Passport profile attribute to return.</param>
  5708. </member>
  5709. <member name="P:System.Web.Security.PassportIdentity.Error">
  5710. <summary>
  5711. <para>Gets a value indicating the error state associated with the current Passport ticket. </para>
  5712. </summary>
  5713. </member>
  5714. <member name="P:System.Web.Security.PassportIdentity.GetFromNetworkServer">
  5715. <summary>
  5716. <para>Gets information on a Passport server connection and query string.</para>
  5717. </summary>
  5718. </member>
  5719. <member name="P:System.Web.Security.PassportIdentity.HasSavedPassword">
  5720. <summary>
  5721. <para> Gets information on whether the Passport member's password was
  5722. saved.</para>
  5723. </summary>
  5724. </member>
  5725. <member name="P:System.Web.Security.PassportIdentity.HasTicket">
  5726. <summary>
  5727. <para>Gets a value indicating whether the query string includes a Passport
  5728. ticket as a cookie.</para>
  5729. </summary>
  5730. </member>
  5731. <member name="P:System.Web.Security.PassportIdentity.TicketAge">
  5732. <summary>
  5733. <para> Gets the time, in seconds, since the last ticket was
  5734. issued or refreshed.</para>
  5735. </summary>
  5736. </member>
  5737. <member name="P:System.Web.Security.PassportIdentity.TimeSinceSignIn">
  5738. <summary>
  5739. <para> Gets the time, in seconds, since a member's
  5740. logon to the Passport logon server.</para>
  5741. </summary>
  5742. </member>
  5743. <member name="P:System.Web.Security.PassportIdentity.HexPUID">
  5744. <summary>
  5745. <para>Gets the Passport Unique Identifier (PUID) for the
  5746. currently authenticated user, in hexadecimal form.</para>
  5747. </summary>
  5748. </member>
  5749. <member name="T:System.Web.Security.UrlAuthorizationModule">
  5750. <summary>
  5751. <para> Provides URL-based authorization services for allowing or
  5752. denying access to specified resources. This class cannot be inherited.</para>
  5753. </summary>
  5754. </member>
  5755. <member name="M:System.Web.Security.UrlAuthorizationModule.Init(System.Web.HttpApplication)">
  5756. <summary>
  5757. <para>Initializes the module.</para>
  5758. </summary>
  5759. <param name="app">The <see langword="Http application" /> .</param>
  5760. </member>
  5761. <member name="M:System.Web.Security.UrlAuthorizationModule.Dispose">
  5762. <summary>
  5763. <para>Called by the HTTP runtime to dispose of
  5764. the module.</para>
  5765. </summary>
  5766. </member>
  5767. <member name="T:System.Web.Security.WindowsAuthenticationEventArgs">
  5768. <summary>
  5769. <para>Provides data for the <see cref="E:System.Web.Security.WindowsAuthenticationModule.Authenticate" /> event. This class cannot be
  5770. inherited.</para>
  5771. </summary>
  5772. </member>
  5773. <member name="M:System.Web.Security.WindowsAuthenticationEventArgs.#ctor(System.Security.Principal.WindowsIdentity,System.Web.HttpContext)">
  5774. <summary>
  5775. <para>Initializes a newly created instance of the <see cref="T:System.Web.Security.WindowsAuthenticationEventArgs" />
  5776. class.</para>
  5777. </summary>
  5778. <param name="identity">The windows identity object.</param>
  5779. <param name=" context">The context for the event.</param>
  5780. </member>
  5781. <member name="P:System.Web.Security.WindowsAuthenticationEventArgs.User">
  5782. <summary>
  5783. <para>Gets or sets the <see cref="T:System.Security.Principal.IPrincipal" /> object to be associated with the
  5784. request. </para>
  5785. </summary>
  5786. </member>
  5787. <member name="P:System.Web.Security.WindowsAuthenticationEventArgs.Context">
  5788. <summary>
  5789. <para>Gets the <see cref="T:System.Web.HttpContext" /> object for the current HTTP
  5790. request. </para>
  5791. </summary>
  5792. </member>
  5793. <member name="P:System.Web.Security.WindowsAuthenticationEventArgs.Identity">
  5794. <summary>
  5795. <para>Gets an authenticated Windows identity.</para>
  5796. </summary>
  5797. </member>
  5798. <member name="T:System.Web.Security.WindowsAuthenticationEventHandler">
  5799. <summary>
  5800. <para> Represents the method that handles the <c>WindowsAuthentication_OnAuthenticate</c> event of a <see cref="T:System.Web.Security.WindowsAuthenticationModule" />
  5801. .</para>
  5802. </summary>
  5803. <param name="sender">The source of the event.</param>
  5804. <param name=" e">A <see cref="T:System.Web.Security.WindowsAuthenticationEventArgs" /> that contains the event data.</param>
  5805. </member>
  5806. <member name="T:System.Web.Security.WindowsAuthenticationModule">
  5807. <summary>
  5808. <para> Enables ASP.NET applications to use Windows/IIS authentication. This class cannot be inherited.
  5809. </para>
  5810. </summary>
  5811. </member>
  5812. <member name="M:System.Web.Security.WindowsAuthenticationModule.Dispose">
  5813. <summary>
  5814. <para>Disposes of the module derived from
  5815. <see cref="T:System.Web.IHttpModule" /> when called by the <see cref="T:System.Web.HttpRuntime" />
  5816. .</para>
  5817. </summary>
  5818. </member>
  5819. <member name="M:System.Web.Security.WindowsAuthenticationModule.Init(System.Web.HttpApplication)">
  5820. <summary>
  5821. <para>Initializes the module derived from
  5822. <see cref="T:System.Web.IHttpModule" /> when called by the
  5823. HttpRuntime.
  5824. </para>
  5825. </summary>
  5826. <param name="app">The <see cref="T:System.Web.HttpApplication" /> module.</param>
  5827. </member>
  5828. <member name="E:System.Web.Security.WindowsAuthenticationModule.Authenticate">
  5829. <summary>
  5830. <para>Raised during authentication. This is a Global.asax event
  5831. that must be named <c>WindowsAuthentication_OnAuthenticate</c> . It is used
  5832. primarily to attach a custom <see cref="T:System.Security.Principal.IPrincipal" />
  5833. object to the context.</para>
  5834. </summary>
  5835. </member>
  5836. <member name="T:System.Web.SessionState.IReadOnlySessionState">
  5837. <summary>
  5838. <para> Specifies that the target HTTP handler
  5839. interface has read-only access to session-state values. This is a marker interface only and
  5840. has no methods.</para>
  5841. </summary>
  5842. </member>
  5843. <member name="T:System.Web.SessionState.IRequiresSessionState">
  5844. <summary>
  5845. <para> Specifies that the target HTTP handler interface
  5846. has read
  5847. and write access to session-state values. This is a marker interface only and
  5848. has no methods.</para>
  5849. </summary>
  5850. </member>
  5851. <member name="T:System.Web.SessionState.SessionStateMode">
  5852. <summary>
  5853. <para> Specifies the session-state mode.</para>
  5854. </summary>
  5855. </member>
  5856. <member name="F:System.Web.SessionState.SessionStateMode.Off">
  5857. <summary>
  5858. <para>Session state is disabled.</para>
  5859. </summary>
  5860. </member>
  5861. <member name="F:System.Web.SessionState.SessionStateMode.InProc">
  5862. <summary>
  5863. <para>Session state is in process with an ASP.NET worker process.
  5864. <see langword="InProc" />is the default.</para>
  5865. </summary>
  5866. </member>
  5867. <member name="F:System.Web.SessionState.SessionStateMode.StateServer">
  5868. <summary>
  5869. <para>Session state is using an out-of-process Windows NT Server to
  5870. store state information.</para>
  5871. </summary>
  5872. </member>
  5873. <member name="F:System.Web.SessionState.SessionStateMode.SQLServer">
  5874. <summary>
  5875. <para>Session state is using an out-of-process SQL Server to store state information.</para>
  5876. </summary>
  5877. </member>
  5878. <member name="T:System.Web.SessionState.HttpSessionState">
  5879. <summary>
  5880. <para> Provides access to session-state values as well as
  5881. session-level settings and lifetime management methods.</para>
  5882. </summary>
  5883. </member>
  5884. <member name="M:System.Web.SessionState.HttpSessionState.Abandon">
  5885. <summary>
  5886. <para>Cancels the current session.</para>
  5887. </summary>
  5888. </member>
  5889. <member name="M:System.Web.SessionState.HttpSessionState.Add(System.String,System.Object)">
  5890. <summary>
  5891. <para> Adds a new item to session state.</para>
  5892. </summary>
  5893. <param name="name"> The name of the session-state item to add.</param>
  5894. <param name=" value">The value to add to session state.</param>
  5895. </member>
  5896. <member name="M:System.Web.SessionState.HttpSessionState.Remove(System.String)">
  5897. <summary>
  5898. <para> Deletes an item from the session-state collection.</para>
  5899. </summary>
  5900. <param name="name"> The name of the session-state item to remove.</param>
  5901. </member>
  5902. <member name="M:System.Web.SessionState.HttpSessionState.RemoveAt(System.Int32)">
  5903. <summary>
  5904. <para> Deletes an item at a specified index from the session-state collection.</para>
  5905. </summary>
  5906. <param name="index">The index of the item to remove.</param>
  5907. </member>
  5908. <member name="M:System.Web.SessionState.HttpSessionState.Clear">
  5909. <summary>
  5910. <para>Clears all values from session state.</para>
  5911. </summary>
  5912. </member>
  5913. <member name="M:System.Web.SessionState.HttpSessionState.RemoveAll">
  5914. <summary>
  5915. <para> Clears all session-state values.</para>
  5916. </summary>
  5917. </member>
  5918. <member name="M:System.Web.SessionState.HttpSessionState.GetEnumerator">
  5919. <summary>
  5920. <para> Gets an enumerator of all session state-values in the current session.</para>
  5921. </summary>
  5922. <returns>
  5923. <para> The enumerator for session-state values.</para>
  5924. </returns>
  5925. </member>
  5926. <member name="M:System.Web.SessionState.HttpSessionState.CopyTo(System.Array,System.Int32)">
  5927. <summary>
  5928. <para> Copies the collection of session-state values to
  5929. a one-dimensional array, starting at the specified index in the array.</para>
  5930. </summary>
  5931. <param name="array">The <see cref="T:System.Array" /> that receives the session values.</param>
  5932. <param name=" index">The index in <paramref name="array" /> where copying starts.</param>
  5933. </member>
  5934. <member name="P:System.Web.SessionState.HttpSessionState.SessionID">
  5935. <summary>
  5936. <para>Gets the unique session ID used to identify the session.</para>
  5937. </summary>
  5938. </member>
  5939. <member name="P:System.Web.SessionState.HttpSessionState.Timeout">
  5940. <summary>
  5941. <para> Gets and sets the time-out period (in minutes) allowed between requests before
  5942. the session-state provider terminates the session.
  5943. </para>
  5944. </summary>
  5945. </member>
  5946. <member name="P:System.Web.SessionState.HttpSessionState.IsNewSession">
  5947. <summary>
  5948. <para> Gets a value indicating whether
  5949. the session was created with the current request.</para>
  5950. </summary>
  5951. </member>
  5952. <member name="P:System.Web.SessionState.HttpSessionState.Mode">
  5953. <summary>
  5954. <para> Gets the current session-state mode.</para>
  5955. </summary>
  5956. </member>
  5957. <member name="P:System.Web.SessionState.HttpSessionState.IsCookieless">
  5958. <summary>
  5959. <para>Gets a value indicating whether the session ID is embedded in the URL or stored
  5960. in an HTTP cookie.</para>
  5961. </summary>
  5962. </member>
  5963. <member name="P:System.Web.SessionState.HttpSessionState.LCID">
  5964. <summary>
  5965. <para>Gets or sets the locale identifier (LCID) of the current session.</para>
  5966. </summary>
  5967. </member>
  5968. <member name="P:System.Web.SessionState.HttpSessionState.CodePage">
  5969. <summary>
  5970. <para>Gets or sets the code page identifier for the current session.</para>
  5971. </summary>
  5972. </member>
  5973. <member name="P:System.Web.SessionState.HttpSessionState.Contents">
  5974. <summary>
  5975. <para> Gets a reference to the current session-state object.</para>
  5976. </summary>
  5977. </member>
  5978. <member name="P:System.Web.SessionState.HttpSessionState.StaticObjects">
  5979. <summary>
  5980. <para>Gets a collection of objects declared by
  5981. <see langword="&lt;object Runat=&quot;Server&quot; Scope=&quot;Session&quot;/&gt;" /> tags within the ASP.NET application file global.asax.</para>
  5982. </summary>
  5983. </member>
  5984. <member name="P:System.Web.SessionState.HttpSessionState.Item(System.String)">
  5985. <summary>
  5986. <para>Gets or sets a session value by name.</para>
  5987. </summary>
  5988. <param name="name">The key name of the session value.</param>
  5989. </member>
  5990. <member name="P:System.Web.SessionState.HttpSessionState.Item(System.Int32)">
  5991. <summary>
  5992. <para>Gets or sets a session value by numerical index.</para>
  5993. </summary>
  5994. <param name="index">The numerical index of the session value.</param>
  5995. </member>
  5996. <member name="P:System.Web.SessionState.HttpSessionState.Count">
  5997. <summary>
  5998. <para> Gets the number of items in the session-state collection.</para>
  5999. </summary>
  6000. </member>
  6001. <member name="P:System.Web.SessionState.HttpSessionState.Keys">
  6002. <summary>
  6003. <para>Gets a collection of the keys of all values stored in the session.</para>
  6004. </summary>
  6005. </member>
  6006. <member name="P:System.Web.SessionState.HttpSessionState.SyncRoot">
  6007. <summary>
  6008. <para> Gets an object that can be used to synchronize access
  6009. to the collection of session-state values.</para>
  6010. </summary>
  6011. </member>
  6012. <member name="P:System.Web.SessionState.HttpSessionState.IsReadOnly">
  6013. <summary>
  6014. <para>Gets a value indicating whether the session is read-only.</para>
  6015. </summary>
  6016. </member>
  6017. <member name="P:System.Web.SessionState.HttpSessionState.IsSynchronized">
  6018. <summary>
  6019. <para> Gets a value indicating whether access to the
  6020. collection of session-state values is synchronized (thread safe).</para>
  6021. </summary>
  6022. </member>
  6023. <member name="T:System.Web.SessionState.SessionStateModule">
  6024. <summary>
  6025. <para>Provides session-state services for an application.</para>
  6026. </summary>
  6027. </member>
  6028. <member name="M:System.Web.SessionState.SessionStateModule.Init(System.Web.HttpApplication)">
  6029. <summary>
  6030. <para> Executes initialization code when a session-state
  6031. module is created.</para>
  6032. </summary>
  6033. <param name="app">The current application.</param>
  6034. </member>
  6035. <member name="M:System.Web.SessionState.SessionStateModule.Dispose">
  6036. <summary>
  6037. <para> Executes final cleanup code before the session-state
  6038. module is released from memory.</para>
  6039. </summary>
  6040. </member>
  6041. <member name="E:System.Web.SessionState.SessionStateModule.Start">
  6042. <summary>
  6043. <para> Occurs when a session is created.</para>
  6044. </summary>
  6045. </member>
  6046. <member name="E:System.Web.SessionState.SessionStateModule.End">
  6047. <summary>
  6048. <para> Occurs when a session ends.</para>
  6049. </summary>
  6050. </member>
  6051. <member name="M:System.Web.SessionState.SessionStateSectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)">
  6052. <summary>
  6053. <para>[To be supplied.]</para>
  6054. </summary>
  6055. </member>
  6056. <member name="M:System.Web.SessionState.IStateRuntime.StopProcessing">
  6057. <summary>
  6058. <para>[To be supplied.]</para>
  6059. </summary>
  6060. </member>
  6061. <member name="M:System.Web.SessionState.IStateRuntime.ProcessRequest(System.IntPtr,System.Int32,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.IntPtr)">
  6062. <summary>
  6063. <para>[To be supplied.]</para>
  6064. </summary>
  6065. </member>
  6066. <member name="M:System.Web.SessionState.StateRuntime.StopProcessing">
  6067. <summary>
  6068. <para>[To be supplied.]</para>
  6069. </summary>
  6070. </member>
  6071. <member name="M:System.Web.SessionState.StateRuntime.ProcessRequest(System.IntPtr,System.Int32,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.IntPtr)">
  6072. <summary>
  6073. <para>[To be supplied.]</para>
  6074. </summary>
  6075. </member>
  6076. <member name="M:System.Web.UI.TemplateParser.CompileIntoType">
  6077. <summary>
  6078. <para>[To be supplied.]</para>
  6079. </summary>
  6080. </member>
  6081. <member name="T:System.Web.UI.AttributeCollection">
  6082. <summary>
  6083. <para>Provides object-model access to all attributes declared
  6084. in the opening tag of an ASP.NET server control element. This class cannot be inherited.</para>
  6085. </summary>
  6086. </member>
  6087. <member name="M:System.Web.UI.AttributeCollection.#ctor(System.Web.UI.StateBag)">
  6088. <summary>
  6089. <para>Initializes a new instance of the <see cref="T:System.Web.UI.AttributeCollection" /> class.</para>
  6090. </summary>
  6091. <param name="bag">A <see cref="T:System.Web.UI.StateBag" /> object that contains the attribute keys and their values that are in the opening tag of the server control. </param>
  6092. </member>
  6093. <member name="M:System.Web.UI.AttributeCollection.Add(System.String,System.String)">
  6094. <summary>
  6095. <para> Adds an attribute to a server contol's
  6096. <see cref="T:System.Web.UI.AttributeCollection" /> object.</para>
  6097. </summary>
  6098. <param name="key">The index assigned to the new attribute in the collection.</param>
  6099. <param name=" value">The attribute to store in the collection.</param>
  6100. </member>
  6101. <member name="M:System.Web.UI.AttributeCollection.Remove(System.String)">
  6102. <summary>
  6103. <para> Removes an attribute from a server
  6104. control's <see cref="T:System.Web.UI.AttributeCollection" />object.</para>
  6105. </summary>
  6106. <param name="key">The key of the attribute to remove.</param>
  6107. </member>
  6108. <member name="M:System.Web.UI.AttributeCollection.Clear">
  6109. <summary>
  6110. <para> Removes all attributes from a server
  6111. control's <see cref="T:System.Web.UI.AttributeCollection" /> object.</para>
  6112. </summary>
  6113. </member>
  6114. <member name="M:System.Web.UI.AttributeCollection.Render(System.Web.UI.HtmlTextWriter)">
  6115. <summary>
  6116. <para>Writes the collection of attributes to the
  6117. specified <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream. In turn, the output stream writes
  6118. the collection to the Web Forms page.</para>
  6119. </summary>
  6120. <param name="writer">An <see cref="T:System.Web.UI.HtmlTextWriter" /> object that writes the attribute collection to the current output stream location.</param>
  6121. </member>
  6122. <member name="M:System.Web.UI.AttributeCollection.AddAttributes(System.Web.UI.HtmlTextWriter)">
  6123. <summary>
  6124. <para>Adds attributes from the
  6125. <see langword="AttributeCollection" /> class to the <see cref="T:System.Web.UI.HtmlTextWriter" />
  6126. object that is responsible for rendering the attributes as HTML to an
  6127. ASP.NET server control.</para>
  6128. </summary>
  6129. <param name="writer">An <see cref="T:System.Web.UI.HtmlTextWriter" /> that writes the added attribute to the opening tag of an ASP.NET server control.</param>
  6130. </member>
  6131. <member name="P:System.Web.UI.AttributeCollection.Item(System.String)">
  6132. <summary>
  6133. <para> Gets or sets a specified attribute value for a server control.</para>
  6134. </summary>
  6135. <param name="key">The location of the attribute within the collection.</param>
  6136. </member>
  6137. <member name="P:System.Web.UI.AttributeCollection.Keys">
  6138. <summary>
  6139. <para> Gets a collection of keys to all attributes in
  6140. the server control's <see cref="T:System.Web.UI.AttributeCollection" /> object.</para>
  6141. </summary>
  6142. </member>
  6143. <member name="P:System.Web.UI.AttributeCollection.Count">
  6144. <summary>
  6145. <para> Gets the number of attributes in the
  6146. <see cref="T:System.Web.UI.AttributeCollection" /> object.</para>
  6147. </summary>
  6148. </member>
  6149. <member name="P:System.Web.UI.AttributeCollection.CssStyle">
  6150. <summary>
  6151. <para>Gets a collection of styles for the ASP.NET server control to which the
  6152. current <see cref="T:System.Web.UI.AttributeCollection" /> object belongs. </para>
  6153. </summary>
  6154. </member>
  6155. <member name="T:System.Web.UI.ControlBuilder">
  6156. <summary>
  6157. <para> Supports the page parser in building a control and the child controls it
  6158. contains. </para>
  6159. </summary>
  6160. </member>
  6161. <member name="M:System.Web.UI.ControlBuilder.Init(System.Web.UI.TemplateParser,System.Web.UI.ControlBuilder,System.Type,System.String,System.String,System.Collections.IDictionary)">
  6162. <summary>
  6163. <para>Initializes the control builder when a Web request is made.</para>
  6164. </summary>
  6165. <param name="parser">The <see cref="T:System.Web.UI.TemplateParser" /> object responsible for parsing the control.</param>
  6166. <param name=" parentBuilder">The <see cref="T:System.Web.UI.ControlBuilder" /> object responsible for building the control.</param>
  6167. <param name=" type">The <see cref="T:System.Type" /> assigned to the control that the builder will create.</param>
  6168. <param name=" tagName">The name of the tag to be built. This allows the builder to support multiple tag types.</param>
  6169. <param name=" id">The <see cref="P:System.Web.UI.ControlBuilder.ID" /> attribute assigned to the control.</param>
  6170. <param name=" attribs">The <see cref="T:System.Collections.IDictionary" /> object that holds all the specified tag attributes.</param>
  6171. </member>
  6172. <member name="M:System.Web.UI.ControlBuilder.GetChildControlType(System.String,System.Collections.IDictionary)">
  6173. <summary>
  6174. <para> Obtains the <see cref="T:System.Type" /> for the control's children.</para>
  6175. </summary>
  6176. <param name="tagName">The tag name of the child.</param>
  6177. <param name=" attribs">An array of attributes contained in the child control.</param>
  6178. <returns>
  6179. <para>The <see cref="T:System.Type" /> of
  6180. the specified control's child.</para>
  6181. </returns>
  6182. </member>
  6183. <member name="M:System.Web.UI.ControlBuilder.HasBody">
  6184. <summary>
  6185. <para>Determines if a control has both an opening and closing tag. </para>
  6186. </summary>
  6187. <returns>
  6188. <para>
  6189. <see langword="true" /> if the control has an opening and closing tag;
  6190. otherwise, <see langword="false" />.</para>
  6191. </returns>
  6192. </member>
  6193. <member name="M:System.Web.UI.ControlBuilder.AllowWhitespaceLiterals">
  6194. <summary>
  6195. <para> Determines whether the
  6196. white space literals in the control must be processed or ignored.</para>
  6197. </summary>
  6198. <returns>
  6199. <para>
  6200. <see langword="true" /> if the white
  6201. space literals in the control must be processed; otherwise,
  6202. <see langword="false" />
  6203. .</para>
  6204. </returns>
  6205. </member>
  6206. <member name="M:System.Web.UI.ControlBuilder.AppendSubBuilder(System.Web.UI.ControlBuilder)">
  6207. <summary>
  6208. <para>Adds builders to the <see cref="T:System.Web.UI.ControlBuilder" /> object for any child controls that
  6209. belong to the container control.</para>
  6210. </summary>
  6211. <param name="subBuilder">The <see langword="ControlBuilder" /> object assigned to the child control.</param>
  6212. </member>
  6213. <member name="M:System.Web.UI.ControlBuilder.AppendLiteralString(System.String)">
  6214. <summary>
  6215. <para> Adds literal content to a
  6216. control.</para>
  6217. </summary>
  6218. <param name="s">The content to add to the control.</param>
  6219. </member>
  6220. <member name="M:System.Web.UI.ControlBuilder.CloseControl">
  6221. <summary>
  6222. <para> Called by the parser to inform the builder that the parsing of the control is complete.</para>
  6223. </summary>
  6224. </member>
  6225. <member name="M:System.Web.UI.ControlBuilder.HtmlDecodeLiterals">
  6226. <summary>
  6227. <para>Determines whether the literal string of an HTML control must be
  6228. HTML decoded.</para>
  6229. </summary>
  6230. <returns>
  6231. <para>
  6232. <see langword="true" /> if the HTML
  6233. control literal string is to be decoded; otherwise, <see langword="false" />
  6234. .</para>
  6235. </returns>
  6236. </member>
  6237. <member name="M:System.Web.UI.ControlBuilder.NeedsTagInnerText">
  6238. <summary>
  6239. <para>Determines if the control builder needs to get its inner text. If so, the <see cref="M:System.Web.UI.ControlBuilder.SetTagInnerText(System.String)" /> method must be called.</para>
  6240. </summary>
  6241. <returns>
  6242. <para>
  6243. <see langword="true" /> if the control
  6244. builder needs to get its inner text. The default is <see langword="false" /> .</para>
  6245. </returns>
  6246. </member>
  6247. <member name="M:System.Web.UI.ControlBuilder.SetTagInnerText(System.String)">
  6248. <summary>
  6249. <para>Provides the <see cref="T:System.Web.UI.ControlBuilder" /> with the inner text of the control
  6250. tag.</para>
  6251. </summary>
  6252. <param name="text">The text to be provided.</param>
  6253. </member>
  6254. <member name="M:System.Web.UI.ControlBuilder.OnAppendToParentBuilder(System.Web.UI.ControlBuilder)">
  6255. <summary>
  6256. <para> Notifies the <see cref="T:System.Web.UI.ControlBuilder" /> that it is being
  6257. added to a parent control builder.</para>
  6258. </summary>
  6259. <param name="parentBuilder">The <see cref="T:System.Web.UI.ControlBuilder" /> object to which the current builder is added.</param>
  6260. </member>
  6261. <member name="M:System.Web.UI.ControlBuilder.CreateBuilderFromType(System.Web.UI.TemplateParser,System.Web.UI.ControlBuilder,System.Type,System.String,System.String,System.Collections.IDictionary,System.Int32,System.String)">
  6262. <summary>
  6263. <para>Creates a <see cref="T:System.Web.UI.ControlBuilder" /> object for the specified tag.</para>
  6264. </summary>
  6265. <param name="parser">The <see cref="T:System.Web.UI.TemplateParser" /> object responsible for parsing the control.</param>
  6266. <param name=" parentBuilder">The <see cref="T:System.Web.UI.ControlBuilder" /> object responsible for building the control.</param>
  6267. <param name=" type">The <see cref="T:System.Type" /> assigned to the control that the builder will create.</param>
  6268. <param name=" tagName">The name of the tag to be built. This allows the builder to support multiple tag types.</param>
  6269. <param name=" id">The <see cref="P:System.Web.UI.ControlBuilder.ID" /> attribute assigned to the control.</param>
  6270. <param name=" attribs">The <see cref="T:System.Collections.IDictionary" /> object that holds all the specified tag attributes.</param>
  6271. <param name=" line">The source file line number for the specified control.</param>
  6272. <param name=" sourceFileName">The name of the source file from which the control is to be created.</param>
  6273. <returns>
  6274. <para>The builder that is responsible for creating the control.</para>
  6275. </returns>
  6276. </member>
  6277. <member name="P:System.Web.UI.ControlBuilder.InDesigner">
  6278. <summary>
  6279. <para>Returns whether the <see cref="T:System.Web.UI.ControlBuilder" /> is running in the designer.</para>
  6280. </summary>
  6281. </member>
  6282. <member name="P:System.Web.UI.ControlBuilder.FIsNonParserAccessor">
  6283. <summary>
  6284. <para>Determines whether the control implements the <see cref="T:System.Web.UI.IParserAccessor" />
  6285. interface.</para>
  6286. </summary>
  6287. </member>
  6288. <member name="P:System.Web.UI.ControlBuilder.FChildrenAsProperties">
  6289. <summary>
  6290. <para>Determines whether the control has a <see cref="T:System.Web.UI.ParseChildrenAttribute" /> with <see cref="P:System.Web.UI.ParseChildrenAttribute.ChildrenAsProperties" /> set to
  6291. <see langword="true." /></para>
  6292. </summary>
  6293. </member>
  6294. <member name="P:System.Web.UI.ControlBuilder.ControlType">
  6295. <summary>
  6296. <para>Gets the <see cref="T:System.Type" /> for the control to be created.</para>
  6297. </summary>
  6298. </member>
  6299. <member name="P:System.Web.UI.ControlBuilder.ID">
  6300. <summary>
  6301. <para>Gets or sets the identifier property for the control to be built.</para>
  6302. </summary>
  6303. </member>
  6304. <member name="P:System.Web.UI.ControlBuilder.TagName">
  6305. <summary>
  6306. <para>Gets the tag name for the control to be built.</para>
  6307. </summary>
  6308. </member>
  6309. <member name="P:System.Web.UI.ControlBuilder.HasAspCode">
  6310. <summary>
  6311. <para> Gets a value indicating whether the control contains any
  6312. code blocks.</para>
  6313. </summary>
  6314. </member>
  6315. <member name="M:System.Web.UI.CollectionBuilder.Init(System.Web.UI.TemplateParser,System.Web.UI.ControlBuilder,System.Type,System.String,System.String,System.Collections.IDictionary)">
  6316. <summary>
  6317. <para>Initializes the <see cref="T:System.Web.UI.CollectionBuilder" /> object when a Web request is
  6318. made.</para>
  6319. </summary>
  6320. <param name="parser">The <see cref="T:System.Web.UI.TemplateParser" /> object for the currently requested server control.</param>
  6321. <param name=" parentBuilder">The <see cref="T:System.Web.UI.ControlBuilder" /> object for the parent server control.</param>
  6322. <param name=" type">The <see cref="T:System.Type" /> assigned to the collection.</param>
  6323. <param name=" tagName">The tag name assigned to the collection.</param>
  6324. <param name="ID">The programmatic identifier of the parent control.</param>
  6325. <param name=" attribs">An array that contains the attributes assigned to the parent control.</param>
  6326. </member>
  6327. <member name="M:System.Web.UI.CollectionBuilder.GetChildControlType(System.String,System.Collections.IDictionary)">
  6328. <summary>
  6329. <para>Maps the tag name of the child control to its specified
  6330. type.</para>
  6331. </summary>
  6332. <param name="tagName">The tag name of the child control.</param>
  6333. <param name=" attribs">The array of attributes that belong to the child control.</param>
  6334. <returns>
  6335. <para>A parser mapping from the given <paramref name="tagName" />
  6336. parameter to a <see cref="T:System.Type" /> object.</para>
  6337. </returns>
  6338. </member>
  6339. <member name="M:System.Web.UI.CollectionBuilder.AppendLiteralString(System.String)">
  6340. <summary>
  6341. <para>Adds whitespace literal content to the child control.</para>
  6342. </summary>
  6343. <param name="s">The literal string to add to the control.</param>
  6344. </member>
  6345. <member name="T:System.Web.UI.Control">
  6346. <summary>
  6347. <para> Defines the properties, methods, and events
  6348. that are shared by all ASP.NET server controls.</para>
  6349. </summary>
  6350. </member>
  6351. <member name="T:System.Web.UI.IParserAccessor">
  6352. <summary>
  6353. <para> Defines the method that ASP.NET server controls must
  6354. implement to recognize when elements, either HTML or XML, are parsed.</para>
  6355. </summary>
  6356. </member>
  6357. <member name="M:System.Web.UI.IParserAccessor.AddParsedSubObject(System.Object)">
  6358. <summary>
  6359. <para>When implemented by an ASP.NET server control, notifies
  6360. the server control that an element, either XML or HTML, was parsed.</para>
  6361. </summary>
  6362. <param name="obj">The <see cref="T:System.Object" /> that was parsed.</param>
  6363. </member>
  6364. <member name="T:System.Web.UI.IDataBindingsAccessor">
  6365. <summary>
  6366. <para>Allows access to the collection of data-binding
  6367. expressions on a control at design time.</para>
  6368. </summary>
  6369. </member>
  6370. <member name="P:System.Web.UI.IDataBindingsAccessor.DataBindings">
  6371. <summary>
  6372. <para>Indicates a collection of all data bindings on the control. This property is
  6373. read-only.</para>
  6374. </summary>
  6375. </member>
  6376. <member name="P:System.Web.UI.IDataBindingsAccessor.HasDataBindings">
  6377. <summary>
  6378. <para> Returns whether the
  6379. control contains any data-binding logic.</para>
  6380. </summary>
  6381. </member>
  6382. <member name="M:System.Web.UI.Control.#ctor">
  6383. <summary>
  6384. <para>Initializes a new instance of the <see cref="T:System.Web.UI.Control" /> class.</para>
  6385. </summary>
  6386. </member>
  6387. <member name="M:System.Web.UI.Control.OnDataBinding(System.EventArgs)">
  6388. <summary>
  6389. <para>Raises the <see cref="E:System.Web.UI.Control.DataBinding" />
  6390. event.</para>
  6391. </summary>
  6392. <param name="e">An <see langword="EventArgs" /> object that contains the event data.</param>
  6393. </member>
  6394. <member name="M:System.Web.UI.Control.DataBind">
  6395. <summary>
  6396. <para> Binds a data source to the invoked server control and all its child
  6397. controls.</para>
  6398. </summary>
  6399. </member>
  6400. <member name="M:System.Web.UI.Control.AddParsedSubObject(System.Object)">
  6401. <summary>
  6402. <para>Notifies the server control that an element, either XML
  6403. or HTML, was parsed, and adds the element to the server control's <see cref="T:System.Web.UI.ControlCollection" />
  6404. object.</para>
  6405. </summary>
  6406. <param name="obj">An <see cref="T:System.Object" /> that represents the parsed element.</param>
  6407. </member>
  6408. <member name="M:System.Web.UI.Control.OnInit(System.EventArgs)">
  6409. <summary>
  6410. <para>Raises the <see cref="E:System.Web.UI.Control.Init" />
  6411. event.</para>
  6412. </summary>
  6413. <param name="e">An <see cref="T:System.EventArgs" /> object that contains the event data.</param>
  6414. </member>
  6415. <member name="M:System.Web.UI.Control.ClearChildViewState">
  6416. <summary>
  6417. <para> Deletes the view-state information for all the server control's child
  6418. controls.</para>
  6419. </summary>
  6420. </member>
  6421. <member name="M:System.Web.UI.Control.LoadViewState(System.Object)">
  6422. <summary>
  6423. <para> Restores view-state information from a previous page
  6424. request that was saved by the <see cref="M:System.Web.UI.Control.SaveViewState" /> method.</para>
  6425. </summary>
  6426. <param name="savedState">An <see cref="T:System.Object" /> that represents the control state to be restored.</param>
  6427. </member>
  6428. <member name="M:System.Web.UI.Control.MapPathSecure(System.String)">
  6429. <summary>
  6430. <para> Retrieves a mapped physical file path relative
  6431. to the source file, if the requesting server control has sufficient
  6432. security permissions to read the mapped result.</para>
  6433. </summary>
  6434. <param name="virtualPath">A relative or root relative URL.</param>
  6435. <returns>
  6436. <para>The physical path to the requested file.</para>
  6437. </returns>
  6438. </member>
  6439. <member name="M:System.Web.UI.Control.OnLoad(System.EventArgs)">
  6440. <summary>
  6441. <para>Raises the <see cref="E:System.Web.UI.Control.Load" />
  6442. event.</para>
  6443. </summary>
  6444. <param name="e">The <see cref="T:System.EventArgs" /> object that contains the event data.</param>
  6445. </member>
  6446. <member name="M:System.Web.UI.Control.OnPreRender(System.EventArgs)">
  6447. <summary>
  6448. <para>Raises the <see cref="E:System.Web.UI.Control.PreRender" />
  6449. event.</para>
  6450. </summary>
  6451. <param name="e">An <see cref="T:System.EventArgs" /> object that contains the event data.</param>
  6452. </member>
  6453. <member name="M:System.Web.UI.Control.SaveViewState">
  6454. <summary>
  6455. <para> Saves any server control view-state changes that have occurred since the time the page
  6456. was posted back to the server. </para>
  6457. </summary>
  6458. <returns>
  6459. <para>Returns the server control's current view state. If there is no
  6460. view state associated with the control, this method returns <see langword="null" /> .</para>
  6461. </returns>
  6462. </member>
  6463. <member name="M:System.Web.UI.Control.Render(System.Web.UI.HtmlTextWriter)">
  6464. <summary>
  6465. <para>Sends server control content to a provided <see cref="T:System.Web.UI.HtmlTextWriter" /> object, which writes the content to
  6466. be rendered on
  6467. the client.</para>
  6468. </summary>
  6469. <param name="writer">The <see langword="HtmlTextWriter" /> object that receives the server control content.</param>
  6470. </member>
  6471. <member name="M:System.Web.UI.Control.RenderChildren(System.Web.UI.HtmlTextWriter)">
  6472. <summary>
  6473. <para>Outputs the content of a server control's children to a provided <see cref="T:System.Web.UI.HtmlTextWriter" /> object, which writes
  6474. the content to be rendered on
  6475. the client.</para>
  6476. </summary>
  6477. <param name="writer">The <see langword="HtmlTextWriter" /> object that receives the rendered content.</param>
  6478. </member>
  6479. <member name="M:System.Web.UI.Control.RenderControl(System.Web.UI.HtmlTextWriter)">
  6480. <summary>
  6481. <para>Outputs server control content to a provided <see cref="T:System.Web.UI.HtmlTextWriter" /> object and stores
  6482. tracing information about the control if tracing is enabled.</para>
  6483. </summary>
  6484. <param name="writer">The <see langword="HtmlTextWriter" /> object that receives the control content.</param>
  6485. </member>
  6486. <member name="M:System.Web.UI.Control.OnUnload(System.EventArgs)">
  6487. <summary>
  6488. <para>Raises the <see cref="E:System.Web.UI.Control.Unload" /> event.</para>
  6489. <note type="note">
  6490. Server controls should perform any final cleanup, such as
  6491. closing files, closing database connections, and discarding objects, during this stage
  6492. of the server control lifecycle.
  6493. </note>
  6494. </summary>
  6495. <param name="e">An <see cref="T:System.EventArgs" /> object that contains event data.</param>
  6496. </member>
  6497. <member name="M:System.Web.UI.Control.Dispose">
  6498. <summary>
  6499. <para> Enables a server control
  6500. to perform final clean up before it is released from memory.</para>
  6501. </summary>
  6502. </member>
  6503. <member name="M:System.Web.UI.Control.RaiseBubbleEvent(System.Object,System.EventArgs)">
  6504. <summary>
  6505. <para> Assigns any sources of the event and its information to the control's parent. </para>
  6506. </summary>
  6507. <param name="source">The source of the event.</param>
  6508. <param name=" args">An <see cref="T:System.EventArgs" /> object that contains the event data.</param>
  6509. </member>
  6510. <member name="M:System.Web.UI.Control.OnBubbleEvent(System.Object,System.EventArgs)">
  6511. <summary>
  6512. <para> Determines whether the event for the server control is passed up the page's UI server
  6513. control hierarchy.</para>
  6514. </summary>
  6515. <param name="source">The source of the event.</param>
  6516. <param name=" args">An <see cref="T:System.EventArgs" /> object that contains the event data.</param>
  6517. <returns>
  6518. <para>
  6519. <see langword="true" /> if the event has been canceled; otherwise,
  6520. <see langword="false" />. The default is <see langword="false" />.</para>
  6521. </returns>
  6522. </member>
  6523. <member name="M:System.Web.UI.Control.CreateControlCollection">
  6524. <summary>
  6525. <para>Creates a new <see cref="T:System.Web.UI.ControlCollection" /> object to hold the child controls (both literal and server) of the server control.</para>
  6526. </summary>
  6527. <returns>
  6528. <para>A <see langword="ControlCollection" /> object to contain the current server control's
  6529. child server controls.</para>
  6530. </returns>
  6531. </member>
  6532. <member name="M:System.Web.UI.Control.CreateChildControls">
  6533. <summary>
  6534. <para> Notifies server controls that use composition-based implementation to create any child
  6535. controls they contain in preparation for posting back or rendering.
  6536. </para>
  6537. </summary>
  6538. </member>
  6539. <member name="M:System.Web.UI.Control.ResolveUrl(System.String)">
  6540. <summary>
  6541. <para>Resolves a relative URL to an absolute URL based on the
  6542. value passed to the <see cref="P:System.Web.UI.Control.TemplateSourceDirectory" />
  6543. property. </para>
  6544. </summary>
  6545. <param name="relativeUrl">The relative URL associated with the <see langword="TemplateSourceDirectory" /> property.</param>
  6546. <returns>
  6547. <para>The absolute URL.</para>
  6548. </returns>
  6549. </member>
  6550. <member name="M:System.Web.UI.Control.FindControl(System.String)">
  6551. <summary>
  6552. <para>Searches the current naming container for a server control with
  6553. the specified <paramref name="id" /> parameter.</para>
  6554. </summary>
  6555. <param name="id">The identifier for the control to be found.</param>
  6556. <returns>
  6557. <para>The specified control, or <see langword="null" /> if the specified control
  6558. does not exist.</para>
  6559. </returns>
  6560. </member>
  6561. <member name="M:System.Web.UI.Control.HasControls">
  6562. <summary>
  6563. <para>Determines if the server control contains any child
  6564. controls.</para>
  6565. </summary>
  6566. <returns>
  6567. <para>
  6568. <see langword="true" /> if the control contains other
  6569. controls; otherwise, <see langword="false" /> .</para>
  6570. </returns>
  6571. </member>
  6572. <member name="M:System.Web.UI.Control.IsLiteralContent">
  6573. <summary>
  6574. <para> Determines
  6575. if the server control holds only literal content.</para>
  6576. </summary>
  6577. <returns>
  6578. <para>
  6579. <see langword="true" /> if the server control contains solely
  6580. literal content; otherwise <see langword="false" /> .</para>
  6581. </returns>
  6582. </member>
  6583. <member name="M:System.Web.UI.Control.TrackViewState">
  6584. <summary>
  6585. <para> Causes tracking of view-state changes to the server control so
  6586. they can be stored in the server control's <see cref="T:System.Web.UI.StateBag" /> object. This object is accessible through
  6587. the <see cref="P:System.Web.UI.Control.ViewState" qualify="true" />
  6588. property.</para>
  6589. </summary>
  6590. </member>
  6591. <member name="M:System.Web.UI.Control.EnsureChildControls">
  6592. <summary>
  6593. <para> Determines whether the server control contains child controls.
  6594. If it does not, it creates child
  6595. controls. </para>
  6596. </summary>
  6597. </member>
  6598. <member name="P:System.Web.UI.Control.ClientID">
  6599. <summary>
  6600. <para> Gets the server control identifier
  6601. generated by ASP.NET. </para>
  6602. </summary>
  6603. </member>
  6604. <member name="E:System.Web.UI.Control.Disposed">
  6605. <summary>
  6606. <para> Occurs when a server control is released from memory,
  6607. which is the last stage of the server control
  6608. lifecycle when an ASP.NET page is requested.</para>
  6609. </summary>
  6610. </member>
  6611. <member name="P:System.Web.UI.Control.Context">
  6612. <summary>
  6613. <para>Gets the <see cref="T:System.Web.HttpContext" /> object associated with the server control for the current Web request.</para>
  6614. </summary>
  6615. </member>
  6616. <member name="P:System.Web.UI.Control.Events">
  6617. <summary>
  6618. <para>Gets a list of event handler delegates for the control. This property is
  6619. read-only.</para>
  6620. </summary>
  6621. </member>
  6622. <member name="P:System.Web.UI.Control.ID">
  6623. <summary>
  6624. <para> Gets or
  6625. sets the programmatic identifier assigned to the server control.</para>
  6626. </summary>
  6627. </member>
  6628. <member name="P:System.Web.UI.Control.EnableViewState">
  6629. <summary>
  6630. <para> Gets or sets a value indicating whether the server control persists
  6631. its view state, and the view state of any child controls it contains, to
  6632. the requesting client.
  6633. </para>
  6634. </summary>
  6635. </member>
  6636. <member name="P:System.Web.UI.Control.NamingContainer">
  6637. <summary>
  6638. <para> Gets a reference to the server control's naming
  6639. container, which creates a unique namespace for differentiating between server
  6640. controls with the same <see cref="P:System.Web.UI.Control.ID" qualify="true" />
  6641. property value.</para>
  6642. </summary>
  6643. </member>
  6644. <member name="P:System.Web.UI.Control.Page">
  6645. <summary>
  6646. <para> Gets a reference to the <see cref="T:System.Web.UI.Page" /> instance that contains the
  6647. server control.</para>
  6648. </summary>
  6649. </member>
  6650. <member name="P:System.Web.UI.Control.Parent">
  6651. <summary>
  6652. <para> Gets a reference to the server control's parent control in the page control hierarchy.</para>
  6653. </summary>
  6654. </member>
  6655. <member name="P:System.Web.UI.Control.TemplateSourceDirectory">
  6656. <summary>
  6657. <para> Gets the virtual directory of the <see cref="T:System.Web.UI.Page" />
  6658. or <see cref="T:System.Web.UI.UserControl" /> that contains the current server control.</para>
  6659. </summary>
  6660. </member>
  6661. <member name="P:System.Web.UI.Control.Site">
  6662. <summary>
  6663. <para> Gets information about the Web site to which the server control belongs.</para>
  6664. </summary>
  6665. </member>
  6666. <member name="P:System.Web.UI.Control.Visible">
  6667. <summary>
  6668. <para> Gets or sets a value that indicates whether a server control is rendered as UI on
  6669. the page.
  6670. </para>
  6671. </summary>
  6672. </member>
  6673. <member name="P:System.Web.UI.Control.UniqueID">
  6674. <summary>
  6675. <para> Gets the unique, hierarchically-qualified identifier for the server control.</para>
  6676. </summary>
  6677. </member>
  6678. <member name="E:System.Web.UI.Control.DataBinding">
  6679. <summary>
  6680. <para> Occurs when the server control binds to a data source.</para>
  6681. </summary>
  6682. </member>
  6683. <member name="E:System.Web.UI.Control.Init">
  6684. <summary>
  6685. <para> Occurs when
  6686. the server control is initialized, which is the first step in the its
  6687. lifecycle.</para>
  6688. </summary>
  6689. </member>
  6690. <member name="E:System.Web.UI.Control.Load">
  6691. <summary>
  6692. <para>Occurs when the server control is loaded into the <see cref="T:System.Web.UI.Page" />
  6693. object.</para>
  6694. </summary>
  6695. </member>
  6696. <member name="E:System.Web.UI.Control.PreRender">
  6697. <summary>
  6698. <para>Occurs when the server control is about to render to its
  6699. containing <see cref="T:System.Web.UI.Page" /> object.</para>
  6700. </summary>
  6701. </member>
  6702. <member name="E:System.Web.UI.Control.Unload">
  6703. <summary>
  6704. <para> Occurs
  6705. when the server control is unloaded from memory. </para>
  6706. </summary>
  6707. </member>
  6708. <member name="P:System.Web.UI.Control.HasChildViewState">
  6709. <summary>
  6710. <para> Gets a value indicating whether the current server control's child controls have any
  6711. saved view-state settings.</para>
  6712. </summary>
  6713. </member>
  6714. <member name="P:System.Web.UI.Control.Controls">
  6715. <summary>
  6716. <para> Gets a <see cref="T:System.Web.UI.ControlCollection" /> object that represents the child controls for a specified server control in the
  6717. UI hierarchy.</para>
  6718. </summary>
  6719. </member>
  6720. <member name="P:System.Web.UI.Control.ViewState">
  6721. <summary>
  6722. <para>Gets a dictionary of state information that allows you to save and restore the view
  6723. state of a server control across multiple requests for the same page.</para>
  6724. </summary>
  6725. </member>
  6726. <member name="P:System.Web.UI.Control.ViewStateIgnoresCase">
  6727. <summary>
  6728. <para>Gets a value that indicates whether the <see cref="T:System.Web.UI.StateBag" /> object is case-insensitive.</para>
  6729. </summary>
  6730. </member>
  6731. <member name="P:System.Web.UI.Control.ChildControlsCreated">
  6732. <summary>
  6733. <para>Gets a value that indicates whether the server control's child controls have been created.</para>
  6734. </summary>
  6735. </member>
  6736. <member name="P:System.Web.UI.Control.IsTrackingViewState">
  6737. <summary>
  6738. <para>Gets a value that indicates whether ther server control
  6739. is saving changes to
  6740. its view state. </para>
  6741. </summary>
  6742. </member>
  6743. <member name="T:System.Web.UI.ControlBuilderAttribute">
  6744. <summary>
  6745. <para> Specifies a <see cref="T:System.Web.UI.ControlBuilder" /> class for building a custom control within
  6746. the ASP.NET parser. This class cannot be inherited.</para>
  6747. </summary>
  6748. </member>
  6749. <member name="P:System.Web.UI.ControlBuilderAttribute.BuilderType">
  6750. <summary>
  6751. <para> Gets the <see cref="T:System.Type" /> of the control associated with
  6752. the attribute. This property is read-only.</para>
  6753. </summary>
  6754. </member>
  6755. <member name="T:System.Web.UI.ControlCollection">
  6756. <summary>
  6757. <para> Provides a collection
  6758. container that enables ASP.NET server controls to maintain a
  6759. list of their child controls.</para>
  6760. </summary>
  6761. </member>
  6762. <member name="M:System.Web.UI.ControlCollection.#ctor(System.Web.UI.Control)">
  6763. <summary>
  6764. <para>Initializes a new instance of the <see cref="T:System.Web.UI.ControlCollection" /> class for the parent
  6765. server control specified in the <paramref name="owner" /> parameter.</para>
  6766. </summary>
  6767. <param name="owner">The ASP.NET server control that the control collection is created for.</param>
  6768. </member>
  6769. <member name="M:System.Web.UI.ControlCollection.Add(System.Web.UI.Control)">
  6770. <summary>
  6771. <para>Adds the specified <see cref="T:System.Web.UI.Control" />
  6772. object to the collection.</para>
  6773. </summary>
  6774. <param name="child">The <see langword="Control" /> object to add to the collection.</param>
  6775. </member>
  6776. <member name="M:System.Web.UI.ControlCollection.AddAt(System.Int32,System.Web.UI.Control)">
  6777. <summary>
  6778. <para>Adds the specified <see cref="T:System.Web.UI.Control" /> object to the collection at the specified index location.</para>
  6779. </summary>
  6780. <param name=" index">The location in the array to add the child control.</param>
  6781. <param name="child">The <see langword="Control" /> object to add to the collection.</param>
  6782. </member>
  6783. <member name="M:System.Web.UI.ControlCollection.Clear">
  6784. <summary>
  6785. <para>Removes all controls from the current server
  6786. control's <see cref="T:System.Web.UI.ControlCollection" /> object.</para>
  6787. </summary>
  6788. </member>
  6789. <member name="M:System.Web.UI.ControlCollection.Contains(System.Web.UI.Control)">
  6790. <summary>
  6791. <para>Determines whether the specified server control is in the parent server control's <see cref="T:System.Web.UI.ControlCollection" /> object.</para>
  6792. </summary>
  6793. <param name="c">The server control to search for in the collection.</param>
  6794. <returns>
  6795. <para>
  6796. <see langword="true" /> if the specified server control exists
  6797. in the collection; otherwise, <see langword="false" /> .</para>
  6798. </returns>
  6799. </member>
  6800. <member name="M:System.Web.UI.ControlCollection.IndexOf(System.Web.UI.Control)">
  6801. <summary>
  6802. <para>Retrieves the index of a specified <see cref="T:System.Web.UI.Control" />
  6803. object in the collection.</para>
  6804. </summary>
  6805. <param name="value">The <see langword="Control" /> object for which the index is returned.</param>
  6806. <returns>
  6807. <para>The index of the specified server control. If the server
  6808. control is not currently a member of the collection, it returns
  6809. -1.</para>
  6810. </returns>
  6811. </member>
  6812. <member name="M:System.Web.UI.ControlCollection.GetEnumerator">
  6813. <summary>
  6814. <para>Retrieves an enumerator that can iterate through the
  6815. <see langword="ControlCollection" /> object.</para>
  6816. </summary>
  6817. <returns>
  6818. <para>The enumerator to iterate through the collection.</para>
  6819. </returns>
  6820. </member>
  6821. <member name="M:System.Web.UI.ControlCollection.CopyTo(System.Array,System.Int32)">
  6822. <summary>
  6823. <para> Copies the child controls stored in the <see cref="T:System.Web.UI.ControlCollection" />
  6824. object to an <see cref="T:System.Array" qualify="true" /> object, beginning at the specified index location in
  6825. the <see langword="Array" /> .</para>
  6826. </summary>
  6827. <param name="array">The <see langword="Array" /> to copy the child controls to.</param>
  6828. <param name=" index">The zero-based relative index in <paramref name="array" /> where copying begins.</param>
  6829. </member>
  6830. <member name="M:System.Web.UI.ControlCollection.RemoveAt(System.Int32)">
  6831. <summary>
  6832. <para>Removes a child control, at the specified index location, from the <see cref="T:System.Web.UI.ControlCollection" /> object.</para>
  6833. </summary>
  6834. <param name="index">The ordinal index of the server control to be removed from the collection.</param>
  6835. </member>
  6836. <member name="M:System.Web.UI.ControlCollection.Remove(System.Web.UI.Control)">
  6837. <summary>
  6838. <para> Removes the specified server control from the parent server control's <see cref="T:System.Web.UI.ControlCollection" />
  6839. object.</para>
  6840. </summary>
  6841. <param name="value">The server control to be removed.</param>
  6842. </member>
  6843. <member name="P:System.Web.UI.ControlCollection.Count">
  6844. <summary>
  6845. <para> Gets the number of server controls in the
  6846. <see langword="ControlCollection" /> object for the specified ASP.NET
  6847. server control.</para>
  6848. </summary>
  6849. </member>
  6850. <member name="P:System.Web.UI.ControlCollection.Owner">
  6851. <summary>
  6852. <para>Gets the ASP.NET server control to which the <see cref="T:System.Web.UI.ControlCollection" /> object belongs.</para>
  6853. </summary>
  6854. </member>
  6855. <member name="P:System.Web.UI.ControlCollection.SyncRoot">
  6856. <summary>
  6857. <para>Gets an object that can be used to synchronize access to the collection of controls.</para>
  6858. </summary>
  6859. </member>
  6860. <member name="P:System.Web.UI.ControlCollection.IsReadOnly">
  6861. <summary>
  6862. <para>Gets a value indicating whether the
  6863. <see langword="ControlCollection" /> object is read-only.</para>
  6864. </summary>
  6865. </member>
  6866. <member name="P:System.Web.UI.ControlCollection.IsSynchronized">
  6867. <summary>
  6868. <para> Gets a value indicating whether the
  6869. <see langword="ControlCollection" />
  6870. is synchronized.</para>
  6871. </summary>
  6872. </member>
  6873. <member name="P:System.Web.UI.ControlCollection.Item(System.Int32)">
  6874. <summary>
  6875. <para>Gets a reference to the server control at the specified index location in the
  6876. <see langword="ControlCollection" /> object.</para>
  6877. </summary>
  6878. <param name="index">The location of the server control in the <see langword="ControlCollection" /> .</param>
  6879. </member>
  6880. <member name="T:System.Web.UI.CssStyleCollection">
  6881. <summary>
  6882. <para> Contains the HTML cascading-style sheets (CSS) inline style attributes for a specified HTML server
  6883. control. This class cannot be inherited.</para>
  6884. </summary>
  6885. </member>
  6886. <member name="M:System.Web.UI.CssStyleCollection.Add(System.String,System.String)">
  6887. <summary>
  6888. <para>Adds a style item to the
  6889. <see langword="CssStyleCollection" /> object.</para>
  6890. </summary>
  6891. <param name="key">The index assigned to the new style in the collection.</param>
  6892. <param name=" value">The style to store in the collection.</param>
  6893. </member>
  6894. <member name="M:System.Web.UI.CssStyleCollection.Remove(System.String)">
  6895. <summary>
  6896. <para>Removes a style item from the <see langword="CssStyleCollection" /> object.</para>
  6897. </summary>
  6898. <param name="key">The index of the style item to remove.</param>
  6899. </member>
  6900. <member name="M:System.Web.UI.CssStyleCollection.Clear">
  6901. <summary>
  6902. <para>Removes all style items from the <see langword="CssStyleCollection" /> object.</para>
  6903. </summary>
  6904. </member>
  6905. <member name="P:System.Web.UI.CssStyleCollection.Item(System.String)">
  6906. <summary>
  6907. <para>Gets or sets a specified CSS value for the specified HTML server control.</para>
  6908. </summary>
  6909. <param name="key">The index to the CSS attribute.</param>
  6910. </member>
  6911. <member name="P:System.Web.UI.CssStyleCollection.Keys">
  6912. <summary>
  6913. <para>Gets a collection of keys to all the styles in the
  6914. <see langword="CssStyleCollection" /> object for a specific HTML server
  6915. control. </para>
  6916. </summary>
  6917. </member>
  6918. <member name="P:System.Web.UI.CssStyleCollection.Count">
  6919. <summary>
  6920. <para>Gets the number of items in the
  6921. <see langword="CssStyleCollection " />object.</para>
  6922. </summary>
  6923. </member>
  6924. <member name="T:System.Web.UI.DataBinder">
  6925. <summary>
  6926. <para> Provides support for RAD designers to
  6927. generate and parse <see topic="cpconDatabindingExpressionSyntax" /> . This class cannot be inherited.</para>
  6928. </summary>
  6929. </member>
  6930. <member name="M:System.Web.UI.DataBinder.Eval(System.Object,System.String)">
  6931. <summary>
  6932. <para> Evaluates data-binding expressions at runtime.</para>
  6933. </summary>
  6934. <param name="container">The object reference against which the expression is evaluated. This must be a valild object identifier in the page's specified language.</param>
  6935. <param name=" expression">The navigation path from the <paramref name="container" /> to the property value to be placed in the bound control property. This must be a string type of property or field names separated by dots, such as <see langword="Tables[0].DefalutView.[0].Price" /> in C# or <see langword="Tables(0).DefaultView.(0).Price" /> in Visual Basic.</param>
  6936. <returns>
  6937. <para> An <see cref="T:System.Object" /> that results from the evaluation
  6938. of the data-binding expression.</para>
  6939. </returns>
  6940. </member>
  6941. <member name="M:System.Web.UI.DataBinder.Eval(System.Object,System.String,System.String)">
  6942. <summary>
  6943. <para> Evaluates data-binding expressions at runtime and formats the result as text to be displayed
  6944. in the requesting browser.</para>
  6945. </summary>
  6946. <param name="container">The object reference against which the expression is evaluated. This must be a valild object identifier in the page's specified language.</param>
  6947. <param name=" expression">The navigation path from the <paramref name="container" /> to the property value to be placed in the bound control property. This must be a string type of property or field names separated by dots, such as <see langword="Tables[0].DefalutView.[0].Price" /> in C# or <see langword="Tables(0).DefaultView.(0).Price" /> in Visual Basic. </param>
  6948. <param name=" format">A .NET Framework format string, similar to those used by <see cref="M:System.String.Format(System.String,System.Object)" qualify="true" /> , that converts the <see cref="T:System.Object" /> (which results from the evaluation of the data-binding expression) to a <see cref="T:System.String" /> that can be displayed by the requesting browser.</param>
  6949. <returns>
  6950. <para>A<see cref="T:System.String" />
  6951. that results from the evaluation
  6952. of the data-binding expression and conversion to a string type.</para>
  6953. </returns>
  6954. </member>
  6955. <member name="T:System.Web.UI.DataBinding">
  6956. <summary>
  6957. <para>Contains information about a single data-binding expression in an ASP.NET
  6958. server control, which allows rapid-application development (RAD) designers, such as Visual Studio .NET, to
  6959. create data-binding expressions at design time. This class cannot be inherited.
  6960. </para>
  6961. </summary>
  6962. </member>
  6963. <member name="M:System.Web.UI.DataBinding.#ctor(System.String,System.Type,System.String)">
  6964. <summary>
  6965. <para>Initializes a new instance of the <see cref="T:System.Web.UI.DataBinding" /> class.</para>
  6966. </summary>
  6967. <param name="propertyName">The property to bind data to.</param>
  6968. <param name=" propertyType">The .NET Framework type of the property to bind data to.</param>
  6969. <param name=" expression">The data-binding expression to be evaluated.</param>
  6970. </member>
  6971. <member name="M:System.Web.UI.DataBinding.GetHashCode">
  6972. <summary>
  6973. <para>Retrieves the hash code for an instance of the <see cref="T:System.Web.UI.DataBinding" />
  6974. object.</para>
  6975. </summary>
  6976. <returns>
  6977. <para>A 32-bit signed integer hash code.</para>
  6978. </returns>
  6979. </member>
  6980. <member name="M:System.Web.UI.DataBinding.Equals(System.Object)">
  6981. <summary>
  6982. <para>Determines whether the specified object is the same
  6983. instance of the <see cref="T:System.Web.UI.DataBinding" />
  6984. class as the current object.</para>
  6985. </summary>
  6986. <param name="obj">The object to compare against the current <see langword="DataBinding" /> object.</param>
  6987. <returns>
  6988. <para>
  6989. <see langword="true" />
  6990. if the data binding property names match; otherwise, <see langword="false" /> .</para>
  6991. </returns>
  6992. </member>
  6993. <member name="P:System.Web.UI.DataBinding.Expression">
  6994. <summary>
  6995. <para> Gets or sets the data-binding expression to be evaluated.</para>
  6996. </summary>
  6997. </member>
  6998. <member name="P:System.Web.UI.DataBinding.PropertyName">
  6999. <summary>
  7000. <para> Gets the name of the ASP.NET server control property
  7001. to bind data against.</para>
  7002. </summary>
  7003. </member>
  7004. <member name="P:System.Web.UI.DataBinding.PropertyType">
  7005. <summary>
  7006. <para> Gets the .NET Framework type of the data-bound ASP.NET server control
  7007. property.</para>
  7008. </summary>
  7009. </member>
  7010. <member name="T:System.Web.UI.DataBindingCollection">
  7011. <summary>
  7012. <para> Provides a collection of <see cref="T:System.Web.UI.DataBinding" /> objects for an ASP.NET server control. This class cannot be
  7013. inherited.</para>
  7014. </summary>
  7015. </member>
  7016. <member name="M:System.Web.UI.DataBindingCollection.#ctor">
  7017. <summary>
  7018. <para>Initializes a new instance of the <see cref="T:System.Web.UI.DataBindingCollection" /> class.</para>
  7019. </summary>
  7020. </member>
  7021. <member name="M:System.Web.UI.DataBindingCollection.Add(System.Web.UI.DataBinding)">
  7022. <summary>
  7023. <para>Adds the specified <see cref="T:System.Web.UI.DataBinding" />
  7024. object to the <see cref="T:System.Web.UI.DataBindingCollection" /> .</para>
  7025. </summary>
  7026. <param name="binding">The data binding object to add.</param>
  7027. </member>
  7028. <member name="M:System.Web.UI.DataBindingCollection.Clear">
  7029. <summary>
  7030. <para>Removes all <see cref="T:System.Web.UI.DataBinding" /> objects from the <see cref="T:System.Web.UI.DataBindingCollection" /> .</para>
  7031. </summary>
  7032. </member>
  7033. <member name="M:System.Web.UI.DataBindingCollection.CopyTo(System.Array,System.Int32)">
  7034. <summary>
  7035. <para>Copies the <see langword="DataBindingCollection " />values to a
  7036. one-dimensional <see cref="T:System.Array" />, beginning at the
  7037. <see langword="Array" /> object's specified index.</para>
  7038. </summary>
  7039. <param name="array">The one-dimensional <see cref="T:System.Array" /> object that is the destination of the values copied from <see langword="DataBindingCollection" />.</param>
  7040. <param name=" index">The index in the array, specified by the <paramref name="array" /> parameter, where copying begins.</param>
  7041. </member>
  7042. <member name="M:System.Web.UI.DataBindingCollection.GetEnumerator">
  7043. <summary>
  7044. <para> Returns an enumerator to iterate through the <see cref="T:System.Web.UI.DataBindingCollection" /> object.</para>
  7045. </summary>
  7046. <returns>
  7047. <para>An <see cref="T:System.Collections.IEnumerator" /> that contains the collection's members.</para>
  7048. </returns>
  7049. </member>
  7050. <member name="M:System.Web.UI.DataBindingCollection.Remove(System.String)">
  7051. <summary>
  7052. <para>Removes the <see cref="T:System.Web.UI.DataBinding" /> object associated with the specified
  7053. property name from the <see cref="T:System.Web.UI.DataBindingCollection" /> and adds it
  7054. to the <see cref="P:System.Web.UI.DataBindingCollection.RemovedBindings" />
  7055. collection.</para>
  7056. </summary>
  7057. <param name="propertyName">The property name associated with the <see cref="T:System.Web.UI.DataBinding" /> object to be removed.</param>
  7058. </member>
  7059. <member name="M:System.Web.UI.DataBindingCollection.Remove(System.Web.UI.DataBinding)">
  7060. <summary>
  7061. <para>Removes the specified <see cref="T:System.Web.UI.DataBinding" /> object from the
  7062. <see cref="T:System.Web.UI.DataBindingCollection" /> and adds it to
  7063. the <see cref="P:System.Web.UI.DataBindingCollection.RemovedBindings" /> collection.</para>
  7064. </summary>
  7065. <param name="binding">
  7066. <para>The <see cref="T:System.Web.UI.DataBinding" /> object to be removed from the <see cref="T:System.Web.UI.DataBindingCollection" />.</para>
  7067. </param>
  7068. </member>
  7069. <member name="M:System.Web.UI.DataBindingCollection.Remove(System.String,System.Boolean)">
  7070. <summary>
  7071. <para>Removes the <see cref="T:System.Web.UI.DataBinding" /> object, associated with the
  7072. specified property name, from the <see cref="T:System.Web.UI.DataBindingCollection" /> and controls
  7073. whether to add the binding to the <see cref="P:System.Web.UI.DataBindingCollection.RemovedBindings" /> list.</para>
  7074. </summary>
  7075. <param name="propertyName">The property associated with the <see langword="DataBinding" /> object to be removed.</param>
  7076. <param name=" addToRemovedList">A <see langword="Boolean" /> that indicates whether to add the property name to the <see langword="RemovedBindings" /> list. <see langword="true" /> indicates that an empty string is added to the list, while <see langword="false" /> indicates that the property name is added to the list.</param>
  7077. </member>
  7078. <member name="P:System.Web.UI.DataBindingCollection.Count">
  7079. <summary>
  7080. <para>Gets the number of <see cref="T:System.Web.UI.DataBinding" /> objects in the <see cref="T:System.Web.UI.DataBindingCollection" /> object.</para>
  7081. </summary>
  7082. </member>
  7083. <member name="P:System.Web.UI.DataBindingCollection.IsReadOnly">
  7084. <summary>
  7085. <para>Gets a value indicating whether the <see cref="T:System.Web.UI.DataBindingCollection" /> is read-only.</para>
  7086. </summary>
  7087. </member>
  7088. <member name="P:System.Web.UI.DataBindingCollection.IsSynchronized">
  7089. <summary>
  7090. <para>Gets a value indicating whether the <see cref="T:System.Web.UI.DataBindingCollection" /> is synchronized (thread-safe).</para>
  7091. </summary>
  7092. </member>
  7093. <member name="P:System.Web.UI.DataBindingCollection.RemovedBindings">
  7094. <summary>
  7095. <para>Gets an array of the names of the <see cref="T:System.Web.UI.DataBinding" /> objects removed from the collection.</para>
  7096. </summary>
  7097. </member>
  7098. <member name="P:System.Web.UI.DataBindingCollection.SyncRoot">
  7099. <summary>
  7100. <para>Gets an object that can be used to synchronize access to
  7101. the <see cref="T:System.Web.UI.DataBindingCollection" /> .</para>
  7102. </summary>
  7103. </member>
  7104. <member name="P:System.Web.UI.DataBindingCollection.Item(System.String)">
  7105. <summary>
  7106. <para>Gets the <see cref="T:System.Web.UI.DataBinding" /> object with the specified property name.</para>
  7107. </summary>
  7108. <param name="propertyName">The name of the property to be found.</param>
  7109. </member>
  7110. <member name="T:System.Web.UI.DataBindingHandlerAttribute">
  7111. <summary>
  7112. <para>Specifies a design-time class that performs data binding of controls within a designer.
  7113. This class cannot be inherited.</para>
  7114. </summary>
  7115. </member>
  7116. <member name="F:System.Web.UI.DataBindingHandlerAttribute.Default">
  7117. <summary>
  7118. Defines the default attribute for the <see cref="T:System.Web.UI.DataBindingHandlerAttribute" /> class.
  7119. </summary>
  7120. </member>
  7121. <member name="M:System.Web.UI.DataBindingHandlerAttribute.#ctor">
  7122. <summary>
  7123. <para>Initializes a new instance of the <see cref="T:System.Web.UI.DataBindingHandlerAttribute" /> class using no parameters. This is the default
  7124. constructor.</para>
  7125. </summary>
  7126. </member>
  7127. <member name="M:System.Web.UI.DataBindingHandlerAttribute.#ctor(System.Type)">
  7128. <summary>
  7129. <para>Initializes a new instance of the <see cref="T:System.Web.UI.DataBindingHandlerAttribute" /> class of the
  7130. specified <see cref="T:System.Type" />
  7131. .</para>
  7132. </summary>
  7133. <param name="type">The <see cref="T:System.Type" /> for the data-binding handler.</param>
  7134. </member>
  7135. <member name="M:System.Web.UI.DataBindingHandlerAttribute.#ctor(System.String)">
  7136. <summary>
  7137. <para>Initializes a new instance of the <see cref="T:System.Web.UI.DataBindingHandlerAttribute" /> class with the
  7138. specified type name.</para>
  7139. </summary>
  7140. <param name="typeName">The fully-qualified name of the data-binding handler <see cref="T:System.Type" /> .</param>
  7141. </member>
  7142. <member name="P:System.Web.UI.DataBindingHandlerAttribute.HandlerTypeName">
  7143. <summary>
  7144. <para>Gets the type name of the data binding handler. If the type name is
  7145. <see langword="null" />, this property returns an empty string.</para>
  7146. </summary>
  7147. </member>
  7148. <member name="T:System.Web.UI.DataBoundLiteralControl">
  7149. <summary>
  7150. <para>Creates a control for HTML text to allow the handling of &lt;%# … %&gt; data-binding expressions that
  7151. are processed by the server. It persists the value of its <see cref="P:System.Web.UI.DataBoundLiteralControl.Text" />
  7152. property to view state. This class cannot be inherited. </para>
  7153. </summary>
  7154. </member>
  7155. <member name="P:System.Web.UI.DataBoundLiteralControl.Text">
  7156. <summary>
  7157. <para> Gets the text content of the <see cref="T:System.Web.UI.DataBoundLiteralControl" /> object. This is
  7158. a read-only property.</para>
  7159. </summary>
  7160. </member>
  7161. <member name="M:System.Web.UI.DesignTimeParseData.#ctor(System.ComponentModel.Design.IDesignerHost,System.String)">
  7162. </member>
  7163. <member name="P:System.Web.UI.DesignTimeParseData.DataBindingHandler">
  7164. </member>
  7165. <member name="P:System.Web.UI.DesignTimeParseData.DesignerHost">
  7166. </member>
  7167. <member name="P:System.Web.UI.DesignTimeParseData.DocumentUrl">
  7168. </member>
  7169. <member name="P:System.Web.UI.DesignTimeParseData.ParseText">
  7170. </member>
  7171. <member name="M:System.Web.UI.DesignTimeTemplateParser.ParseControl(System.Web.UI.DesignTimeParseData)">
  7172. </member>
  7173. <member name="M:System.Web.UI.DesignTimeTemplateParser.ParseTemplate(System.Web.UI.DesignTimeParseData)">
  7174. </member>
  7175. <member name="T:System.Web.UI.ConstructorNeedsTagAttribute">
  7176. <summary>
  7177. <para> Specifies that a server control needs a
  7178. tag name in its constructor.</para>
  7179. </summary>
  7180. </member>
  7181. <member name="M:System.Web.UI.ConstructorNeedsTagAttribute.#ctor">
  7182. <summary>
  7183. <para>Initializes a new instance of the <see cref="T:System.Web.UI.ConstructorNeedsTagAttribute" /> class.</para>
  7184. </summary>
  7185. </member>
  7186. <member name="M:System.Web.UI.ConstructorNeedsTagAttribute.#ctor(System.Boolean)">
  7187. <summary>
  7188. <para>Initializes a new instance of the <see cref="T:System.Web.UI.ConstructorNeedsTagAttribute" /> class.</para>
  7189. </summary>
  7190. <param name="needsTag">
  7191. <see langword="true" /> to add a tag to a control; otherwise, <see langword="false" />.</param>
  7192. </member>
  7193. <member name="P:System.Web.UI.ConstructorNeedsTagAttribute.NeedsTag">
  7194. <summary>
  7195. <para>Indicates whether a control needs a tag name in its contstructor. This property is read-only.</para>
  7196. </summary>
  7197. </member>
  7198. <member name="T:System.Web.UI.EmptyControlCollection">
  7199. <summary>
  7200. <para>Provides standard support for a <see cref="T:System.Web.UI.ControlCollection" /> that is
  7201. always empty.</para>
  7202. </summary>
  7203. </member>
  7204. <member name="M:System.Web.UI.EmptyControlCollection.#ctor(System.Web.UI.Control)">
  7205. <summary>
  7206. <para>Initializes a new instance of the <see cref="T:System.Web.UI.EmptyControlCollection" /> class.</para>
  7207. </summary>
  7208. <param name="owner">The <see cref="T:System.Web.UI.Control" /> which owns this collection as its collection of child controls</param>
  7209. </member>
  7210. <member name="M:System.Web.UI.EmptyControlCollection.Add(System.Web.UI.Control)">
  7211. <summary>
  7212. <para>Denies the addition of the specified <see cref="T:System.Web.UI.Control" /> to
  7213. the collection.</para>
  7214. </summary>
  7215. <param name="child">The <see cref="T:System.Web.UI.Control" /> to be added. This parameter is always ignored.</param>
  7216. </member>
  7217. <member name="M:System.Web.UI.EmptyControlCollection.AddAt(System.Int32,System.Web.UI.Control)">
  7218. <summary>
  7219. <para>Denies the addition of the specified <see cref="T:System.Web.UI.Control" /> to
  7220. the collection, at the specified index position.</para>
  7221. </summary>
  7222. <param name="index">The index at which to add the <see cref="T:System.Web.UI.Control" />. This parameter is always ignored.</param>
  7223. <param name=" child">The <see cref="T:System.Web.UI.Control" /> to be added. This parameter is always ignored.</param>
  7224. </member>
  7225. <member name="T:System.Web.UI.HtmlControls.HtmlForm">
  7226. <summary>
  7227. <para> Provides programmatic access to the HTML
  7228. <see langword="&lt;form&gt;" />
  7229. element on the server.</para>
  7230. </summary>
  7231. </member>
  7232. <member name="T:System.Web.UI.HtmlControls.HtmlContainerControl">
  7233. <summary>
  7234. <para> Defines the methods,
  7235. properties, and events
  7236. available to all HTML server controls that must have a
  7237. closing tag.</para>
  7238. </summary>
  7239. </member>
  7240. <member name="T:System.Web.UI.HtmlControls.HtmlControl">
  7241. <summary>
  7242. <para> Defines the methods, properties, and events
  7243. common to all HTML server controls in the Web Forms page framework.</para>
  7244. </summary>
  7245. </member>
  7246. <member name="T:System.Web.UI.IAttributeAccessor">
  7247. <summary>
  7248. <para>
  7249. Defines methods used
  7250. by ASP.NET server controls to provide programmatic access to any
  7251. attribute declared in the opening tag of a server control.</para>
  7252. </summary>
  7253. </member>
  7254. <member name="M:System.Web.UI.IAttributeAccessor.GetAttribute(System.String)">
  7255. <summary>
  7256. <para>When implemented by a class, retrieves the specified attribute property from the server control.</para>
  7257. </summary>
  7258. <param name="key">A <see cref="T:System.String" /> object that represents the name of the server control attribute. </param>
  7259. <returns>
  7260. <para>The value of the specified attribute.</para>
  7261. </returns>
  7262. </member>
  7263. <member name="M:System.Web.UI.IAttributeAccessor.SetAttribute(System.String,System.String)">
  7264. <summary>
  7265. <para> When implemented by a class, designates an
  7266. attribute and its value to assign to the ASP.NET server control.</para>
  7267. </summary>
  7268. <param name="key">The name of the attribute to be set.</param>
  7269. <param name=" value">The value assigned to the attribute.</param>
  7270. </member>
  7271. <member name="M:System.Web.UI.HtmlControls.HtmlControl.#ctor">
  7272. <summary>
  7273. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlControl" /> class using default
  7274. values.</para>
  7275. </summary>
  7276. </member>
  7277. <member name="M:System.Web.UI.HtmlControls.HtmlControl.#ctor(System.String)">
  7278. <summary>
  7279. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlControl" /> class using the
  7280. specified tag.</para>
  7281. </summary>
  7282. <param name="tag">A string that specifies the tag name of the control. </param>
  7283. </member>
  7284. <member name="P:System.Web.UI.HtmlControls.HtmlControl.Attributes">
  7285. <summary>
  7286. <para>Gets a collection of all attribute name and value pairs
  7287. expressed on a server control tag within the .aspx file.</para>
  7288. </summary>
  7289. </member>
  7290. <member name="P:System.Web.UI.HtmlControls.HtmlControl.Style">
  7291. <summary>
  7292. <para> Gets a
  7293. collection of all cascading style sheet
  7294. (CSS) properties
  7295. applied to a specified HTML server control in the .aspx
  7296. file.</para>
  7297. </summary>
  7298. </member>
  7299. <member name="P:System.Web.UI.HtmlControls.HtmlControl.TagName">
  7300. <summary>
  7301. <para> Gets the element name of a tag that contains a
  7302. <see langword="runat=server " />attribute and
  7303. value pair.
  7304. </para>
  7305. </summary>
  7306. </member>
  7307. <member name="P:System.Web.UI.HtmlControls.HtmlControl.Disabled">
  7308. <summary>
  7309. <para> Gets or sets
  7310. a value indicating whether the HTML server
  7311. control is disabled.</para>
  7312. </summary>
  7313. </member>
  7314. <member name="M:System.Web.UI.HtmlControls.HtmlContainerControl.#ctor">
  7315. <summary>
  7316. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlContainerControl" /> class using
  7317. default values.</para>
  7318. </summary>
  7319. </member>
  7320. <member name="M:System.Web.UI.HtmlControls.HtmlContainerControl.#ctor(System.String)">
  7321. <summary>
  7322. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlContainerControl" /> class
  7323. using the specified
  7324. tag name.</para>
  7325. </summary>
  7326. <param name="tag">A string that specifies the tag name of the control.</param>
  7327. </member>
  7328. <member name="P:System.Web.UI.HtmlControls.HtmlContainerControl.InnerHtml">
  7329. <summary>
  7330. <para> Gets or sets the
  7331. content found between the opening and closing tags of the specified HTML server control.</para>
  7332. </summary>
  7333. </member>
  7334. <member name="P:System.Web.UI.HtmlControls.HtmlContainerControl.InnerText">
  7335. <summary>
  7336. <para> Gets or sets the text between the opening and closing tags
  7337. of the specified HTML server control.</para>
  7338. </summary>
  7339. </member>
  7340. <member name="M:System.Web.UI.HtmlControls.HtmlForm.#ctor">
  7341. <summary>
  7342. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlForm" />class.</para>
  7343. </summary>
  7344. </member>
  7345. <member name="P:System.Web.UI.HtmlControls.HtmlForm.Enctype">
  7346. <summary>
  7347. <para> Gets or
  7348. sets the encoding type browsers
  7349. use when posting the form's data to the server.</para>
  7350. </summary>
  7351. </member>
  7352. <member name="P:System.Web.UI.HtmlControls.HtmlForm.Method">
  7353. <summary>
  7354. <para>
  7355. Gets or sets a value that indicates how a browser posts
  7356. form data to the server for processing.</para>
  7357. </summary>
  7358. </member>
  7359. <member name="P:System.Web.UI.HtmlControls.HtmlForm.Name">
  7360. <summary>
  7361. <para>Gets the identifier name for the <see cref="T:System.Web.UI.HtmlControls.HtmlForm" />
  7362. control.</para>
  7363. </summary>
  7364. </member>
  7365. <member name="P:System.Web.UI.HtmlControls.HtmlForm.Target">
  7366. <summary>
  7367. <para> Gets or sets the frame or window to render the
  7368. results of information posted to the server.</para>
  7369. </summary>
  7370. </member>
  7371. <member name="M:System.Web.UI.ITagNameToTypeMapper.GetControlType(System.String,System.Collections.IDictionary)">
  7372. <summary>
  7373. <para> Retrieves the .NET Framework type that processes
  7374. the control declared in the .aspx file.</para>
  7375. </summary>
  7376. <param name="tagName">The element name of the control sent from the .aspx file.</param>
  7377. <param name=" attribs">A collection of the attributes on the control in the .aspx file.</param>
  7378. <returns>
  7379. <para>The .NET Framework type that is assigned to the control.</para>
  7380. </returns>
  7381. </member>
  7382. <member name="T:System.Web.UI.TagPrefixAttribute">
  7383. <summary>
  7384. <para> Defines the tag prefix used in a Web page to identify custom controls. This class cannot be inherited.</para>
  7385. </summary>
  7386. </member>
  7387. <member name="M:System.Web.UI.TagPrefixAttribute.#ctor(System.String,System.String)">
  7388. <summary>
  7389. <para>Initializes a new instance of the <see cref="T:System.Web.UI.TagPrefixAttribute" />
  7390. class.</para>
  7391. </summary>
  7392. <param name="namespaceName">A string that indentifies the custom control namespace.</param>
  7393. <param name=" tagPrefix">A string that indentifies the custom control prefix.</param>
  7394. </member>
  7395. <member name="P:System.Web.UI.TagPrefixAttribute.NamespaceName">
  7396. <summary>
  7397. <para> Gets the namespace prefix for the specified control.</para>
  7398. </summary>
  7399. </member>
  7400. <member name="P:System.Web.UI.TagPrefixAttribute.TagPrefix">
  7401. <summary>
  7402. <para>Gets the tag prefix for the specified control.</para>
  7403. </summary>
  7404. </member>
  7405. <member name="T:System.Web.UI.HtmlTextWriter">
  7406. <summary>
  7407. <para>Writes a sequential series of HTML-specific characters
  7408. and text on a Web Forms page. This class
  7409. provides formatting capabilities that ASP.NET server controls use when rendering
  7410. HTML content to clients.</para>
  7411. </summary>
  7412. </member>
  7413. <member name="F:System.Web.UI.HtmlTextWriter.TagLeftChar">
  7414. <summary>
  7415. <para> Represents the opening angle-bracket
  7416. (<see langword="&lt;" /> ) of an HTML tag.</para>
  7417. </summary>
  7418. </member>
  7419. <member name="F:System.Web.UI.HtmlTextWriter.TagRightChar">
  7420. <summary>
  7421. <para> Represents the closing angle-bracket
  7422. (<see langword="&gt;" /> ) of an HTML tag.</para>
  7423. </summary>
  7424. </member>
  7425. <member name="F:System.Web.UI.HtmlTextWriter.SelfClosingChars">
  7426. <summary>
  7427. <para>Represents the self-closing back slash
  7428. (<see langword="/" /> ) character of
  7429. an HTML tag.</para>
  7430. </summary>
  7431. </member>
  7432. <member name="F:System.Web.UI.HtmlTextWriter.SelfClosingTagEnd">
  7433. <summary>
  7434. <para>Represents the closing back slash and right angle
  7435. bracket (<see langword="/&gt;" />
  7436. ) of a self-closing HTML element.</para>
  7437. </summary>
  7438. </member>
  7439. <member name="F:System.Web.UI.HtmlTextWriter.EndTagLeftChars">
  7440. <summary>
  7441. <para>Represents the left angle bracket and back slash
  7442. (<see langword="&lt;/" />
  7443. ) of the closing tag of an HTML element.</para>
  7444. </summary>
  7445. </member>
  7446. <member name="F:System.Web.UI.HtmlTextWriter.DoubleQuoteChar">
  7447. <summary>
  7448. <para>Represents the double-quote (<see langword="&quot;" /> ) character.</para>
  7449. </summary>
  7450. </member>
  7451. <member name="F:System.Web.UI.HtmlTextWriter.SingleQuoteChar">
  7452. <summary>
  7453. <para>Represents a single quote (') character.</para>
  7454. </summary>
  7455. </member>
  7456. <member name="F:System.Web.UI.HtmlTextWriter.SpaceChar">
  7457. <summary>
  7458. <para>Represents a space character.</para>
  7459. </summary>
  7460. </member>
  7461. <member name="F:System.Web.UI.HtmlTextWriter.EqualsChar">
  7462. <summary>
  7463. <para>Represents the equal sign (<see langword="=" /> ) character.</para>
  7464. </summary>
  7465. </member>
  7466. <member name="F:System.Web.UI.HtmlTextWriter.SlashChar">
  7467. <summary>
  7468. <para> Represents the backslash (<see langword="/" /> ) character.</para>
  7469. </summary>
  7470. </member>
  7471. <member name="F:System.Web.UI.HtmlTextWriter.EqualsDoubleQuoteString">
  7472. <summary>
  7473. <para> Represents an equals sign and a double
  7474. quote character together in a <see cref="T:System.String" /> .</para>
  7475. </summary>
  7476. </member>
  7477. <member name="F:System.Web.UI.HtmlTextWriter.SemicolonChar">
  7478. <summary>
  7479. <para>Represents the semicolon (<see langword=";" /> ) character.</para>
  7480. </summary>
  7481. </member>
  7482. <member name="F:System.Web.UI.HtmlTextWriter.StyleEqualsChar">
  7483. <summary>
  7484. <para>Represents the colon character (<see langword=":" />) used
  7485. to set style attributes equal to values in the opening tag of an HTML element.</para>
  7486. </summary>
  7487. </member>
  7488. <member name="F:System.Web.UI.HtmlTextWriter.DefaultTabString">
  7489. <summary>
  7490. <para> Represents a single tab character.</para>
  7491. </summary>
  7492. </member>
  7493. <member name="M:System.Web.UI.HtmlTextWriter.Close">
  7494. <summary>
  7495. <para>Closes the current <see cref="T:System.Web.UI.HtmlTextWriter" /> and releases any system resources associated with it.</para>
  7496. </summary>
  7497. </member>
  7498. <member name="M:System.Web.UI.HtmlTextWriter.Flush">
  7499. <summary>
  7500. <para>Clears all buffers for the current <see cref="T:System.Web.UI.HtmlTextWriter" /> and causes any buffered data to be
  7501. written to the text stream.</para>
  7502. </summary>
  7503. </member>
  7504. <member name="M:System.Web.UI.HtmlTextWriter.OutputTabs">
  7505. <summary>
  7506. <para> Writes a series of blank characters that represent
  7507. the tab spacing for a line of HTML characters.</para>
  7508. </summary>
  7509. </member>
  7510. <member name="M:System.Web.UI.HtmlTextWriter.Write(System.String)">
  7511. <summary>
  7512. <para>Writes the specified string to the text stream, along with any specified tab spacing.</para>
  7513. </summary>
  7514. <param name="s">A <see cref="T:System.String" /> to be written to the text stream.</param>
  7515. </member>
  7516. <member name="M:System.Web.UI.HtmlTextWriter.Write(System.Boolean)">
  7517. <summary>
  7518. <para>Writes the text representation of a
  7519. <see langword="Boolean" /> value to the text stream, along with any specified tab spacing.</para>
  7520. </summary>
  7521. <param name="value">The <see langword="Boolean" /> value to be written to the text stream.</param>
  7522. </member>
  7523. <member name="M:System.Web.UI.HtmlTextWriter.Write(System.Char)">
  7524. <summary>
  7525. <para>Writes a unicode character to the text stream, along with any specified tab spacing.</para>
  7526. </summary>
  7527. <param name="value">The unicode character to write to the text stream.</param>
  7528. </member>
  7529. <member name="M:System.Web.UI.HtmlTextWriter.Write(System.Char[])">
  7530. <summary>
  7531. <para> Writes a character array to the text stream, along with any specified tab spacing.</para>
  7532. </summary>
  7533. <param name="buffer">The character array to write to the text stream.</param>
  7534. </member>
  7535. <member name="M:System.Web.UI.HtmlTextWriter.Write(System.Char[],System.Int32,System.Int32)">
  7536. <summary>
  7537. <para>Writes a subarray of characters to the text stream, along with any specified tab spacing.</para>
  7538. </summary>
  7539. <param name="buffer">The array of characters from which the subarray is written to the text stream.</param>
  7540. <param name=" index">The index location in the array where writing begins.</param>
  7541. <param name=" count">The number of characters to be written to the text stream.</param>
  7542. </member>
  7543. <member name="M:System.Web.UI.HtmlTextWriter.Write(System.Double)">
  7544. <summary>
  7545. <para>Writes the text representation of a double-precision floating point number to the HTML text stream, along with any specified tab spacing.</para>
  7546. </summary>
  7547. <param name="value">The double-precision floating point number to write to the text stream.</param>
  7548. </member>
  7549. <member name="M:System.Web.UI.HtmlTextWriter.Write(System.Single)">
  7550. <summary>
  7551. <para>Writes the text representation of a single-precision floating point
  7552. number to the HTML text stream, along with any specified tab spacing.</para>
  7553. </summary>
  7554. <param name="value">The single-precision floating point number to write to the text stream.</param>
  7555. </member>
  7556. <member name="M:System.Web.UI.HtmlTextWriter.Write(System.Int32)">
  7557. <summary>
  7558. <para>Writes the text representation of a 32-byte signed integer to the text stream, along with any specified tab spacing.</para>
  7559. </summary>
  7560. <param name="value">The 32-byte signed integer to write to the text stream.</param>
  7561. </member>
  7562. <member name="M:System.Web.UI.HtmlTextWriter.Write(System.Int64)">
  7563. <summary>
  7564. <para>Writes the text representation of an 64-byte signed integer to the text stream, along with
  7565. any specified tab spacing.</para>
  7566. </summary>
  7567. <param name="value">The 64-byte signed integer to write to the text stream.</param>
  7568. </member>
  7569. <member name="M:System.Web.UI.HtmlTextWriter.Write(System.Object)">
  7570. <summary>
  7571. <para>Writes the text representation of an <see cref="T:System.Object" /> to the text stream, along with any specified tab spacing.</para>
  7572. </summary>
  7573. <param name="value">The <see langword="Object" /> to write to the text stream.</param>
  7574. </member>
  7575. <member name="M:System.Web.UI.HtmlTextWriter.Write(System.String,System.Object)">
  7576. <summary>
  7577. <para>Writes a tab string and a formatted string to
  7578. the HTML text stream, using the same semantics as <see cref="M:System.String.Format(System.String,System.Object)" qualify="true" /> .</para>
  7579. </summary>
  7580. <param name="format">The formatting string.</param>
  7581. <param name=" arg0">An object to write into the formatted string.</param>
  7582. </member>
  7583. <member name="M:System.Web.UI.HtmlTextWriter.Write(System.String,System.Object,System.Object)">
  7584. <summary>
  7585. <para>Writes a tab string and a formatted string to the HTML
  7586. text stream, using the same semantics as <see cref="M:System.String.Format(System.String,System.Object)" qualify="true" /> .</para>
  7587. </summary>
  7588. <param name="format">
  7589. <para>The formatting string.</para>
  7590. </param>
  7591. <param name=" arg0">An object to write into the formatted string.</param>
  7592. <param name=" arg1">An object to write into the formatted string.</param>
  7593. </member>
  7594. <member name="M:System.Web.UI.HtmlTextWriter.Write(System.String,System.Object[])">
  7595. <summary>
  7596. <para>Writes a tab string and a formatted string to the HTML
  7597. text stream, using the same semantics as <see cref="M:System.String.Format(System.String,System.Object)" qualify="true" /> .</para>
  7598. </summary>
  7599. <param name="format">The formatting string.</param>
  7600. <param name=" arg">The object array to write into the formatted string.</param>
  7601. </member>
  7602. <member name="M:System.Web.UI.HtmlTextWriter.WriteLineNoTabs(System.String)">
  7603. <summary>
  7604. <para>Writes a <see cref="T:System.String" /> followed by a line terminator to an HTML text stream. This method ignores any specified tab spacing.</para>
  7605. </summary>
  7606. <param name="s">The <see langword="String" /> to write to the HTML text stream.</param>
  7607. </member>
  7608. <member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.String)">
  7609. <summary>
  7610. <para>Writes a tab string and a <see cref="T:System.String" />, followed by a line terminator, to an HTML text stream.</para>
  7611. </summary>
  7612. <param name="s">The <see langword="String" /> to write to the text stream.</param>
  7613. </member>
  7614. <member name="M:System.Web.UI.HtmlTextWriter.WriteLine">
  7615. <summary>
  7616. <para>Writes a line terminator to the HTML text stream.</para>
  7617. </summary>
  7618. </member>
  7619. <member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.Boolean)">
  7620. <summary>
  7621. <para>Writes a tab string and the text representation of a <see langword="Boolean" />, followed by a line terminator, to the HTML text stream.</para>
  7622. </summary>
  7623. <param name="value">The <see langword="Boolean" /> to be written to the text stream.</param>
  7624. </member>
  7625. <member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.Char)">
  7626. <summary>
  7627. <para>Writes a tab string and a character, followed by a line terminator, to the
  7628. HTML text stream.</para>
  7629. </summary>
  7630. <param name="value">The character to be written to the text stream.</param>
  7631. </member>
  7632. <member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.Char[])">
  7633. <summary>
  7634. <para>Writes a tab string and a character array, followed by a line
  7635. terminator, to the HTML text stream.</para>
  7636. </summary>
  7637. <param name="buffer">The character array to be written to the text stream.</param>
  7638. </member>
  7639. <member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.Char[],System.Int32,System.Int32)">
  7640. <summary>
  7641. <para>Writes a tab string and a subarray of characters, followed by a line
  7642. terminator, to the HTML text stream.</para>
  7643. </summary>
  7644. <param name="buffer">The character array from which to write to the text stream.</param>
  7645. <param name=" index">The location in the character array where writing begins.</param>
  7646. <param name=" count">The number of characters in the array to write to the text stream.</param>
  7647. </member>
  7648. <member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.Double)">
  7649. <summary>
  7650. <para> Writes a tab string and the
  7651. text representation of an 8-byte floating-point value, followed by a line terminator,
  7652. to the HTML text stream.</para>
  7653. </summary>
  7654. <param name="value">The 8-byte floating-point value to write to the text stream.</param>
  7655. </member>
  7656. <member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.Single)">
  7657. <summary>
  7658. <para>Writes a tab string and the text representation of a
  7659. single-precision floating point number, followed by a line terminator, to the HTML text stream.</para>
  7660. </summary>
  7661. <param name="value">The single-precision floating point number to write to the text stream.</param>
  7662. </member>
  7663. <member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.Int32)">
  7664. <summary>
  7665. <para>Writes a tab string and the text representation of a
  7666. 32-byte signed integer, followed by a line terminator, to the HTML text stream.</para>
  7667. </summary>
  7668. <param name="value">The 32-byte signed integer to write to the text stream.</param>
  7669. </member>
  7670. <member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.Int64)">
  7671. <summary>
  7672. <para>Writes a tab string and the text representation of a
  7673. 64-byte signed integer, followed by a line terminator, to the HTML text stream.</para>
  7674. </summary>
  7675. <param name="value">The 64-byte signed integer to write to the text stream.</param>
  7676. </member>
  7677. <member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.Object)">
  7678. <summary>
  7679. <para>Writes any tab strings and the text representation of an
  7680. <see cref="T:System.Object" />, followed
  7681. by a line terminator, to the HTML text stream.</para>
  7682. </summary>
  7683. <param name="value">The <see langword="Object" /> to write to the text stream.</param>
  7684. </member>
  7685. <member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.String,System.Object)">
  7686. <summary>
  7687. <para>Writes any tab strings and a formatted string, followed
  7688. by a line terminator, to the HTML text stream. The method uses the same
  7689. semantics as <see cref="M:System.String.Format(System.String,System.Object)" qualify="true" />
  7690. .</para>
  7691. </summary>
  7692. <param name="format">The formatting string.</param>
  7693. <param name=" arg0">The object to write into the formatted string.</param>
  7694. </member>
  7695. <member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.String,System.Object,System.Object)">
  7696. <summary>
  7697. <para>Writes any tab strings and a formatted string, followed
  7698. by a line terminator, to the HTML text stream. The method uses the same
  7699. semantics as <see cref="M:System.String.Format(System.String,System.Object)" qualify="true" /> .</para>
  7700. </summary>
  7701. <param name="format">The formatting string.</param>
  7702. <param name=" arg0">An object to write into the formatted string.</param>
  7703. <param name=" arg1">An object to write into the formatted string.</param>
  7704. </member>
  7705. <member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.String,System.Object[])">
  7706. <summary>
  7707. <para>Writes any tab strings and a formatted string, followed
  7708. by a line terminator, to the HTML text stream. The method uses the same
  7709. semantics as <see cref="M:System.String.Format(System.String,System.Object)" qualify="true" /> .</para>
  7710. </summary>
  7711. <param name="format">The formatting string.</param>
  7712. <param name=" arg">The array of objects to write into the formatted string.</param>
  7713. </member>
  7714. <member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.UInt32)">
  7715. <summary>
  7716. <para>Writes any tab strings and the text representation of a
  7717. 4-byte unsigned integer, followed by a line terminator, to the HTML text stream.</para>
  7718. </summary>
  7719. <param name="value">The 4-byte unsigned integer to write.</param>
  7720. </member>
  7721. <member name="M:System.Web.UI.HtmlTextWriter.RegisterTag(System.String,System.Web.UI.HtmlTextWriterTag)">
  7722. <summary>
  7723. <para>Registers HTML tags, whether literals or
  7724. dynamically generated, from the source file so that they can be properly
  7725. rendered to the requesting client.</para>
  7726. </summary>
  7727. <param name="name">A <see cref="T:System.String" /> that contains the HTML tag.</param>
  7728. <param name=" key">An <see cref="T:System.Web.UI.HtmlTextWriterTag" /> value that specifies which element is to be rendered.</param>
  7729. </member>
  7730. <member name="M:System.Web.UI.HtmlTextWriter.RegisterAttribute(System.String,System.Web.UI.HtmlTextWriterAttribute)">
  7731. <summary>
  7732. <para>Registers HTML attributes, whether literals or
  7733. dynamically generated, from the source file so that they can be properly
  7734. rendered to the requesting client.</para>
  7735. </summary>
  7736. <param name="name">The HTML attribute to be registered.</param>
  7737. <param name=" key">An <see cref="T:System.Web.UI.HtmlTextWriterAttribute" /> value that corresponds with the attribute name. </param>
  7738. </member>
  7739. <member name="M:System.Web.UI.HtmlTextWriter.RegisterStyle(System.String,System.Web.UI.HtmlTextWriterStyle)">
  7740. <summary>
  7741. <para>Registers HTML style properties, whether literals or dynamically
  7742. generated, from the source file so that they can be properly rendered to the
  7743. requesting client.</para>
  7744. </summary>
  7745. <param name="name">The <see cref="T:System.String" /> passed from the source file specifying the style name.</param>
  7746. <param name=" key">The <see cref="T:System.Web.UI.HtmlTextWriterStyle" /> value that corresponds with the specified style.</param>
  7747. </member>
  7748. <member name="M:System.Web.UI.HtmlTextWriter.#ctor(System.IO.TextWriter)">
  7749. <summary>
  7750. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlTextWriter" /> class that uses the <see cref="F:System.Web.UI.HtmlTextWriter.DefaultTabString" />
  7751. constant when indentation of a line is necessary.</para>
  7752. </summary>
  7753. <param name="writer">The <see cref="T:System.IO.TextWriter" /> object to render the HMTL content.</param>
  7754. </member>
  7755. <member name="M:System.Web.UI.HtmlTextWriter.#ctor(System.IO.TextWriter,System.String)">
  7756. <summary>
  7757. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlTextWriter" /> class with the line indentation as specified in
  7758. the <paramref name="tabString" />
  7759. parameter.</para>
  7760. </summary>
  7761. <param name="writer">The <see cref="T:System.IO.TextWriter" /> object to render the HMTL content.</param>
  7762. <param name=" tabString">A <see cref="T:System.String" /> that represents the number of spaces defined in the <see cref="P:System.Web.UI.HtmlTextWriter.Indent" /> property. </param>
  7763. </member>
  7764. <member name="M:System.Web.UI.HtmlTextWriter.AddAttribute(System.String,System.String)">
  7765. <summary>
  7766. <para>Adds the specified HTML attribute and value to the
  7767. <see langword="HtmlTextWriter" /> output stream.</para>
  7768. </summary>
  7769. <param name="name">The HTML attribute to add.</param>
  7770. <param name=" value">The value to assign to the HTML attribute.</param>
  7771. </member>
  7772. <member name="M:System.Web.UI.HtmlTextWriter.AddAttribute(System.String,System.String,System.Boolean)">
  7773. <summary>
  7774. <para>Adds the specified HTML attribute and value to the
  7775. <see langword="HtmlTextWriter" /> output stream with a value
  7776. that indicates if the attribute and value should be HTML encoded.</para>
  7777. </summary>
  7778. <param name="name">The HTML attribute to add.</param>
  7779. <param name=" value">The value to assign to the HTML attribute.</param>
  7780. <param name=" fEndode">
  7781. <see langword="true" /> to HTML encode the attribute and its value; otherwise, <see langword="false" />.</param>
  7782. </member>
  7783. <member name="M:System.Web.UI.HtmlTextWriter.AddAttribute(System.Web.UI.HtmlTextWriterAttribute,System.String)">
  7784. <summary>
  7785. <para>Adds the HTML attribute, associated with the
  7786. specified <see cref="T:System.Web.UI.HtmlTextWriterAttribute" /> key and the specified value, to the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
  7787. </summary>
  7788. <param name="key">An <see langword="HtmlTextWriterAttribute" /> value that represents the HTML attribute.</param>
  7789. <param name=" value">The value to assign to the HTML attribute.</param>
  7790. </member>
  7791. <member name="M:System.Web.UI.HtmlTextWriter.AddAttribute(System.Web.UI.HtmlTextWriterAttribute,System.String,System.Boolean)">
  7792. <summary>
  7793. <para> Adds the HTML attribute associated with
  7794. the <see cref="T:System.Web.UI.HtmlTextWriterAttribute" /> value specified by the
  7795. <paramref name="key" /> parameter to the <see cref="T:System.Web.UI.HtmlTextWriter" />
  7796. output stream. This method also adds the specified attribute value, and uses the
  7797. value passed to the <paramref name="fEncode" /> parameter to determine whether the
  7798. attribute and value should be
  7799. HTML encoded.</para>
  7800. </summary>
  7801. <param name="key">An <see langword="HtmlTextWriterAttribute" /> value that represents the HTML attribute.</param>
  7802. <param name=" value">The value to assign to the HTML attribute.</param>
  7803. <param name=" fEncode">
  7804. <see langword="true" /> to HTML encode the attribute and its value; otherwise, <see langword="false" />.</param>
  7805. </member>
  7806. <member name="M:System.Web.UI.HtmlTextWriter.AddAttribute(System.String,System.String,System.Web.UI.HtmlTextWriterAttribute)">
  7807. <summary>
  7808. <para>Adds the specified HTML attribute and its value, along
  7809. with an <see cref="T:System.Web.UI.HtmlTextWriterAttribute" /> value, to the
  7810. <see langword="HtmlTextWriter" /> output stream.</para>
  7811. </summary>
  7812. <param name="name">The HTML attribute to add.</param>
  7813. <param name=" value">The value to assign to the HTML attribute.</param>
  7814. <param name=" key">An <see langword="HtmlTextWriterAttribute" /> value that represents the HTML attribute.</param>
  7815. </member>
  7816. <member name="M:System.Web.UI.HtmlTextWriter.AddStyleAttribute(System.String,System.String)">
  7817. <summary>
  7818. <para>Adds the specified HTML style attribute and its value to
  7819. the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
  7820. </summary>
  7821. <param name="name">The HTML style attribute to add.</param>
  7822. <param name=" value">The value assigned to the HTML style attribute.</param>
  7823. </member>
  7824. <member name="M:System.Web.UI.HtmlTextWriter.AddStyleAttribute(System.Web.UI.HtmlTextWriterStyle,System.String)">
  7825. <summary>
  7826. <para>Adds the HTML style attribute associated with
  7827. the <see cref="T:System.Web.UI.HtmlTextWriterStyle" /> value, specified by the <paramref name="key" /> parameter, and
  7828. the attribute's value to the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
  7829. </summary>
  7830. <param name="key">An <see langword="HtmlTextWriterStyle" /> value that represents the HTML style attribute to add.</param>
  7831. <param name=" value">The value to assign to the HTML attribute.</param>
  7832. </member>
  7833. <member name="M:System.Web.UI.HtmlTextWriter.AddStyleAttribute(System.String,System.String,System.Web.UI.HtmlTextWriterStyle)">
  7834. <summary>
  7835. <para>Adds the specified HTML style attribute, along with its
  7836. value, to the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
  7837. </summary>
  7838. <param name="name">The HTML style attribute to add to the output stream.</param>
  7839. <param name=" value">The value to assign to the HTML attribute.</param>
  7840. <param name=" key">An <see cref="T:System.Web.UI.HtmlTextWriterStyle" /> value that represents the HTML style attribute to add.</param>
  7841. </member>
  7842. <member name="M:System.Web.UI.HtmlTextWriter.EncodeAttributeValue(System.String,System.Boolean)">
  7843. <summary>
  7844. <para>HTML encodes the specified HTML attribute's value.</para>
  7845. </summary>
  7846. <param name="value">The attribute value to encode.</param>
  7847. <param name=" fEncode">
  7848. <see langword="true" /> to HTML encode the attribute value; otherwise, <see langword="false" />.</param>
  7849. <returns>
  7850. <para>The HTML-encoded attribute value, <see langword="null" /> if
  7851. the <paramref name="value" /> parameter is empty, or the unencoded attribute value if
  7852. <paramref name="fEncode" /> is <see langword="false" /> .</para>
  7853. </returns>
  7854. </member>
  7855. <member name="M:System.Web.UI.HtmlTextWriter.EncodeAttributeValue(System.Web.UI.HtmlTextWriterAttribute,System.String)">
  7856. <summary>
  7857. <para>HTML encodes the specified HTML attribute's value.</para>
  7858. </summary>
  7859. <param name="attrKey">An <see cref="T:System.Web.UI.HtmlTextWriterAttribute" /> value representing the HTML attribute to which the <paramref name="value" /> parameter is assigned.</param>
  7860. <param name=" value">The value assigned to the specified HTML attribute.</param>
  7861. <returns>
  7862. <para>The encoded attribute value.</para>
  7863. </returns>
  7864. </member>
  7865. <member name="M:System.Web.UI.HtmlTextWriter.EncodeUrl(System.String)">
  7866. <summary>
  7867. <para>Performs minimal URL encoding by converting spaces passed
  7868. in the <paramref name="url" /> parameter to <see langword="%20" /> .</para>
  7869. </summary>
  7870. <param name="url">The URL to be encoded.</param>
  7871. <returns>
  7872. <para> The encoded URL.</para>
  7873. </returns>
  7874. </member>
  7875. <member name="M:System.Web.UI.HtmlTextWriter.GetAttributeKey(System.String)">
  7876. <summary>
  7877. <para>Obtains the corresponding <see cref="T:System.Web.UI.HtmlTextWriterAttribute" /> enumeration value for the specified HTML attribute.</para>
  7878. </summary>
  7879. <param name="attrName">The HTML attribute to obtain the <see langword="HtmlTextWriterAttribute" /> value for.</param>
  7880. <returns>
  7881. <para>The <see langword="HtmlTextWriterAttribute" /> enumeration value for the
  7882. specified HTML attribute, or <see langword="unkown" />
  7883. if the attribute is
  7884. not a member of the enumeration.</para>
  7885. </returns>
  7886. </member>
  7887. <member name="M:System.Web.UI.HtmlTextWriter.GetAttributeName(System.Web.UI.HtmlTextWriterAttribute)">
  7888. <summary>
  7889. <para>Obtains the name of the HTML attribute associated with
  7890. the specified <see cref="T:System.Web.UI.HtmlTextWriterAttribute" /> value.</para>
  7891. </summary>
  7892. <param name="attrKey">The <see langword="HtmlTextWriterAttribute" /> to obtain the HTML attribute name for.</param>
  7893. <returns>
  7894. <para>The name of the HTML attribute.</para>
  7895. </returns>
  7896. </member>
  7897. <member name="M:System.Web.UI.HtmlTextWriter.GetStyleKey(System.String)">
  7898. <summary>
  7899. <para>Obtains the <see cref="T:System.Web.UI.HtmlTextWriterStyle" /> enumeration value for the specified HTML style.</para>
  7900. </summary>
  7901. <param name="styleName">The HTML style attribute to obtain the <see langword="HtmlTextWriterStyle" /> value for.</param>
  7902. <returns>
  7903. <para>The <see langword="HtmlTextWriterStyle" /> enumeration value, or
  7904. <see langword="HtmlTextWriterStyle.Unknown" /> if the HTML style is not a member of the enumeration.</para>
  7905. </returns>
  7906. </member>
  7907. <member name="M:System.Web.UI.HtmlTextWriter.GetStyleName(System.Web.UI.HtmlTextWriterStyle)">
  7908. <summary>
  7909. <para>Obtains the HTML style attribute associated with the
  7910. specified <see cref="T:System.Web.UI.HtmlTextWriterStyle" /> enumeration value.</para>
  7911. </summary>
  7912. <param name="styleKey">The <see langword="HtmlTextWriterStyle" /> value to obtain the HTML style attribute for.</param>
  7913. <returns>
  7914. <para>The HTML style attribute.</para>
  7915. </returns>
  7916. </member>
  7917. <member name="M:System.Web.UI.HtmlTextWriter.GetTagKey(System.String)">
  7918. <summary>
  7919. <para>Obtains the <see cref="T:System.Web.UI.HtmlTextWriterTag" />
  7920. enumeration value associated with the specified HTML element.</para>
  7921. </summary>
  7922. <param name="tagName">The HTML element to obtain the <see langword="HtmlTextWriterTag" /> value for.</param>
  7923. <returns>
  7924. <para>The <see langword="HtmlTextWriterTag" /> value; if the
  7925. <paramref name="tagName" /> parameter is not associated with a specific
  7926. <see langword="HtmlTextWriterTag" /> value,
  7927. <see langword="HtmlTextWriterTag.Unknown" />is returned.</para>
  7928. </returns>
  7929. </member>
  7930. <member name="M:System.Web.UI.HtmlTextWriter.GetTagName(System.Web.UI.HtmlTextWriterTag)">
  7931. <summary>
  7932. <para>Obtains the HTML element associated with the
  7933. specified <see cref="T:System.Web.UI.HtmlTextWriterTag" /> enumeration value.</para>
  7934. </summary>
  7935. <param name="tagKey">The <see langword="HtmlTextWriterTag" /> value to obtain the HTML element for.</param>
  7936. <returns>
  7937. <para>The HTML element.</para>
  7938. </returns>
  7939. </member>
  7940. <member name="M:System.Web.UI.HtmlTextWriter.IsAttributeDefined(System.Web.UI.HtmlTextWriterAttribute)">
  7941. <summary>
  7942. <para>Determines whether the specified HTML attribute is
  7943. rendered during the next call to the <see cref="M:System.Web.UI.HtmlTextWriter.RenderBeginTag(System.String)" /> method.</para>
  7944. </summary>
  7945. <param name="key">The <see cref="T:System.Web.UI.HtmlTextWriterAttribute" /> associated with the HTML attribute.</param>
  7946. <returns>
  7947. <para>
  7948. <see langword="true" /> if the HTML
  7949. attribute is rendered during the next call to the
  7950. <see langword="RenderBeginTag" /> method;
  7951. otherwise, <see langword="false" /> .</para>
  7952. </returns>
  7953. </member>
  7954. <member name="M:System.Web.UI.HtmlTextWriter.IsAttributeDefined(System.Web.UI.HtmlTextWriterAttribute,System.String@)">
  7955. <summary>
  7956. <para>Determines whether the specified HTML attribute and its value are
  7957. rendered during the next call to the <see cref="M:System.Web.UI.HtmlTextWriter.RenderBeginTag(System.String)" /> method.</para>
  7958. </summary>
  7959. <param name="key">
  7960. <para>The <see cref="T:System.Web.UI.HtmlTextWriterAttribute" /> associated with the HTML attribute.</para>
  7961. </param>
  7962. <param name=" value">The value assigned to the HTML attribute.</param>
  7963. <returns>
  7964. <para>
  7965. <see langword="true " />if the HTML attribute is rendered
  7966. during the next call to the <see langword="RenderBeginTag " />
  7967. method; otherwise, <see langword="false" />.</para>
  7968. </returns>
  7969. </member>
  7970. <member name="M:System.Web.UI.HtmlTextWriter.IsStyleAttributeDefined(System.Web.UI.HtmlTextWriterStyle)">
  7971. <summary>
  7972. <para>Determines whether the specified HTML style attribute is
  7973. rendered during the next call to the <see cref="M:System.Web.UI.HtmlTextWriter.RenderBeginTag(System.String)" /> method.</para>
  7974. </summary>
  7975. <param name="key">The <see cref="T:System.Web.UI.HtmlTextWriterStyle" /> value associated with the HTML attribute. </param>
  7976. <returns>
  7977. <para>
  7978. <see langword="true" /> if the HTML
  7979. attribute is rendered during the next call to the
  7980. <see langword="RenderBeginTag" />
  7981. method; otherwise,
  7982. <see langword="false" />.</para>
  7983. </returns>
  7984. </member>
  7985. <member name="M:System.Web.UI.HtmlTextWriter.IsStyleAttributeDefined(System.Web.UI.HtmlTextWriterStyle,System.String@)">
  7986. <summary>
  7987. <para>Determines whether the specified HTML style attribute
  7988. and its value are rendered during the next call to the <see cref="M:System.Web.UI.HtmlTextWriter.RenderBeginTag(System.String)" /> method.</para>
  7989. </summary>
  7990. <param name="key">The <see cref="T:System.Web.UI.HtmlTextWriterStyle" /> value associated with the HTML attribute. </param>
  7991. <param name=" value">The value assigned to the HTML style attribute.</param>
  7992. <returns>
  7993. <para>
  7994. <see langword="true" /> if the HTML
  7995. attribute and its value are rendered during the next call to the
  7996. <see langword="RenderBeginTag" />
  7997. method; otherwise,
  7998. <see langword="false" />.</para>
  7999. </returns>
  8000. </member>
  8001. <member name="M:System.Web.UI.HtmlTextWriter.OnAttributeRender(System.String,System.String,System.Web.UI.HtmlTextWriterAttribute)">
  8002. <summary>
  8003. <para>Determines whether the specified HTML attribute and its
  8004. value will be rendered to the requesting page.</para>
  8005. </summary>
  8006. <param name="name">The HTML attribute to render.</param>
  8007. <param name=" value">The value that is assinged to the HTML attribute.</param>
  8008. <param name=" key">The <see cref="T:System.Web.UI.HtmlTextWriterAttribute" /> enumeration value associated with the HTML attribute.</param>
  8009. <returns>
  8010. <para>
  8011. <see langword="true" /> if the attribute will be rendered
  8012. to the page; otherwise, <see langword="false" /> .</para>
  8013. </returns>
  8014. </member>
  8015. <member name="M:System.Web.UI.HtmlTextWriter.OnStyleAttributeRender(System.String,System.String,System.Web.UI.HtmlTextWriterStyle)">
  8016. <summary>
  8017. <para>Determines whether the specified HTML style attribute
  8018. and its value will be rendered to the requesting page.</para>
  8019. </summary>
  8020. <param name="name">The HTML style attribute to render.</param>
  8021. <param name=" value">The value that is assinged to the HTML style attribute.</param>
  8022. <param name=" key">The <see cref="T:System.Web.UI.HtmlTextWriterStyle" /> enumeration value associated with the HTML style attribute.</param>
  8023. <returns>
  8024. <para>
  8025. <see langword="true" /> if the HTML
  8026. style attribute will be rendered to the page;
  8027. otherwise, <see langword="false" /> .</para>
  8028. </returns>
  8029. </member>
  8030. <member name="M:System.Web.UI.HtmlTextWriter.OnTagRender(System.String,System.Web.UI.HtmlTextWriterTag)">
  8031. <summary>
  8032. <para>Determines whether the specified HTML element will be
  8033. rendered to the requesting page.</para>
  8034. </summary>
  8035. <param name="name">The HTML element to render.</param>
  8036. <param name=" key">The <see cref="T:System.Web.UI.HtmlTextWriterTag" /> enumeration value associated with the HTML element.</param>
  8037. <returns>
  8038. <para>
  8039. <see langword="true" /> if the HTML element will be
  8040. rendered to the page; otherwise, <see langword="false" /> .</para>
  8041. </returns>
  8042. </member>
  8043. <member name="M:System.Web.UI.HtmlTextWriter.PopEndTag">
  8044. <summary>
  8045. <para>Removes an HTML element from the list of rendered elements.</para>
  8046. </summary>
  8047. <returns>
  8048. <para>A list of the HTML elements that have been rendered.</para>
  8049. </returns>
  8050. </member>
  8051. <member name="M:System.Web.UI.HtmlTextWriter.PushEndTag(System.String)">
  8052. <summary>
  8053. <para>Saves the specifed HTML element for a later call to
  8054. the <see cref="M:System.Web.UI.HtmlTextWriter.PopEndTag" />
  8055. method.</para>
  8056. </summary>
  8057. <param name="endTag">The closing tag of the HTML element.</param>
  8058. </member>
  8059. <member name="M:System.Web.UI.HtmlTextWriter.FilterAttributes">
  8060. <summary>
  8061. <para>Filters all HTML attributes and style attributes by
  8062. calling <see cref="M:System.Web.UI.HtmlTextWriter.OnAttributeRender(System.String,System.String,System.Web.UI.HtmlTextWriterAttribute)" qualify="true" /> and <see cref="M:System.Web.UI.HtmlTextWriter.OnStyleAttributeRender(System.String,System.String,System.Web.UI.HtmlTextWriterStyle)" qualify="true" /> on all properites of the page or ASP.NET server control.</para>
  8063. </summary>
  8064. </member>
  8065. <member name="M:System.Web.UI.HtmlTextWriter.RenderBeginTag(System.String)">
  8066. <summary>
  8067. <para>Writes the opening tag of the specified HTML element to
  8068. the output stream.</para>
  8069. </summary>
  8070. <param name="tagName">The HTML element to render the opening tag for.</param>
  8071. </member>
  8072. <member name="M:System.Web.UI.HtmlTextWriter.RenderBeginTag(System.Web.UI.HtmlTextWriterTag)">
  8073. <summary>
  8074. <para>Writes the opening tag of the HTML element associated
  8075. with the specified <see cref="T:System.Web.UI.HtmlTextWriterTag" /> enumeration value to the output stream.</para>
  8076. </summary>
  8077. <param name="tagKey">An <see langword="HtmlTextWriterTag" /> value that defines the opening tag of the HTML element to render.</param>
  8078. </member>
  8079. <member name="M:System.Web.UI.HtmlTextWriter.RenderEndTag">
  8080. <summary>
  8081. <para>Writes the end tag of an HTML element to
  8082. the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
  8083. </summary>
  8084. </member>
  8085. <member name="M:System.Web.UI.HtmlTextWriter.RenderBeforeTag">
  8086. <summary>
  8087. <para>Writes any text or tab spacing that occurs before the
  8088. opening tag of an HTML element to the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
  8089. </summary>
  8090. <returns>
  8091. <para>The text or tab spacing to write to the output stream. If not overridden,
  8092. this method returns <see langword="null" />.</para>
  8093. </returns>
  8094. </member>
  8095. <member name="M:System.Web.UI.HtmlTextWriter.RenderBeforeContent">
  8096. <summary>
  8097. <para>Writes any text or spacing before the content and after the opening tag of
  8098. an HTML element.</para>
  8099. </summary>
  8100. <returns>
  8101. <para> The text or spacing to write prior to the content
  8102. of the HTML element. If not overridden, this method returns
  8103. <see langword="null" /> .</para>
  8104. </returns>
  8105. </member>
  8106. <member name="M:System.Web.UI.HtmlTextWriter.RenderAfterContent">
  8107. <summary>
  8108. <para>Writes any text or spacing that occurs after the content and before the closing tag of the
  8109. HTML element to render to the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
  8110. </summary>
  8111. <returns>
  8112. <para> The spacing or text to write after the content of the HTML
  8113. element. If not overridden, this method returns <see langword="null" /> . </para>
  8114. </returns>
  8115. </member>
  8116. <member name="M:System.Web.UI.HtmlTextWriter.RenderAfterTag">
  8117. <summary>
  8118. <para>Writes any spacing or text that occurs after an HTML
  8119. element's closing tag.</para>
  8120. </summary>
  8121. <returns>
  8122. <para>The spacing or text to write after the closing tag of
  8123. the HTML element. If not overridden, this method returns <see langword="null" /> . </para>
  8124. </returns>
  8125. </member>
  8126. <member name="M:System.Web.UI.HtmlTextWriter.WriteAttribute(System.String,System.String)">
  8127. <summary>
  8128. <para>Writes the specified HTML attribute and value to
  8129. the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
  8130. </summary>
  8131. <param name="name">The HTML attribute to write to the output stream.</param>
  8132. <param name=" value">The value assigned to the HTML attribute.</param>
  8133. </member>
  8134. <member name="M:System.Web.UI.HtmlTextWriter.WriteAttribute(System.String,System.String,System.Boolean)">
  8135. <summary>
  8136. <para>Writes the specified HTML attribute and value to the
  8137. <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream and HTML encodes them if specified
  8138. in the <paramref name="fEncode" /> parameter.</para>
  8139. </summary>
  8140. <param name="name">The HTML attribute to write to the output stream.</param>
  8141. <param name=" value">The value assigned to the HTML attribute.</param>
  8142. <param name=" fEncode">
  8143. <see langword="true" /> to HTML encode the attribute and its assigned value; otherwise, <see langword="false" />.</param>
  8144. </member>
  8145. <member name="M:System.Web.UI.HtmlTextWriter.WriteBeginTag(System.String)">
  8146. <summary>
  8147. <para>Writes any tab spacing and the opening tag of the
  8148. specified HTML element to the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
  8149. </summary>
  8150. <param name="tagName">The HTML element to write the opening tag of.</param>
  8151. </member>
  8152. <member name="M:System.Web.UI.HtmlTextWriter.WriteFullBeginTag(System.String)">
  8153. <summary>
  8154. <para>Writes any tab spacing and the opening tag of the
  8155. specified HTML element to the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
  8156. </summary>
  8157. <param name="tagName">The HTML element to write.</param>
  8158. </member>
  8159. <member name="M:System.Web.UI.HtmlTextWriter.WriteEndTag(System.String)">
  8160. <summary>
  8161. <para>Writes any tab spacing and the closing tag of the
  8162. specified HTML element.</para>
  8163. </summary>
  8164. <param name="tagName">The HTML element to write the closing tag for.</param>
  8165. </member>
  8166. <member name="M:System.Web.UI.HtmlTextWriter.WriteStyleAttribute(System.String,System.String)">
  8167. <summary>
  8168. <para>Writes the specified HTML style attribute to
  8169. the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
  8170. </summary>
  8171. <param name="name">The HTML style attribute to write to the output stream.</param>
  8172. <param name=" value">The value assigned to the HTML style attribute.</param>
  8173. </member>
  8174. <member name="M:System.Web.UI.HtmlTextWriter.WriteStyleAttribute(System.String,System.String,System.Boolean)">
  8175. <summary>
  8176. <para>Writes the specified HTML attribute and value to the
  8177. <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream, and HTML encodes them if specified
  8178. in the <paramref name="fEncode" /> parameter.</para>
  8179. </summary>
  8180. <param name="name">The HTML style attribute to write to the output stream.</param>
  8181. <param name=" value">The value assigned to the HTML style attribute.</param>
  8182. <param name=" fEncode">
  8183. <see langword="true" /> to HTML encode the style attribute and its assigned value; otherwise, <see langword="false" />.</param>
  8184. </member>
  8185. <member name="P:System.Web.UI.HtmlTextWriter.Encoding">
  8186. <summary>
  8187. <para>Gets the <see cref="T:System.Text.Encoding" /> that the <see cref="T:System.Web.UI.HtmlTextWriter" />
  8188. object uses to write content to the page.</para>
  8189. </summary>
  8190. </member>
  8191. <member name="P:System.Web.UI.HtmlTextWriter.NewLine">
  8192. <summary>
  8193. <para>Gets or sets the line terminator string used by the
  8194. current <see cref="T:System.Web.UI.HtmlTextWriter" /> .</para>
  8195. </summary>
  8196. </member>
  8197. <member name="P:System.Web.UI.HtmlTextWriter.Indent">
  8198. <summary>
  8199. <para>Gets or sets the number of spaces to indent at the beginning of a line of HTML.</para>
  8200. </summary>
  8201. </member>
  8202. <member name="P:System.Web.UI.HtmlTextWriter.InnerWriter">
  8203. <summary>
  8204. <para>Gets or sets the text writer that writes the inner content of
  8205. the HTML element.</para>
  8206. </summary>
  8207. </member>
  8208. <member name="P:System.Web.UI.HtmlTextWriter.TagKey">
  8209. <summary>
  8210. <para>Gets or sets the <see cref="T:System.Web.UI.HtmlTextWriterTag" />
  8211. value for the specified HTML element.</para>
  8212. </summary>
  8213. </member>
  8214. <member name="P:System.Web.UI.HtmlTextWriter.TagName">
  8215. <summary>
  8216. <para> Gets or sets the tag name of the
  8217. HTML element being rendered.</para>
  8218. </summary>
  8219. </member>
  8220. <member name="T:System.Web.UI.HtmlTextWriterTag">
  8221. <summary>
  8222. <para>Specifies the HTML tags that can be passed to an <see cref="T:System.Web.UI.HtmlTextWriter" /> or <see cref="T:System.Web.UI.Html32TextWriter" />
  8223. object output stream.</para>
  8224. </summary>
  8225. </member>
  8226. <member name="F:System.Web.UI.HtmlTextWriterTag.Unknown">
  8227. <summary>
  8228. <para>The <see cref="T:System.String" /> passed as an HTML tag is not recognized.</para>
  8229. </summary>
  8230. </member>
  8231. <member name="F:System.Web.UI.HtmlTextWriterTag.A">
  8232. <summary>
  8233. <para> Specifies the HTML <see langword="a" /> element.</para>
  8234. </summary>
  8235. </member>
  8236. <member name="F:System.Web.UI.HtmlTextWriterTag.Acronym">
  8237. <summary>
  8238. <para>Specifies the HTML <see langword="acronym" /> element.</para>
  8239. </summary>
  8240. </member>
  8241. <member name="F:System.Web.UI.HtmlTextWriterTag.Address">
  8242. <summary>
  8243. <para>Specifies the HTML <see langword="address" /> element.</para>
  8244. </summary>
  8245. </member>
  8246. <member name="F:System.Web.UI.HtmlTextWriterTag.Area">
  8247. <summary>
  8248. <para>Specifies the HTML <see langword="area" /> element.</para>
  8249. </summary>
  8250. </member>
  8251. <member name="F:System.Web.UI.HtmlTextWriterTag.B">
  8252. <summary>
  8253. <para>Specifies the HTML <see langword="b" /> element.</para>
  8254. </summary>
  8255. </member>
  8256. <member name="F:System.Web.UI.HtmlTextWriterTag.Base">
  8257. <summary>
  8258. <para>Specifies the HTML <see langword="base" /> element.</para>
  8259. </summary>
  8260. </member>
  8261. <member name="F:System.Web.UI.HtmlTextWriterTag.Basefont">
  8262. <summary>
  8263. <para>Specifies the HTML <see langword="basefont" /> element.</para>
  8264. </summary>
  8265. </member>
  8266. <member name="F:System.Web.UI.HtmlTextWriterTag.Bdo">
  8267. <summary>
  8268. <para>Specifies the HTML <see langword="bdo" /> element.</para>
  8269. </summary>
  8270. </member>
  8271. <member name="F:System.Web.UI.HtmlTextWriterTag.Bgsound">
  8272. <summary>
  8273. <para>Specifies the HTML <see langword="bgsound" /> element.</para>
  8274. </summary>
  8275. </member>
  8276. <member name="F:System.Web.UI.HtmlTextWriterTag.Big">
  8277. <summary>
  8278. <para>Specifies the HTML <see langword="big" /> element.</para>
  8279. </summary>
  8280. </member>
  8281. <member name="F:System.Web.UI.HtmlTextWriterTag.Blockquote">
  8282. <summary>
  8283. <para>Specifies the HTML <see langword="blockquote" /> element.</para>
  8284. </summary>
  8285. </member>
  8286. <member name="F:System.Web.UI.HtmlTextWriterTag.Body">
  8287. <summary>
  8288. <para>Specifies the HTML <see langword="body" /> element.</para>
  8289. </summary>
  8290. </member>
  8291. <member name="F:System.Web.UI.HtmlTextWriterTag.Br">
  8292. <summary>
  8293. <para>Specifies the HTML <see langword="br" /> element.</para>
  8294. </summary>
  8295. </member>
  8296. <member name="F:System.Web.UI.HtmlTextWriterTag.Button">
  8297. <summary>
  8298. <para>Specifies the HTML <see langword="button" /> element.</para>
  8299. </summary>
  8300. </member>
  8301. <member name="F:System.Web.UI.HtmlTextWriterTag.Caption">
  8302. <summary>
  8303. <para>Specifies the HTML <see langword="caption" /> element.</para>
  8304. </summary>
  8305. </member>
  8306. <member name="F:System.Web.UI.HtmlTextWriterTag.Center">
  8307. <summary>
  8308. <para>Specifies the HTML <see langword="center" /> element.</para>
  8309. </summary>
  8310. </member>
  8311. <member name="F:System.Web.UI.HtmlTextWriterTag.Cite">
  8312. <summary>
  8313. <para>Specifies the HTML <see langword="cite" /> element.</para>
  8314. </summary>
  8315. </member>
  8316. <member name="F:System.Web.UI.HtmlTextWriterTag.Code">
  8317. <summary>
  8318. <para>Specifies the HTML <see langword="code" /> element.</para>
  8319. </summary>
  8320. </member>
  8321. <member name="F:System.Web.UI.HtmlTextWriterTag.Col">
  8322. <summary>
  8323. <para>Specifies the HTML <see langword="col" /> element.</para>
  8324. </summary>
  8325. </member>
  8326. <member name="F:System.Web.UI.HtmlTextWriterTag.Colgroup">
  8327. <summary>
  8328. <para>Specifies the HTML <see langword="colgroup" /> element.</para>
  8329. </summary>
  8330. </member>
  8331. <member name="F:System.Web.UI.HtmlTextWriterTag.Dd">
  8332. <summary>
  8333. <para>Specifies the HTML <see langword="dd" /> element.</para>
  8334. </summary>
  8335. </member>
  8336. <member name="F:System.Web.UI.HtmlTextWriterTag.Del">
  8337. <summary>
  8338. <para>Specifies the HTML <see langword="cel" /> element.</para>
  8339. </summary>
  8340. </member>
  8341. <member name="F:System.Web.UI.HtmlTextWriterTag.Dfn">
  8342. <summary>
  8343. <para>Specifies the HTML <see langword="dfn" /> element.</para>
  8344. </summary>
  8345. </member>
  8346. <member name="F:System.Web.UI.HtmlTextWriterTag.Dir">
  8347. <summary>
  8348. <para>Specifies the HTML <see langword="dir" /> element.</para>
  8349. </summary>
  8350. </member>
  8351. <member name="F:System.Web.UI.HtmlTextWriterTag.Div">
  8352. <summary>
  8353. <para>Specifies the HTML <see langword="div" /> element.</para>
  8354. </summary>
  8355. </member>
  8356. <member name="F:System.Web.UI.HtmlTextWriterTag.Dl">
  8357. <summary>
  8358. <para>Specifies the HTML <see langword="dl" /> element.</para>
  8359. </summary>
  8360. </member>
  8361. <member name="F:System.Web.UI.HtmlTextWriterTag.Dt">
  8362. <summary>
  8363. <para>Specifies the HTML <see langword="dt" /> element.</para>
  8364. </summary>
  8365. </member>
  8366. <member name="F:System.Web.UI.HtmlTextWriterTag.Em">
  8367. <summary>
  8368. <para>Specifies the HTML <see langword="em" /> element.</para>
  8369. </summary>
  8370. </member>
  8371. <member name="F:System.Web.UI.HtmlTextWriterTag.Embed">
  8372. <summary>
  8373. <para>Specifies the HTML <see langword="embed" /> element.</para>
  8374. </summary>
  8375. </member>
  8376. <member name="F:System.Web.UI.HtmlTextWriterTag.Fieldset">
  8377. <summary>
  8378. <para>Specifies the HTML <see langword="fieldset" /> element.</para>
  8379. </summary>
  8380. </member>
  8381. <member name="F:System.Web.UI.HtmlTextWriterTag.Font">
  8382. <summary>
  8383. <para>Specifies the HTML <see langword="font" /> element.</para>
  8384. </summary>
  8385. </member>
  8386. <member name="F:System.Web.UI.HtmlTextWriterTag.Form">
  8387. <summary>
  8388. <para>Specifies the HTML <see langword="form" /> element.</para>
  8389. </summary>
  8390. </member>
  8391. <member name="F:System.Web.UI.HtmlTextWriterTag.Frame">
  8392. <summary>
  8393. <para>Specifies the HTML <see langword="frame" /> element.</para>
  8394. </summary>
  8395. </member>
  8396. <member name="F:System.Web.UI.HtmlTextWriterTag.Frameset">
  8397. <summary>
  8398. <para>Specifies the HTML <see langword="frameset" /> element.</para>
  8399. </summary>
  8400. </member>
  8401. <member name="F:System.Web.UI.HtmlTextWriterTag.H1">
  8402. <summary>
  8403. <para>Specifies the HTML <see langword="H1" /> element.</para>
  8404. </summary>
  8405. </member>
  8406. <member name="F:System.Web.UI.HtmlTextWriterTag.H2">
  8407. <summary>
  8408. <para>Specifies the HTML <see langword="H2" /> element.</para>
  8409. </summary>
  8410. </member>
  8411. <member name="F:System.Web.UI.HtmlTextWriterTag.H3">
  8412. <summary>
  8413. <para>Specifies the HTML <see langword="H3" /> element.</para>
  8414. </summary>
  8415. </member>
  8416. <member name="F:System.Web.UI.HtmlTextWriterTag.H4">
  8417. <summary>
  8418. <para>Specifies the HTML <see langword="H4" /> element.</para>
  8419. </summary>
  8420. </member>
  8421. <member name="F:System.Web.UI.HtmlTextWriterTag.H5">
  8422. <summary>
  8423. <para>Specifies the HTML <see langword="H5" /> element.</para>
  8424. </summary>
  8425. </member>
  8426. <member name="F:System.Web.UI.HtmlTextWriterTag.H6">
  8427. <summary>
  8428. <para>Specifies the HTML <see langword="H6" /> element.</para>
  8429. </summary>
  8430. </member>
  8431. <member name="F:System.Web.UI.HtmlTextWriterTag.Head">
  8432. <summary>
  8433. <para>Specifies the HTML <see langword="head" /> element.</para>
  8434. </summary>
  8435. </member>
  8436. <member name="F:System.Web.UI.HtmlTextWriterTag.Hr">
  8437. <summary>
  8438. <para>Specifies the HTML <see langword="hr" /> element.</para>
  8439. </summary>
  8440. </member>
  8441. <member name="F:System.Web.UI.HtmlTextWriterTag.Html">
  8442. <summary>
  8443. <para>Specifies the HTML <see langword="html" /> element.</para>
  8444. </summary>
  8445. </member>
  8446. <member name="F:System.Web.UI.HtmlTextWriterTag.I">
  8447. <summary>
  8448. <para>Specifies the HTML <see langword="i" /> element.</para>
  8449. </summary>
  8450. </member>
  8451. <member name="F:System.Web.UI.HtmlTextWriterTag.Iframe">
  8452. <summary>
  8453. <para>Specifies the HTML <see langword="iframe" /> element.</para>
  8454. </summary>
  8455. </member>
  8456. <member name="F:System.Web.UI.HtmlTextWriterTag.Img">
  8457. <summary>
  8458. <para>Specifies the HTML <see langword="img" /> element.</para>
  8459. </summary>
  8460. </member>
  8461. <member name="F:System.Web.UI.HtmlTextWriterTag.Input">
  8462. <summary>
  8463. <para>Specifies the HTML <see langword="input" /> element.</para>
  8464. </summary>
  8465. </member>
  8466. <member name="F:System.Web.UI.HtmlTextWriterTag.Ins">
  8467. <summary>
  8468. <para>Specifies the HTML <see langword="ins" /> element.</para>
  8469. </summary>
  8470. </member>
  8471. <member name="F:System.Web.UI.HtmlTextWriterTag.Isindex">
  8472. <summary>
  8473. <para>Specifies the HTML <see langword="isindex" /> element.</para>
  8474. </summary>
  8475. </member>
  8476. <member name="F:System.Web.UI.HtmlTextWriterTag.Kbd">
  8477. <summary>
  8478. <para>Specifies the HTML <see langword="kbd" /> element.</para>
  8479. </summary>
  8480. </member>
  8481. <member name="F:System.Web.UI.HtmlTextWriterTag.Label">
  8482. <summary>
  8483. <para>Specifies the HTML <see langword="label" /> element.</para>
  8484. </summary>
  8485. </member>
  8486. <member name="F:System.Web.UI.HtmlTextWriterTag.Legend">
  8487. <summary>
  8488. <para>Specifies the HTML <see langword="legend" /> element.</para>
  8489. </summary>
  8490. </member>
  8491. <member name="F:System.Web.UI.HtmlTextWriterTag.Li">
  8492. <summary>
  8493. <para>Specifies the HTML <see langword="li" /> element.</para>
  8494. </summary>
  8495. </member>
  8496. <member name="F:System.Web.UI.HtmlTextWriterTag.Link">
  8497. <summary>
  8498. <para>Specifies the HTML <see langword="link" /> element.</para>
  8499. </summary>
  8500. </member>
  8501. <member name="F:System.Web.UI.HtmlTextWriterTag.Map">
  8502. <summary>
  8503. <para>Specifies the HTML <see langword="map" /> element.</para>
  8504. </summary>
  8505. </member>
  8506. <member name="F:System.Web.UI.HtmlTextWriterTag.Marquee">
  8507. <summary>
  8508. <para>Specifies the HTML <see langword="marquee" /> element.</para>
  8509. </summary>
  8510. </member>
  8511. <member name="F:System.Web.UI.HtmlTextWriterTag.Menu">
  8512. <summary>
  8513. <para>Specifies the HTML <see langword="menu" /> element.</para>
  8514. </summary>
  8515. </member>
  8516. <member name="F:System.Web.UI.HtmlTextWriterTag.Meta">
  8517. <summary>
  8518. <para>Specifies the HTML <see langword="meta" /> element.</para>
  8519. </summary>
  8520. </member>
  8521. <member name="F:System.Web.UI.HtmlTextWriterTag.Nobr">
  8522. <summary>
  8523. <para>Specifies the HTML <see langword="nobr" /> element.</para>
  8524. </summary>
  8525. </member>
  8526. <member name="F:System.Web.UI.HtmlTextWriterTag.Noframes">
  8527. <summary>
  8528. <para>Specifies the HTML <see langword="noframes" /> element.</para>
  8529. </summary>
  8530. </member>
  8531. <member name="F:System.Web.UI.HtmlTextWriterTag.Noscript">
  8532. <summary>
  8533. <para>Specifies the HTML <see langword="noscript" /> element.</para>
  8534. </summary>
  8535. </member>
  8536. <member name="F:System.Web.UI.HtmlTextWriterTag.Object">
  8537. <summary>
  8538. <para>Specifies the HTML <see langword="object" /> element.</para>
  8539. </summary>
  8540. </member>
  8541. <member name="F:System.Web.UI.HtmlTextWriterTag.Ol">
  8542. <summary>
  8543. <para>Specifies the HTML <see langword="ol" /> element.</para>
  8544. </summary>
  8545. </member>
  8546. <member name="F:System.Web.UI.HtmlTextWriterTag.Option">
  8547. <summary>
  8548. <para>Specifies the HTML <see langword="option" /> element.</para>
  8549. </summary>
  8550. </member>
  8551. <member name="F:System.Web.UI.HtmlTextWriterTag.P">
  8552. <summary>
  8553. <para>Specifies the HTML <see langword="p" /> element.</para>
  8554. </summary>
  8555. </member>
  8556. <member name="F:System.Web.UI.HtmlTextWriterTag.Param">
  8557. <summary>
  8558. <para>Specifies the HTML <see langword="param" /> element.</para>
  8559. </summary>
  8560. </member>
  8561. <member name="F:System.Web.UI.HtmlTextWriterTag.Pre">
  8562. <summary>
  8563. <para>Specifies the HTML <see langword="pre" /> element.</para>
  8564. </summary>
  8565. </member>
  8566. <member name="F:System.Web.UI.HtmlTextWriterTag.Q">
  8567. <summary>
  8568. <para>Specifies the HTML <see langword="q" /> element.</para>
  8569. </summary>
  8570. </member>
  8571. <member name="F:System.Web.UI.HtmlTextWriterTag.Rt">
  8572. <summary>
  8573. <para>Specifies the DHTML <see langword="rt" /> element, which specifies text for the
  8574. <see langword="ruby" /> element.</para>
  8575. </summary>
  8576. </member>
  8577. <member name="F:System.Web.UI.HtmlTextWriterTag.Ruby">
  8578. <summary>
  8579. <para>Specifies the DHTML <see langword="ruby" /> element.</para>
  8580. </summary>
  8581. </member>
  8582. <member name="F:System.Web.UI.HtmlTextWriterTag.S">
  8583. <summary>
  8584. <para>Specifies the HTML <see langword="s" /> element.</para>
  8585. </summary>
  8586. </member>
  8587. <member name="F:System.Web.UI.HtmlTextWriterTag.Samp">
  8588. <summary>
  8589. <para>Specifies the HTML <see langword="samp" /> element.</para>
  8590. </summary>
  8591. </member>
  8592. <member name="F:System.Web.UI.HtmlTextWriterTag.Script">
  8593. <summary>
  8594. <para>Specifies the HTML <see langword="script" /> element.</para>
  8595. </summary>
  8596. </member>
  8597. <member name="F:System.Web.UI.HtmlTextWriterTag.Select">
  8598. <summary>
  8599. <para>Specifies the HTML <see langword="select" /> element.</para>
  8600. </summary>
  8601. </member>
  8602. <member name="F:System.Web.UI.HtmlTextWriterTag.Small">
  8603. <summary>
  8604. <para>Specifies the HTML <see langword="small" /> element.</para>
  8605. </summary>
  8606. </member>
  8607. <member name="F:System.Web.UI.HtmlTextWriterTag.Span">
  8608. <summary>
  8609. <para>Specifies the HTML <see langword="span" /> element.</para>
  8610. </summary>
  8611. </member>
  8612. <member name="F:System.Web.UI.HtmlTextWriterTag.Strike">
  8613. <summary>
  8614. <para>Specifies the HTML <see langword="strike" /> element.</para>
  8615. </summary>
  8616. </member>
  8617. <member name="F:System.Web.UI.HtmlTextWriterTag.Strong">
  8618. <summary>
  8619. <para>Specifies the HTML <see langword="strong" /> element.</para>
  8620. </summary>
  8621. </member>
  8622. <member name="F:System.Web.UI.HtmlTextWriterTag.Style">
  8623. <summary>
  8624. <para>Specifies the HTML <see langword="style" /> element.</para>
  8625. </summary>
  8626. </member>
  8627. <member name="F:System.Web.UI.HtmlTextWriterTag.Sub">
  8628. <summary>
  8629. <para>Specifies the HTML <see langword="sub" /> element.</para>
  8630. </summary>
  8631. </member>
  8632. <member name="F:System.Web.UI.HtmlTextWriterTag.Sup">
  8633. <summary>
  8634. <para>Specifies the HTML <see langword="sup" /> element.</para>
  8635. </summary>
  8636. </member>
  8637. <member name="F:System.Web.UI.HtmlTextWriterTag.Table">
  8638. <summary>
  8639. <para>Specifies the HTML <see langword="table" /> element.</para>
  8640. </summary>
  8641. </member>
  8642. <member name="F:System.Web.UI.HtmlTextWriterTag.Tbody">
  8643. <summary>
  8644. <para>Specifies the HTML <see langword="tbody" /> element.</para>
  8645. </summary>
  8646. </member>
  8647. <member name="F:System.Web.UI.HtmlTextWriterTag.Td">
  8648. <summary>
  8649. <para>Specifies the HTML <see langword="td" /> element.</para>
  8650. </summary>
  8651. </member>
  8652. <member name="F:System.Web.UI.HtmlTextWriterTag.Textarea">
  8653. <summary>
  8654. <para>Specifies the HTML <see langword="textarea" /> element.</para>
  8655. </summary>
  8656. </member>
  8657. <member name="F:System.Web.UI.HtmlTextWriterTag.Tfoot">
  8658. <summary>
  8659. <para>Specifies the HTML <see langword="tfoot" /> element.</para>
  8660. </summary>
  8661. </member>
  8662. <member name="F:System.Web.UI.HtmlTextWriterTag.Th">
  8663. <summary>
  8664. <para>Specifies the HTML <see langword="th" /> element.</para>
  8665. </summary>
  8666. </member>
  8667. <member name="F:System.Web.UI.HtmlTextWriterTag.Thead">
  8668. <summary>
  8669. <para>Specifies the HTML <see langword="thead" /> element.</para>
  8670. </summary>
  8671. </member>
  8672. <member name="F:System.Web.UI.HtmlTextWriterTag.Title">
  8673. <summary>
  8674. <para>Specifies the HTML <see langword="title" /> element.</para>
  8675. </summary>
  8676. </member>
  8677. <member name="F:System.Web.UI.HtmlTextWriterTag.Tr">
  8678. <summary>
  8679. <para>Specifies the HTML <see langword="tr" /> element.</para>
  8680. </summary>
  8681. </member>
  8682. <member name="F:System.Web.UI.HtmlTextWriterTag.Tt">
  8683. <summary>
  8684. <para>Specifies the HTML <see langword="tt" /> element.</para>
  8685. </summary>
  8686. </member>
  8687. <member name="F:System.Web.UI.HtmlTextWriterTag.U">
  8688. <summary>
  8689. <para>Specifies the HTML <see langword="u" /> element.</para>
  8690. </summary>
  8691. </member>
  8692. <member name="F:System.Web.UI.HtmlTextWriterTag.Ul">
  8693. <summary>
  8694. <para>Specifies the HTML <see langword="ul" /> element.</para>
  8695. </summary>
  8696. </member>
  8697. <member name="F:System.Web.UI.HtmlTextWriterTag.Var">
  8698. <summary>
  8699. <para>Specifies the HTML <see langword="var" /> element.</para>
  8700. </summary>
  8701. </member>
  8702. <member name="F:System.Web.UI.HtmlTextWriterTag.Wbr">
  8703. <summary>
  8704. <para>Specifies the HTML <see langword="wbr" /> element.</para>
  8705. </summary>
  8706. </member>
  8707. <member name="F:System.Web.UI.HtmlTextWriterTag.Xml">
  8708. <summary>
  8709. <para>Specifies the HTML <see langword="xml" /> element.</para>
  8710. </summary>
  8711. </member>
  8712. <member name="T:System.Web.UI.HtmlTextWriterAttribute">
  8713. <summary>
  8714. <para> Specifies the HTML attributes that an <see cref="T:System.Web.UI.HtmlTextWriter" />
  8715. or <see cref="T:System.Web.UI.Html32TextWriter" /> object writes to the opening tag of an HTML element when a Web
  8716. request is processed. </para>
  8717. </summary>
  8718. </member>
  8719. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Accesskey">
  8720. <summary>
  8721. <para>Specifies that the HTML <see langword="acesskey" /> attribute be written to the
  8722. tag. </para>
  8723. </summary>
  8724. </member>
  8725. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Align">
  8726. <summary>
  8727. <para>Specifies that the HTML <see langword="align" /> attribute be written to the tag.</para>
  8728. </summary>
  8729. </member>
  8730. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Alt">
  8731. <summary>
  8732. <para>Specifies that the HTML <see langword="alt" /> attribute be written to the tag. </para>
  8733. </summary>
  8734. </member>
  8735. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Background">
  8736. <summary>
  8737. <para>Specifies that the HTML <see langword="background" /> attribute be written to the tag.</para>
  8738. </summary>
  8739. </member>
  8740. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Bgcolor">
  8741. <summary>
  8742. <para>Specifies that the HTML <see langword="bgcolor" /> attribute be
  8743. written to the tag.</para>
  8744. </summary>
  8745. </member>
  8746. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Border">
  8747. <summary>
  8748. <para>Specifies that the HTML <see langword="border" /> attribute be written to the tag.</para>
  8749. </summary>
  8750. </member>
  8751. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Bordercolor">
  8752. <summary>
  8753. <para>Specifies that the HTML
  8754. <see langword="bordercolor" /> attribute be written to the tag.</para>
  8755. </summary>
  8756. </member>
  8757. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Cellpadding">
  8758. <summary>
  8759. <para>Specifies that the HTML <see langword="cellpadding" /> attribute be written to the tag.</para>
  8760. </summary>
  8761. </member>
  8762. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Cellspacing">
  8763. <summary>
  8764. <para>Specifies that the HTML <see langword="cellspacing" /> attribute be written to the tag.</para>
  8765. </summary>
  8766. </member>
  8767. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Checked">
  8768. <summary>
  8769. <para>Specifies that the HTML <see langword="checked" /> attribute be written to the tag.</para>
  8770. </summary>
  8771. </member>
  8772. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Class">
  8773. <summary>
  8774. <para>Specifies that the HTML <see langword="class" /> attribute be written to the tag.</para>
  8775. </summary>
  8776. </member>
  8777. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Cols">
  8778. <summary>
  8779. <para>Specifies that the HTML <see langword="cols" /> attribute be written to the tag.</para>
  8780. </summary>
  8781. </member>
  8782. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Colspan">
  8783. <summary>
  8784. <para>Specifies that the HTML <see langword="colspan" /> attribute be written to the tag.</para>
  8785. </summary>
  8786. </member>
  8787. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Disabled">
  8788. <summary>
  8789. <para>Specifies that the HTML <see langword="disabled" /> attribute be written to the tag.</para>
  8790. </summary>
  8791. </member>
  8792. <member name="F:System.Web.UI.HtmlTextWriterAttribute.For">
  8793. <summary>
  8794. <para>Specifies that the HTML <see langword="for" /> attribute be written to the tag.</para>
  8795. </summary>
  8796. </member>
  8797. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Height">
  8798. <summary>
  8799. <para>Specifies that the HTML <see langword="height" /> attribute be written to the tag.</para>
  8800. </summary>
  8801. </member>
  8802. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Href">
  8803. <summary>
  8804. <para>Specifies that the HTML <see langword="href" /> attribute be written to the tag.</para>
  8805. </summary>
  8806. </member>
  8807. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Id">
  8808. <summary>
  8809. <para>Specifies that the HTML <see langword="id" /> attribute be written to the tag.</para>
  8810. </summary>
  8811. </member>
  8812. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Maxlength">
  8813. <summary>
  8814. <para>Specifies that the HTML <see langword="maxlength" /> attribute be written to the tag.</para>
  8815. </summary>
  8816. </member>
  8817. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Multiple">
  8818. <summary>
  8819. <para>Specifies that the HTML <see langword="multiple" /> attribute be written to the tag.</para>
  8820. </summary>
  8821. </member>
  8822. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Name">
  8823. <summary>
  8824. <para>Specifies that the HTML <see langword="name" /> attribute be written to the tag.</para>
  8825. </summary>
  8826. </member>
  8827. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Nowrap">
  8828. <summary>
  8829. <para>Specifies that the HTML <see langword="nowrap" /> attribute be written to the tag.</para>
  8830. </summary>
  8831. </member>
  8832. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Onchange">
  8833. <summary>
  8834. <para>Specifies that the HTML <see langword="onchange" /> attribute be written to the tag.</para>
  8835. </summary>
  8836. </member>
  8837. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Onclick">
  8838. <summary>
  8839. <para>Specifies that the HTML <see langword="onclick" /> attribute be written to the tag.</para>
  8840. </summary>
  8841. </member>
  8842. <member name="F:System.Web.UI.HtmlTextWriterAttribute.ReadOnly">
  8843. <summary>
  8844. <para>Specifies that the HTML <see langword="readonly" /> attribute be written
  8845. to the tag.</para>
  8846. </summary>
  8847. </member>
  8848. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Rows">
  8849. <summary>
  8850. <para>Specifies that the HTML <see langword="rows" /> attribute be written to the tag.</para>
  8851. </summary>
  8852. </member>
  8853. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Rowspan">
  8854. <summary>
  8855. <para>Specifies that the HTML <see langword="rowspan" /> attribute be written to the tag.</para>
  8856. </summary>
  8857. </member>
  8858. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Rules">
  8859. <summary>
  8860. <para>Specifies that the HTML <see langword="rules" /> attribute be written to the tag.</para>
  8861. </summary>
  8862. </member>
  8863. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Selected">
  8864. <summary>
  8865. <para>Specifies that the HTML <see langword="selected" /> attribute be written to the tag.</para>
  8866. </summary>
  8867. </member>
  8868. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Size">
  8869. <summary>
  8870. <para>Specifies that the HTML <see langword="size" /> attribute be written to the tag.</para>
  8871. </summary>
  8872. </member>
  8873. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Src">
  8874. <summary>
  8875. <para>Specifies that the HTML <see langword="src" /> attribute be written to the tag.</para>
  8876. </summary>
  8877. </member>
  8878. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Style">
  8879. <summary>
  8880. <para>Specifies that the HTML <see langword="style" /> attribute be written to the tag.</para>
  8881. </summary>
  8882. </member>
  8883. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Tabindex">
  8884. <summary>
  8885. <para>Specifies that the HTML <see langword="tabindex" /> attribute be written to the tag.</para>
  8886. </summary>
  8887. </member>
  8888. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Target">
  8889. <summary>
  8890. <para>Specifies that the HTML<see langword=" target" /> attribute be written to the tag.</para>
  8891. </summary>
  8892. </member>
  8893. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Title">
  8894. <summary>
  8895. <para>Specifies that the HTML <see langword="title" /> attribute be written to the tag.</para>
  8896. </summary>
  8897. </member>
  8898. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Type">
  8899. <summary>
  8900. <para>Specifies that the HTML <see langword="type" /> attribute be written to the tag.</para>
  8901. </summary>
  8902. </member>
  8903. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Valign">
  8904. <summary>
  8905. <para>Specifies that the HTML <see langword="valign" /> attribute be written to the tag.</para>
  8906. </summary>
  8907. </member>
  8908. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Value">
  8909. <summary>
  8910. <para>Specifies that the HTML <see langword="value" /> attribute be written to the tag.</para>
  8911. </summary>
  8912. </member>
  8913. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Width">
  8914. <summary>
  8915. <para>Specifies that the HTML <see langword="width" /> attribute be written to the tag.</para>
  8916. </summary>
  8917. </member>
  8918. <member name="F:System.Web.UI.HtmlTextWriterAttribute.Wrap">
  8919. <summary>
  8920. <para>Specifies that the HTML <see langword="wrap" /> attribute be written to the tag.</para>
  8921. </summary>
  8922. </member>
  8923. <member name="T:System.Web.UI.HtmlTextWriterStyle">
  8924. <summary>
  8925. <para> Specifies the HTML styles available to
  8926. an <see cref="T:System.Web.UI.HtmlTextWriter" /> or <see cref="T:System.Web.UI.Html32TextWriter" /> object output stream.</para>
  8927. </summary>
  8928. </member>
  8929. <member name="F:System.Web.UI.HtmlTextWriterStyle.BackgroundColor">
  8930. <summary>
  8931. <para>Specifies the HTML <see langword="backgroundcolor" /> style.</para>
  8932. </summary>
  8933. </member>
  8934. <member name="F:System.Web.UI.HtmlTextWriterStyle.BackgroundImage">
  8935. <summary>
  8936. <para>Specifies the HTML <see langword="backgroundimage" /> style.</para>
  8937. </summary>
  8938. </member>
  8939. <member name="F:System.Web.UI.HtmlTextWriterStyle.BorderCollapse">
  8940. <summary>
  8941. <para>Specifies the HTML <see langword="bordercollapse" /> style.</para>
  8942. </summary>
  8943. </member>
  8944. <member name="F:System.Web.UI.HtmlTextWriterStyle.BorderColor">
  8945. <summary>
  8946. <para>Specifies the HTML <see langword="bordercolor" /> style.</para>
  8947. </summary>
  8948. </member>
  8949. <member name="F:System.Web.UI.HtmlTextWriterStyle.BorderStyle">
  8950. <summary>
  8951. <para>Specifies the HTML <see langword="borderstyle" /> style.</para>
  8952. </summary>
  8953. </member>
  8954. <member name="F:System.Web.UI.HtmlTextWriterStyle.BorderWidth">
  8955. <summary>
  8956. <para>Specifies the HTML <see langword="borderwidth" /> style.</para>
  8957. </summary>
  8958. </member>
  8959. <member name="F:System.Web.UI.HtmlTextWriterStyle.Color">
  8960. <summary>
  8961. <para>Specifies the HTML <see langword="color" /> style.</para>
  8962. </summary>
  8963. </member>
  8964. <member name="F:System.Web.UI.HtmlTextWriterStyle.FontFamily">
  8965. <summary>
  8966. <para>Specifies the HTML <see langword="fontfamily" /> style.</para>
  8967. </summary>
  8968. </member>
  8969. <member name="F:System.Web.UI.HtmlTextWriterStyle.FontSize">
  8970. <summary>
  8971. <para>Specifies the HTML <see langword="fontsize" /> style.</para>
  8972. </summary>
  8973. </member>
  8974. <member name="F:System.Web.UI.HtmlTextWriterStyle.FontStyle">
  8975. <summary>
  8976. <para>Specifies the HTML <see langword="fontstyle" /> style.</para>
  8977. </summary>
  8978. </member>
  8979. <member name="F:System.Web.UI.HtmlTextWriterStyle.FontWeight">
  8980. <summary>
  8981. <para>Specifies the HTML <see langword="fontweight" /> style.</para>
  8982. </summary>
  8983. </member>
  8984. <member name="F:System.Web.UI.HtmlTextWriterStyle.Height">
  8985. <summary>
  8986. <para>Specifies the HTML <see langword="height" /> style.</para>
  8987. </summary>
  8988. </member>
  8989. <member name="F:System.Web.UI.HtmlTextWriterStyle.TextDecoration">
  8990. <summary>
  8991. <para>Specifies the HTML <see langword="textdecoration" /> style.</para>
  8992. </summary>
  8993. </member>
  8994. <member name="F:System.Web.UI.HtmlTextWriterStyle.Width">
  8995. <summary>
  8996. <para>Specifies the HTML <see langword="width" /> style.</para>
  8997. </summary>
  8998. </member>
  8999. <member name="T:System.Web.UI.Html32TextWriter">
  9000. <summary>
  9001. <para>Provides a text writer for ASP.NET pages and server controls that
  9002. render content to HTML 3.2 clients.</para>
  9003. </summary>
  9004. </member>
  9005. <member name="M:System.Web.UI.Html32TextWriter.#ctor(System.IO.TextWriter)">
  9006. <summary>
  9007. <para>Initializes a new instance of the <see cref="T:System.Web.UI.Html32TextWriter" />
  9008. class that uses the <see cref="F:System.Web.UI.HtmlTextWriter.DefaultTabString" /> constant when indentation of a
  9009. line is necessary.</para>
  9010. </summary>
  9011. <param name="writer">The <see cref="T:System.IO.TextWriter" /> object to render the HMTL content.</param>
  9012. </member>
  9013. <member name="M:System.Web.UI.Html32TextWriter.#ctor(System.IO.TextWriter,System.String)">
  9014. <summary>
  9015. <para>Initializes a new instance of the <see cref="T:System.Web.UI.Html32TextWriter" />
  9016. class using the specified tab spacing.</para>
  9017. </summary>
  9018. <param name="writer">The <see cref="T:System.IO.TextWriter" /> object to render the HMTL content.</param>
  9019. <param name=" tabString">A <see cref="T:System.String" /> that represents the number of spaces defined in the <see cref="P:System.Web.UI.HtmlTextWriter.Indent" /> property. </param>
  9020. </member>
  9021. <member name="M:System.Web.UI.Html32TextWriter.OnStyleAttributeRender(System.String,System.String,System.Web.UI.HtmlTextWriterStyle)">
  9022. <summary>
  9023. <para>Determines whether the specified HTML style attribute
  9024. and its value have been rendered on the requesting page.</para>
  9025. </summary>
  9026. <param name="name">The HTML style attribute to render to the client.</param>
  9027. <param name=" value">The value associated with the HTML style attribute.</param>
  9028. <param name=" key">The <see cref="T:System.Web.UI.HtmlTextWriterStyle" /> enumeration value associated with the HTML style attribute.</param>
  9029. <returns>
  9030. <para>
  9031. <see langword="true" /> if the HTML style attribute and
  9032. its value have been rendered on the requesting page; otherwise,
  9033. <see langword="false" /> .</para>
  9034. </returns>
  9035. </member>
  9036. <member name="M:System.Web.UI.Html32TextWriter.OnTagRender(System.String,System.Web.UI.HtmlTextWriterTag)">
  9037. <summary>
  9038. <para>Determines whether the specified HTML element has been
  9039. rendered to the requesting page.</para>
  9040. </summary>
  9041. <param name="name">The HTML element to render.</param>
  9042. <param name=" key">The <see cref="T:System.Web.UI.HtmlTextWriterTag" /> enumeration value associated with the HTML element.</param>
  9043. <returns>
  9044. <para>
  9045. <see langword="true" /> if the HTML element has been rendered to the requesting
  9046. page; otherwise, <see langword="false" />.</para>
  9047. </returns>
  9048. </member>
  9049. <member name="M:System.Web.UI.Html32TextWriter.GetTagName(System.Web.UI.HtmlTextWriterTag)">
  9050. <summary>
  9051. <para>Obtains the HTML element associated with the specified
  9052. <see cref="T:System.Web.UI.HtmlTextWriterTag" /> enumeration value.</para>
  9053. </summary>
  9054. <param name="tagKey">The <see langword="HtmlTextWriterTag" /> value to obtain the HTML element for.</param>
  9055. <returns>
  9056. <para>The HTML element.</para>
  9057. </returns>
  9058. </member>
  9059. <member name="M:System.Web.UI.Html32TextWriter.RenderBeginTag(System.Web.UI.HtmlTextWriterTag)">
  9060. <summary>
  9061. <para>Writes the opening tag of the specified HTML element to the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
  9062. </summary>
  9063. <param name="tagKey">The <see cref="T:System.Web.UI.HtmlTextWriterTag" /> enumeration value that indicates the HTML element to write.</param>
  9064. </member>
  9065. <member name="M:System.Web.UI.Html32TextWriter.RenderBeforeTag">
  9066. <summary>
  9067. <para>Writes any text or tab spacing that occurs before the
  9068. opening tag of an HTML element to the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
  9069. </summary>
  9070. <returns>
  9071. <para>Any HTML font and spacing information to render before
  9072. the tag; if there is no such information to render, this method returns
  9073. <see langword="null" /> .</para>
  9074. </returns>
  9075. </member>
  9076. <member name="M:System.Web.UI.Html32TextWriter.RenderBeforeContent">
  9077. <summary>
  9078. <para>Writes any tab spacing or font information that appears
  9079. before the content contained in an HTML element.</para>
  9080. </summary>
  9081. <returns>
  9082. <para>The font information or spacing to write prior to the
  9083. content of the HTML element. If there is no such information to render, this
  9084. method returns <see langword="null" />.
  9085. </para>
  9086. </returns>
  9087. </member>
  9088. <member name="M:System.Web.UI.Html32TextWriter.RenderAfterContent">
  9089. <summary>
  9090. <para>Writes any text or spacing that occurs after the content
  9091. of the HTML element to the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
  9092. </summary>
  9093. <returns>
  9094. <para>The spacing or text to write after to the content of the
  9095. HTML element. If there is no such information to render, this method
  9096. returns <see langword="null" />
  9097. . </para>
  9098. </returns>
  9099. </member>
  9100. <member name="M:System.Web.UI.Html32TextWriter.RenderAfterTag">
  9101. <summary>
  9102. <para>Writes any spacing or text that occurs after an HTML
  9103. element's closing tag.</para>
  9104. </summary>
  9105. <returns>
  9106. <para>The spacing or text to write after the closing tag of
  9107. the HTML element. If there is no such information to render, this method returns
  9108. <see langword="null" />
  9109. .</para>
  9110. </returns>
  9111. </member>
  9112. <member name="M:System.Web.UI.Html32TextWriter.RenderEndTag">
  9113. <summary>
  9114. <para>Writes the end tag of an HTML element to the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream, along
  9115. with any font information that is associated with the element.</para>
  9116. </summary>
  9117. </member>
  9118. <member name="T:System.Web.UI.ImageClickEventArgs">
  9119. <summary>
  9120. <para>Provides data for any events that occur when a user
  9121. clicks on a image-based ASP.NET server control, such as the <see cref="T:System.Web.UI.HtmlControls.HtmlInputImage" /> or <see cref="T:System.Web.UI.WebControls.ImageButton" />
  9122. server controls.
  9123. This class cannot be inherited.</para>
  9124. </summary>
  9125. </member>
  9126. <member name="F:System.Web.UI.ImageClickEventArgs.X">
  9127. <summary>
  9128. <para>An integer that represents the x-coordinate where a user clicked on an image-based ASP.NET
  9129. server control.</para>
  9130. </summary>
  9131. </member>
  9132. <member name="F:System.Web.UI.ImageClickEventArgs.Y">
  9133. <summary>
  9134. <para>An integer that represents the y-coordinate where a user clicked on
  9135. an image-based ASP.NET server control.</para>
  9136. </summary>
  9137. </member>
  9138. <member name="M:System.Web.UI.ImageClickEventArgs.#ctor(System.Int32,System.Int32)">
  9139. <summary>
  9140. <para>Initializes a new instance of the <see cref="T:System.Web.UI.ImageClickEventArgs" /> class.</para>
  9141. </summary>
  9142. <param name="x">The x-coordinate where the user clicked on an image-based ASP.NET server control.</param>
  9143. <param name=" y">The y-coordinate where the user clicked on an image-based ASP.NET server control.</param>
  9144. </member>
  9145. <member name="T:System.Web.UI.ImageClickEventHandler">
  9146. <summary>
  9147. <para>Represents the method that will handle any events that are
  9148. raised when a user clicks on an image-based ASP.NET server control.</para>
  9149. </summary>
  9150. <param name="sender">The server control that is the source of the event.</param>
  9151. <param name=" e">An <see cref="T:System.Web.UI.ImageClickEventArgs" /> object that contains event data.</param>
  9152. </member>
  9153. <member name="T:System.Web.UI.INamingContainer">
  9154. <summary>
  9155. <para>Identifies a container control that creates a new ID
  9156. namespace within a <see cref="T:System.Web.UI.Page" />
  9157. object's control
  9158. hierarchy. This is a marker interface only.</para>
  9159. </summary>
  9160. </member>
  9161. <member name="T:System.Web.UI.IPostBackDataHandler">
  9162. <summary>
  9163. <para> Defines methods that ASP.NET server controls must implement to
  9164. automatically load post back data.</para>
  9165. </summary>
  9166. </member>
  9167. <member name="M:System.Web.UI.IPostBackDataHandler.LoadPostData(System.String,System.Collections.Specialized.NameValueCollection)">
  9168. <summary>
  9169. <para> When implemented by a class, processes post back data for an ASP.NET server control. </para>
  9170. </summary>
  9171. <param name="postDataKey">The key identifier for the control.</param>
  9172. <param name=" postCollection">The collection of all incoming name values.</param>
  9173. <returns>
  9174. <para>
  9175. <see langword="true" /> if the server control's state changes as a result of the
  9176. post back; otherwise <see langword="false" /> .</para>
  9177. </returns>
  9178. </member>
  9179. <member name="M:System.Web.UI.IPostBackDataHandler.RaisePostDataChangedEvent">
  9180. <summary>
  9181. <para>When implemented by a class, signals the server control object to notify the ASP.NET application that the state of the
  9182. control has changed.</para>
  9183. </summary>
  9184. </member>
  9185. <member name="T:System.Web.UI.IPostBackEventHandler">
  9186. <summary>
  9187. <para> Defines the method ASP.NET server controls must implement
  9188. to handle post back events.</para>
  9189. </summary>
  9190. </member>
  9191. <member name="M:System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(System.String)">
  9192. <summary>
  9193. <para> When implemented by a class, enables a server control to process an event raised when a form is posted to the server.</para>
  9194. </summary>
  9195. <param name="eventArgument">A <see cref="T:System.String" /> that represents an optional event argument to be passed to the event handler.</param>
  9196. </member>
  9197. <member name="T:System.Web.UI.IStateManager">
  9198. <summary>
  9199. <para> Defines the properties and methods any class must implement to support view state management for a server
  9200. control.</para>
  9201. </summary>
  9202. </member>
  9203. <member name="M:System.Web.UI.IStateManager.LoadViewState(System.Object)">
  9204. <summary>
  9205. <para>When implemented by a class, loads the server control's previously saved view state to the control.</para>
  9206. </summary>
  9207. <param name="state">An <see cref="T:System.Object" /> that contains the saved view state values for the control.</param>
  9208. </member>
  9209. <member name="M:System.Web.UI.IStateManager.SaveViewState">
  9210. <summary>
  9211. <para>When implemented by a class, saves the changes to a server control's view state to an
  9212. <see cref="T:System.Object" /> .</para>
  9213. </summary>
  9214. <returns>
  9215. <para>The <see langword="Object" /> that contains the view state changes. </para>
  9216. </returns>
  9217. </member>
  9218. <member name="M:System.Web.UI.IStateManager.TrackViewState">
  9219. <summary>
  9220. <para> When implemented by a class, instructs the server control to track changes to its view state.</para>
  9221. </summary>
  9222. </member>
  9223. <member name="P:System.Web.UI.IStateManager.IsTrackingViewState">
  9224. <summary>
  9225. <para>When implemented by a class, gets a value indicating whether a server control is tracking its view state changes.</para>
  9226. </summary>
  9227. </member>
  9228. <member name="T:System.Web.UI.ITemplate">
  9229. <summary>
  9230. <para> Defines the method to implement for populating an ASP.NET server control with child controls when using a control
  9231. with inline templates when declared in an .aspx file.</para>
  9232. </summary>
  9233. </member>
  9234. <member name="M:System.Web.UI.ITemplate.InstantiateIn(System.Web.UI.Control)">
  9235. <summary>
  9236. <para>When implemented by a class, defines the <see cref="T:System.Web.UI.Control" /> object that child
  9237. controls and templates belong to. These child controls
  9238. are in turn defined within an inline template.</para>
  9239. </summary>
  9240. <param name="container">The <see langword="Control" /> object to contain the instantiated controls from the inline template.</param>
  9241. </member>
  9242. <member name="T:System.Web.UI.IValidator">
  9243. <summary>
  9244. <para> Defines the properties and methods that objects that participate in validation must implement.</para>
  9245. </summary>
  9246. </member>
  9247. <member name="M:System.Web.UI.IValidator.Validate">
  9248. <summary>
  9249. <para> When implemented by a
  9250. class, evaluates the condition it checks and upates the <see cref="P:System.Web.UI.IValidator.IsValid" />
  9251. property.</para>
  9252. </summary>
  9253. </member>
  9254. <member name="P:System.Web.UI.IValidator.IsValid">
  9255. <summary>
  9256. <para> When implemented by a class, gets or sets a value indicating whether the
  9257. user-entered content in the specified control passes validation.</para>
  9258. </summary>
  9259. </member>
  9260. <member name="P:System.Web.UI.IValidator.ErrorMessage">
  9261. <summary>
  9262. <para> When implemented by a class, gets or sets the error message text generated when the condition being validated
  9263. fails.</para>
  9264. </summary>
  9265. </member>
  9266. <member name="T:System.Web.UI.LiteralControl">
  9267. <summary>
  9268. <para> Represents HTML elements, text, and any other strings in
  9269. an ASP.NET page that do not require
  9270. processing on the
  9271. server. </para>
  9272. </summary>
  9273. </member>
  9274. <member name="M:System.Web.UI.LiteralControl.#ctor">
  9275. <summary>
  9276. <para>Initializes a new instance of the <see cref="T:System.Web.UI.LiteralControl" /> class that contains a literal string to be rendered on the requested ASP.NET page.</para>
  9277. </summary>
  9278. </member>
  9279. <member name="M:System.Web.UI.LiteralControl.#ctor(System.String)">
  9280. <summary>
  9281. <para>Initializes a new instance of the <see cref="T:System.Web.UI.LiteralControl" /> class with
  9282. the specified text.</para>
  9283. </summary>
  9284. <param name="text">The text to be rendered on the requested Web page.</param>
  9285. </member>
  9286. <member name="M:System.Web.UI.LiteralControl.CreateControlCollection">
  9287. <summary>
  9288. <para>Creates an <see cref="T:System.Web.UI.EmptyControlCollection" /> object for the current instance of the <see cref="T:System.Web.UI.LiteralControl" /> .</para>
  9289. </summary>
  9290. <returns>
  9291. <para>The <see langword="EmptyControlCollection" /> object for
  9292. the current control.</para>
  9293. </returns>
  9294. </member>
  9295. <member name="M:System.Web.UI.LiteralControl.Render(System.Web.UI.HtmlTextWriter)">
  9296. <summary>
  9297. <para>Writes the content of the <see cref="T:System.Web.UI.LiteralControl" />
  9298. object to the ASP.NET page.</para>
  9299. </summary>
  9300. <param name="output">An <see cref="T:System.Web.UI.HtmlTextWriter" /> object that renders the content of the <see langword="LiteralControl" /> object to the requesting client. </param>
  9301. </member>
  9302. <member name="P:System.Web.UI.LiteralControl.Text">
  9303. <summary>
  9304. <para>Gets or sets the text content of the <see cref="T:System.Web.UI.LiteralControl" /> object.</para>
  9305. </summary>
  9306. </member>
  9307. <member name="M:System.Web.UI.LosFormatter.Deserialize(System.IO.Stream)">
  9308. <summary>
  9309. <para> Deserializes a LOS-formatted object from a <see cref="T:System.IO.Stream" /> object.</para>
  9310. </summary>
  9311. <param name="stream">The source of the object to be deserialized.</param>
  9312. <returns>
  9313. <para>Returns the deserialized object.</para>
  9314. </returns>
  9315. </member>
  9316. <member name="M:System.Web.UI.LosFormatter.Deserialize(System.IO.TextReader)">
  9317. <summary>
  9318. <para>Deserializes a LOS-formatted object from a <see cref="T:System.IO.TextReader" /> object.</para>
  9319. </summary>
  9320. <param name="input">The source of the object to be deserialized.</param>
  9321. <returns>
  9322. <para>Returns the deserialized object.</para>
  9323. </returns>
  9324. </member>
  9325. <member name="M:System.Web.UI.LosFormatter.Deserialize(System.String)">
  9326. <summary>
  9327. <para>Deserializes a LOS formatted object from a string.</para>
  9328. </summary>
  9329. <param name="input">The source of the object to be deserialized.</param>
  9330. <returns>
  9331. <para>Returns the deserialized object.</para>
  9332. </returns>
  9333. </member>
  9334. <member name="M:System.Web.UI.LosFormatter.Serialize(System.IO.Stream,System.Object)">
  9335. <summary>
  9336. <para>Serializes the Web Forms view state value into
  9337. a <see cref="T:System.IO.Stream" /> object.</para>
  9338. </summary>
  9339. <param name="stream">The object to serialize into.</param>
  9340. <param name=" value">The view state information to pass.</param>
  9341. </member>
  9342. <member name="M:System.Web.UI.LosFormatter.Serialize(System.IO.TextWriter,System.Object)">
  9343. <summary>
  9344. <para>Serializes the view state value into a <see cref="T:System.IO.TextWriter" /> object.</para>
  9345. </summary>
  9346. <param name="output"> The object to serialize into.</param>
  9347. <param name=" value">The view state information to pass.</param>
  9348. </member>
  9349. <member name="T:System.Web.UI.Pair">
  9350. <summary>
  9351. <para>Holds two objects that can be added together to an ASP.NET
  9352. server control's view state.</para>
  9353. </summary>
  9354. </member>
  9355. <member name="F:System.Web.UI.Pair.First">
  9356. <summary>
  9357. <para>Represents the first object added to the server control's view state using the <see cref="T:System.Web.UI.Pair" /> class.</para>
  9358. </summary>
  9359. </member>
  9360. <member name="F:System.Web.UI.Pair.Second">
  9361. <summary>
  9362. <para>Represents the second object added to the server control's view state using
  9363. the <see cref="T:System.Web.UI.Pair" /> class.</para>
  9364. </summary>
  9365. </member>
  9366. <member name="M:System.Web.UI.Pair.#ctor">
  9367. <summary>
  9368. <para>Initializes a new instance of the <see cref="T:System.Web.UI.Pair" /> class.</para>
  9369. </summary>
  9370. <returns>
  9371. <para>The objects inserted in the server control's view state.</para>
  9372. </returns>
  9373. </member>
  9374. <member name="M:System.Web.UI.Pair.#ctor(System.Object,System.Object)">
  9375. <summary>
  9376. <para>Initializes a new instance of the <see cref="T:System.Web.UI.Pair" /> class
  9377. containing the specifed objects.</para>
  9378. </summary>
  9379. <param name="x">The first object to add to view state.</param>
  9380. <param name=" y">The second object to add to view state.</param>
  9381. <returns>
  9382. <para>The objects to be added to view state.</para>
  9383. </returns>
  9384. </member>
  9385. <member name="T:System.Web.UI.Triplet">
  9386. <summary>
  9387. <para>Holds three objects that can be added together to an
  9388. ASP.NET server control's view state.</para>
  9389. </summary>
  9390. </member>
  9391. <member name="F:System.Web.UI.Triplet.First">
  9392. <summary>
  9393. <para>Represents the first object added to the server control's view state using the <see cref="T:System.Web.UI.Triplet" /> class.</para>
  9394. </summary>
  9395. </member>
  9396. <member name="F:System.Web.UI.Triplet.Second">
  9397. <summary>
  9398. <para>Represents the second object added to the server control's view state using the <see cref="T:System.Web.UI.Triplet" /> class.</para>
  9399. </summary>
  9400. </member>
  9401. <member name="F:System.Web.UI.Triplet.Third">
  9402. <summary>
  9403. <para>Represents the third object added to the server control's view state using the <see cref="T:System.Web.UI.Triplet" /> class.</para>
  9404. </summary>
  9405. </member>
  9406. <member name="M:System.Web.UI.Triplet.#ctor">
  9407. <summary>
  9408. <para>Initializes a new instance of the <see cref="T:System.Web.UI.Triplet" /> class.</para>
  9409. </summary>
  9410. </member>
  9411. <member name="M:System.Web.UI.Triplet.#ctor(System.Object,System.Object)">
  9412. <summary>
  9413. <para>Initializes a new instance of the <see cref="T:System.Web.UI.Triplet" /> class that
  9414. contains two objects.</para>
  9415. </summary>
  9416. <param name="x">The first object to add to view state.</param>
  9417. <param name=" y">The second object to add to view state.</param>
  9418. </member>
  9419. <member name="M:System.Web.UI.Triplet.#ctor(System.Object,System.Object,System.Object)">
  9420. <summary>
  9421. <para>Initializes a new instance of the <see cref="T:System.Web.UI.Triplet" /> class
  9422. that contains three objects.</para>
  9423. </summary>
  9424. <param name="x">The first object to add to view state.</param>
  9425. <param name=" y">The second object to add to view state.</param>
  9426. <param name=" z">The third object to add to view state.</param>
  9427. </member>
  9428. <member name="T:System.Web.UI.Page">
  9429. <summary>
  9430. <para> Represents an .aspx file requested from a server
  9431. that hosts an ASP.NET Web
  9432. application.</para>
  9433. </summary>
  9434. </member>
  9435. <member name="T:System.Web.UI.TemplateControl">
  9436. <summary>
  9437. <para>Provides the <see cref="T:System.Web.UI.Page" /> class and the <see cref="T:System.Web.UI.UserControl" /> class with a base set of functionality.</para>
  9438. </summary>
  9439. </member>
  9440. <member name="M:System.Web.UI.TemplateControl.#ctor">
  9441. <summary>
  9442. <para>Initializes a new instance of the <see cref="T:System.Web.UI.TemplateControl" /> class.</para>
  9443. </summary>
  9444. </member>
  9445. <member name="M:System.Web.UI.TemplateControl.Construct">
  9446. <summary>
  9447. <para>
  9448. Performs construction time logic.</para>
  9449. </summary>
  9450. </member>
  9451. <member name="M:System.Web.UI.TemplateControl.OnCommitTransaction(System.EventArgs)">
  9452. <summary>
  9453. <para>Raises the <see langword="CommitTransaction" />
  9454. event.</para>
  9455. </summary>
  9456. <param name="e">An <see langword="EventArgs" /> object that contains the event data.</param>
  9457. </member>
  9458. <member name="M:System.Web.UI.TemplateControl.OnAbortTransaction(System.EventArgs)">
  9459. <summary>
  9460. <para>Raises the <see langword="AbortTransaction" /> event.</para>
  9461. </summary>
  9462. <param name="e">An <see langword="EventArgs" /> object that contains the event data.</param>
  9463. </member>
  9464. <member name="M:System.Web.UI.TemplateControl.OnError(System.EventArgs)">
  9465. <summary>
  9466. <para>Raises the <see langword="Error" /> event.
  9467. </para>
  9468. </summary>
  9469. <param name="e">An <see langword="EventArgs" /> object that contains the event data.</param>
  9470. </member>
  9471. <member name="M:System.Web.UI.TemplateControl.LoadControl(System.String)">
  9472. <summary>
  9473. <para>Obtains a <see cref="T:System.Web.UI.UserControl" /> object from a user control file.</para>
  9474. </summary>
  9475. <param name="virtualPath">The virtual path to a user control file.</param>
  9476. <returns>
  9477. <para> Returns the specified <see langword="UserControl" /> object.</para>
  9478. </returns>
  9479. </member>
  9480. <member name="M:System.Web.UI.TemplateControl.LoadTemplate(System.String)">
  9481. <summary>
  9482. <para> Obtains an instance of the <see langword="ITemplate" /> interface from an
  9483. external file.
  9484. </para>
  9485. </summary>
  9486. <param name="virtualPath">The virtual path to a user control file. </param>
  9487. <returns>
  9488. <para> An instance of the specified template.
  9489. </para>
  9490. </returns>
  9491. </member>
  9492. <member name="M:System.Web.UI.TemplateControl.ParseControl(System.String)">
  9493. <summary>
  9494. <para>Parses an input string into a <see cref="T:System.Web.UI.Control" /> on the
  9495. Web Forms page or user control. <see langword=" " /></para>
  9496. </summary>
  9497. <param name="content">A <see cref="T:System.String" /> that contains a user control.</param>
  9498. <returns>
  9499. <para>Returns the parsed <see cref="T:System.Web.UI.Control" /> .</para>
  9500. </returns>
  9501. </member>
  9502. <member name="E:System.Web.UI.TemplateControl.CommitTransaction">
  9503. <summary>
  9504. <para> Occurs when a transaction completes.</para>
  9505. </summary>
  9506. </member>
  9507. <member name="E:System.Web.UI.TemplateControl.AbortTransaction">
  9508. <summary>
  9509. <para>Occurs when a user aborts a transaction.</para>
  9510. </summary>
  9511. </member>
  9512. <member name="E:System.Web.UI.TemplateControl.Error">
  9513. <summary>
  9514. <para>Occurs when an unhandled exception is thrown.</para>
  9515. </summary>
  9516. </member>
  9517. <member name="M:System.Web.UI.Page.#ctor">
  9518. <summary>
  9519. <para>Initializes a new instance of the <see cref="T:System.Web.UI.Page" /> class.</para>
  9520. </summary>
  9521. </member>
  9522. <member name="M:System.Web.UI.Page.CreateHtmlTextWriter(System.IO.TextWriter)">
  9523. <summary>
  9524. <para>Creates an <see cref="T:System.Web.UI.HtmlTextWriter" />
  9525. object to render the page's content.</para>
  9526. </summary>
  9527. <param name="tw">The text writer to create.</param>
  9528. <returns>
  9529. <para>The specified <see cref="T:System.Web.UI.HtmlTextWriter" /> or <see cref="T:System.Web.UI.Html32TextWriter" /> object.</para>
  9530. </returns>
  9531. </member>
  9532. <member name="M:System.Web.UI.Page.GetTypeHashCode">
  9533. <summary>
  9534. <para>Retrieves a hash code that is generated by <see langword="Page" /> objects that are generated at run time. This
  9535. hash code is unique to the <see langword="Page" />
  9536. object's control
  9537. hierarchy.</para>
  9538. </summary>
  9539. <returns>
  9540. <para>The hash code generated at run time. The default is 0.</para>
  9541. </returns>
  9542. </member>
  9543. <member name="M:System.Web.UI.Page.DesignerInitialize">
  9544. <summary>
  9545. <para>Performs any initialization of the instance of
  9546. the <see cref="T:System.Web.UI.Page" /> class that is required
  9547. by RAD designers. This method is used only at design time.</para>
  9548. </summary>
  9549. </member>
  9550. <member name="M:System.Web.UI.Page.DeterminePostBackMode">
  9551. <summary>
  9552. <para>Determines the type of request made for the
  9553. <see langword="Page" />
  9554. class.</para>
  9555. </summary>
  9556. <returns>
  9557. <para>If the post back used the <see langword="POST" /> method, the form
  9558. information is returned from the <see langword="Context" /> object. If the postback used the
  9559. <see langword="GET" />
  9560. method,
  9561. the query string information is returned. If the page is being requested
  9562. for the first time, <see langword="null" />is returned.</para>
  9563. </returns>
  9564. </member>
  9565. <member name="M:System.Web.UI.Page.LoadPageStateFromPersistenceMedium">
  9566. <summary>
  9567. <para>Loads any saved view-state information to
  9568. the <see cref="T:System.Web.UI.Page" /> object. Override this method if you want to load
  9569. the <see langword="Page" /> view-state information in anything other than a hidden field.</para>
  9570. </summary>
  9571. <returns>
  9572. <para>The saved view state.</para>
  9573. </returns>
  9574. </member>
  9575. <member name="M:System.Web.UI.Page.GetPostBackEventReference(System.Web.UI.Control)">
  9576. <summary>
  9577. <para>Obtains a reference to a client-side script function that causes, when invoked, the
  9578. server to post back to the page.</para>
  9579. </summary>
  9580. <param name="control">The server control to process the post back on the server.</param>
  9581. <returns>
  9582. <para>The text of the client-side function call that can be inserted in a client-side event handler.</para>
  9583. </returns>
  9584. </member>
  9585. <member name="M:System.Web.UI.Page.GetPostBackEventReference(System.Web.UI.Control,System.String)">
  9586. <summary>
  9587. <para>Obtains a reference to a client-side script function that causes, when
  9588. invoked, the server to post back to the page. This method also passes a parameter to the server control that performs the post-back processing on the
  9589. server.</para>
  9590. </summary>
  9591. <param name="control">The server control to process the post back.</param>
  9592. <param name=" argument">The parameter passed to the server control.</param>
  9593. <returns>
  9594. <para> The text of the
  9595. client-side function call that can be inserted into a client-side event
  9596. handler. </para>
  9597. </returns>
  9598. </member>
  9599. <member name="M:System.Web.UI.Page.GetPostBackClientEvent(System.Web.UI.Control,System.String)">
  9600. <summary>
  9601. <para>Obtains a reference to a client-side script function
  9602. that causes, when invoked, a server postback to the form.</para>
  9603. </summary>
  9604. <param name="control">The server control that receives the client event postback.</param>
  9605. <param name=" argument">A <see cref="T:System.String" /> argument that is passed to the <see cref="M:System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(System.String)" qualify="true" /> method.</param>
  9606. <returns>
  9607. <para>The <see langword="String" /> that represents the client event.</para>
  9608. </returns>
  9609. </member>
  9610. <member name="M:System.Web.UI.Page.GetPostBackClientHyperlink(System.Web.UI.Control,System.String)">
  9611. <summary>
  9612. <para>Appends <see langword="javascript:" /> to the beginning of
  9613. the return from a <see cref="M:System.Web.UI.Page.GetPostBackEventReference(System.Web.UI.Control)" />
  9614. call to allow hyperlink post-back processing on the server.</para>
  9615. </summary>
  9616. <param name="control">The server control to process the postback.</param>
  9617. <param name=" argument">The parameter passed to the server control.</param>
  9618. <returns>
  9619. <para> The name of the client-side function and the
  9620. <see langword="ID" /> property of the server control
  9621. that processed the function and argument passed to the control. </para>
  9622. </returns>
  9623. </member>
  9624. <member name="M:System.Web.UI.Page.RegisterArrayDeclaration(System.String,System.String)">
  9625. <summary>
  9626. <para> Declares a value that is declared as an
  9627. ECMAScript array declaration when the page renders.</para>
  9628. </summary>
  9629. <param name="arrayName">The name of the array in which to declare the value.</param>
  9630. <param name=" arrayValue">The value to place in the array.</param>
  9631. </member>
  9632. <member name="M:System.Web.UI.Page.RegisterHiddenField(System.String,System.String)">
  9633. <summary>
  9634. <para> Allows server controls to automatically register a
  9635. hidden field on the form. The field will be sent to the <see langword="Page" />
  9636. when the <see cref="T:System.Web.UI.HtmlControls.HtmlForm" />
  9637. server control is rendered.
  9638. </para>
  9639. </summary>
  9640. <param name="hiddenFieldName">The unique name of the hidden field to be rendered. </param>
  9641. <param name=" hiddenFieldInitialValue">The value to be emitted in the hidden form. </param>
  9642. </member>
  9643. <member name="M:System.Web.UI.Page.IsStartupScriptRegistered(System.String)">
  9644. <summary>
  9645. <para>Determines if the client startup script is registered
  9646. with the <see cref="T:System.Web.UI.Page" />
  9647. object.</para>
  9648. </summary>
  9649. <param name="key">The string key of the startup script to search for.</param>
  9650. <returns>
  9651. <para>
  9652. <see langword="true" /> if the startup script is
  9653. registered; otherwise, <see langword="false" /> .</para>
  9654. </returns>
  9655. </member>
  9656. <member name="M:System.Web.UI.Page.IsClientScriptBlockRegistered(System.String)">
  9657. <summary>
  9658. <para>Determines if the client script block is registered with the page.</para>
  9659. </summary>
  9660. <param name="key">The string key of the client script to search for.</param>
  9661. <returns>
  9662. <para>Returns <see langword="true" /> if the script block is registered; otherwise,
  9663. <see langword="false" />.</para>
  9664. </returns>
  9665. </member>
  9666. <member name="M:System.Web.UI.Page.RegisterClientScriptBlock(System.String,System.String)">
  9667. <summary>
  9668. <para> Allows ASP.NET server controls to emit client-side script
  9669. blocks in the <see cref="T:System.Web.UI.Page" />
  9670. .</para>
  9671. </summary>
  9672. <param name=" key">Unique key that identifies a script block.</param>
  9673. <param name="script">Content of script that is sent to the client.</param>
  9674. </member>
  9675. <member name="M:System.Web.UI.Page.RegisterStartupScript(System.String,System.String)">
  9676. <summary>
  9677. <para> Allows ASP.NET server controls to emit client-side script
  9678. blocks in the <see cref="T:System.Web.UI.Page" />
  9679. .
  9680. </para>
  9681. </summary>
  9682. <param name=" key">Unique key that identifies a script block. </param>
  9683. <param name="script">Content of script that will be sent to the client. </param>
  9684. </member>
  9685. <member name="M:System.Web.UI.Page.RegisterOnSubmitStatement(System.String,System.String)">
  9686. <summary>
  9687. <para> Allows a page to access the client
  9688. <see langword="OnSubmit" /> event.
  9689. The script should be a function call to client code registered elsewhere.</para>
  9690. </summary>
  9691. <param name=" key">Unique key that identifies a script block.</param>
  9692. <param name="script">The client-side script to be sent to the client.</param>
  9693. </member>
  9694. <member name="M:System.Web.UI.Page.RegisterRequiresPostBack(System.Web.UI.Control)">
  9695. <summary>
  9696. <para>Registers a control as one that requires post-back handling.</para>
  9697. </summary>
  9698. <param name="control">The control to be registered.</param>
  9699. </member>
  9700. <member name="M:System.Web.UI.Page.RaisePostBackEvent(System.Web.UI.IPostBackEventHandler,System.String)">
  9701. <summary>
  9702. <para>Notifies the server control that caused the postback that it should handle an incoming
  9703. post back event.</para>
  9704. </summary>
  9705. <param name="sourceControl">The ASP.NET server control that caused the postback. This control must implement the <see langword="IPostBackEventHandler" /> interface.</param>
  9706. <param name=" eventArgument">The post-back argument.</param>
  9707. </member>
  9708. <member name="M:System.Web.UI.Page.RegisterRequiresRaiseEvent(System.Web.UI.IPostBackEventHandler)">
  9709. <summary>
  9710. <para>Registers an ASP.NET server control as requiring an
  9711. event to be raised when the control is processed on the
  9712. <see langword="Page" />
  9713. .</para>
  9714. </summary>
  9715. <param name="control">The control to register.</param>
  9716. </member>
  9717. <member name="M:System.Web.UI.Page.MapPath(System.String)">
  9718. <summary>
  9719. <para>Retrieves the physical path that a virtual path, either absolute or relative, maps to.</para>
  9720. </summary>
  9721. <param name="virtualPath">A <see cref="T:System.String" /> that represents the virtual path.</param>
  9722. <returns>
  9723. <para>The physical path associated with the virtual path.</para>
  9724. </returns>
  9725. </member>
  9726. <member name="M:System.Web.UI.Page.RegisterViewStateHandler">
  9727. <summary>
  9728. <para> Causes page view state to be persisted, if called.</para>
  9729. </summary>
  9730. </member>
  9731. <member name="M:System.Web.UI.Page.SavePageStateToPersistenceMedium(System.Object)">
  9732. <summary>
  9733. <para> Saves any view-state information for the page.</para>
  9734. </summary>
  9735. <param name="viewState">An <see cref="T:System.Object" /> in which to store the view-state information.</param>
  9736. </member>
  9737. <member name="M:System.Web.UI.Page.Validate">
  9738. <summary>
  9739. <para> Instructs any validation controls included on
  9740. the page to validate their assigned information.</para>
  9741. </summary>
  9742. </member>
  9743. <member name="M:System.Web.UI.Page.VerifyRenderingInServerForm(System.Web.UI.Control)">
  9744. <summary>
  9745. <para>Confirms that an <see cref="T:System.Web.UI.HtmlControls.HtmlForm" /> control is rendered for
  9746. the specified ASP.NET server control at run time.</para>
  9747. </summary>
  9748. <param name="control">The ASP.NET server control that is required to be in the <see langword="HtmlForm" /> control.</param>
  9749. </member>
  9750. <member name="P:System.Web.UI.Page.Context">
  9751. <summary>
  9752. <para>Gets the <see cref="T:System.Web.HttpContext" />
  9753. object associated with the page.</para>
  9754. </summary>
  9755. </member>
  9756. <member name="P:System.Web.UI.Page.Application">
  9757. <summary>
  9758. <para>Gets the <see langword="Application" /> object for the current Web request.</para>
  9759. </summary>
  9760. </member>
  9761. <member name="P:System.Web.UI.Page.ClientTarget">
  9762. <summary>
  9763. <para> Gets or sets a value that allows you to override automatic
  9764. detection of browser capabilities and
  9765. to specify how a page renders
  9766. for particular browser clients.</para>
  9767. </summary>
  9768. </member>
  9769. <member name="P:System.Web.UI.Page.ErrorPage">
  9770. <summary>
  9771. <para> Gets or sets the error page to which the requesting browser is
  9772. redirected in the event of an unhandled page exception.</para>
  9773. </summary>
  9774. </member>
  9775. <member name="P:System.Web.UI.Page.Trace">
  9776. <summary>
  9777. <para>Gets the <see cref="T:System.Web.TraceContext" /> object for the current Web request.</para>
  9778. </summary>
  9779. </member>
  9780. <member name="P:System.Web.UI.Page.Request">
  9781. <summary>
  9782. <para>Gets the <see cref="T:System.Web.HttpRequest" />
  9783. object for the requested page.</para>
  9784. </summary>
  9785. </member>
  9786. <member name="P:System.Web.UI.Page.Response">
  9787. <summary>
  9788. <para>Gets the <see cref="T:System.Web.HttpResponse" /><see langword=" " />object associated with the <see cref="T:System.Web.UI.Page" />
  9789. . This object allows you to send HTTP
  9790. response data to a client and contains information about that response.</para>
  9791. </summary>
  9792. </member>
  9793. <member name="P:System.Web.UI.Page.Server">
  9794. <summary>
  9795. <para>Gets the <see langword="Server" /> object, which is an
  9796. instance of the <see cref="T:System.Web.HttpServerUtility" /> class.</para>
  9797. </summary>
  9798. </member>
  9799. <member name="P:System.Web.UI.Page.Cache">
  9800. <summary>
  9801. <para>Gets the <see cref="T:System.Web.Caching.Cache" /> object associated with the
  9802. application in which the page resides.</para>
  9803. </summary>
  9804. </member>
  9805. <member name="P:System.Web.UI.Page.Session">
  9806. <summary>
  9807. <para>Gets the current <see langword="Session" />
  9808. object provided by ASP.NET.</para>
  9809. </summary>
  9810. </member>
  9811. <member name="P:System.Web.UI.Page.User">
  9812. <summary>
  9813. <para>Gets information about the user making the page request. </para>
  9814. </summary>
  9815. </member>
  9816. <member name="P:System.Web.UI.Page.IsPostBack">
  9817. <summary>
  9818. <para>Gets a value indicating whether the page is being loaded in response to a
  9819. client postback, or if it is being loaded and accessed for the first time.</para>
  9820. </summary>
  9821. </member>
  9822. <member name="P:System.Web.UI.Page.EnableViewState">
  9823. <summary>
  9824. <para>Gets or sets a value indicating whether the page
  9825. maintains its view state, and the view state of any server controls it contains,
  9826. when the current page request ends.</para>
  9827. </summary>
  9828. </member>
  9829. <member name="P:System.Web.UI.Page.ID">
  9830. <summary>
  9831. <para>Gets or sets an identifier for a particular instance of
  9832. the <see cref="T:System.Web.UI.Page" /> class.</para>
  9833. </summary>
  9834. </member>
  9835. <member name="P:System.Web.UI.Page.Visible">
  9836. <summary>
  9837. <para> Gets or sets a value indicating whether
  9838. the <see cref="T:System.Web.UI.Page" />
  9839. object is rendered.</para>
  9840. </summary>
  9841. </member>
  9842. <member name="P:System.Web.UI.Page.IsValid">
  9843. <summary>
  9844. <para> Gets a value indicating whether page validation succeeded.</para>
  9845. </summary>
  9846. </member>
  9847. <member name="P:System.Web.UI.Page.Validators">
  9848. <summary>
  9849. <para>Gets a collection of all validation controls contained on the requested page.</para>
  9850. </summary>
  9851. </member>
  9852. <member name="P:System.Web.UI.Page.SmartNavigation">
  9853. <summary>
  9854. <para>Gets or sets a value indicating whether smart navigation is enabled.</para>
  9855. </summary>
  9856. </member>
  9857. <member name="T:System.Web.UI.OutputCacheLocation">
  9858. <summary>
  9859. <para> Specifies the valid values for the location of the output
  9860. cache.</para>
  9861. </summary>
  9862. </member>
  9863. <member name="F:System.Web.UI.OutputCacheLocation.Any">
  9864. <summary>
  9865. <para>The output cache can be located on the browser client (where the request originated), on a proxy server (or any other
  9866. server) participating in the request, or on the server where the request was
  9867. processed.</para>
  9868. </summary>
  9869. </member>
  9870. <member name="F:System.Web.UI.OutputCacheLocation.Client">
  9871. <summary>
  9872. <para>The output cache is located on the browser client where the request originated. </para>
  9873. </summary>
  9874. </member>
  9875. <member name="F:System.Web.UI.OutputCacheLocation.Downstream">
  9876. <summary>
  9877. <para>The output cache can be stored in any HTTP 1.1
  9878. cache-capable devices other than the origin server. This includes proxy servers and the client that
  9879. made the request.</para>
  9880. </summary>
  9881. </member>
  9882. <member name="F:System.Web.UI.OutputCacheLocation.Server">
  9883. <summary>
  9884. <para>The output cache is located on the Web server where the request was
  9885. processed.</para>
  9886. </summary>
  9887. </member>
  9888. <member name="F:System.Web.UI.OutputCacheLocation.None">
  9889. <summary>
  9890. <para> The output cache is disabled for the requested page.</para>
  9891. </summary>
  9892. </member>
  9893. <member name="M:System.Web.UI.PageParser.GetCompiledPageInstance(System.String,System.String,System.Web.HttpContext)">
  9894. <summary>
  9895. <para>Compiles a requested .aspx file into a <see cref="T:System.Web.UI.Page" /> object. </para>
  9896. </summary>
  9897. <param name="virtualPath">The virtual path to the requested file.</param>
  9898. <param name=" inputFile">The name of the requested file.</param>
  9899. <param name=" context">The <see cref="T:System.Web.HttpContext" /> object that contains information about the current Web request.</param>
  9900. <returns>
  9901. <para>Returns the compiled instance of the requested <see cref="T:System.Web.UI.Page" />.</para>
  9902. </returns>
  9903. </member>
  9904. <member name="M:System.Web.UI.PageParser.CompileIntoType">
  9905. <summary>
  9906. <para>Compiles the requested page into the specified type.</para>
  9907. </summary>
  9908. <returns>
  9909. <para>Returns the compiled page.</para>
  9910. </returns>
  9911. </member>
  9912. <member name="T:System.Web.UI.PartialCachingAttribute">
  9913. <summary>
  9914. <para>Defines the metadata attribute that Web Forms user controls use to
  9915. indicate how their output is cached. This class cannot be inherited.</para>
  9916. </summary>
  9917. </member>
  9918. <member name="M:System.Web.UI.PartialCachingAttribute.#ctor(System.Int32)">
  9919. <summary>
  9920. <para>Initializes a new instance of the <see cref="T:System.Web.UI.PartialCachingAttribute" /> class with the
  9921. specified duration assigned to the user control to be cached.</para>
  9922. </summary>
  9923. <param name="duration">An integer that represents the number of seconds a user control is to remain in the output cache.</param>
  9924. </member>
  9925. <member name="M:System.Web.UI.PartialCachingAttribute.#ctor(System.Int32,System.String,System.String,System.String)">
  9926. <summary>
  9927. <para>Initializes a new instance of the <see cref="T:System.Web.UI.PartialCachingAttribute" /> class with
  9928. the <paramref name="duration" />
  9929. , <paramref name="varyByParams," /><paramref name="varyByControls" />, and <paramref name="varyByCustom" /> parameter values specified
  9930. for the user control to be cached.</para>
  9931. </summary>
  9932. <param name="duration"> The time, in seconds, that the user control is cached.</param>
  9933. <param name=" varyByParams">A semicolon-separated list of strings used to vary the output cache. By default, these strings correspond to a query string value sent with <see langword="GET" /> method attributes, or a parameter sent using the <see langword="POST" /> method. When this attribute is set to multiple parameters, the output cache contains a different version of the requested document for each specified parameter. Possible values include <see langword="none" />, <see langword="*" />, and any valid query string or <see langword="POST" /> parameter name.</param>
  9934. <param name=" varyByControls">A semicolon-separated list of strings used to vary the output cache. These strings represent fully qualified names of properties on a user control. When this attribute is used for a user control, the user control output is varied to the cache for each specified user control property. </param>
  9935. <param name=" varyByCustom">Any text that represents custom output caching requirements. If this attribute is given a value of <see langword="browser" />, the cache is varied by browser name and major version information. If a custom string is entered, you must override the <see cref="M:System.Web.HttpApplication.GetVaryByCustomString(System.Web.HttpContext,System.String)" qualify="true" /> method in your application's Global.asax file.</param>
  9936. </member>
  9937. <member name="P:System.Web.UI.PartialCachingAttribute.Duration">
  9938. <summary>
  9939. <para>Gets the amount of time that cached items are to remain in
  9940. the output cache.</para>
  9941. </summary>
  9942. </member>
  9943. <member name="P:System.Web.UI.PartialCachingAttribute.VaryByParams">
  9944. <summary>
  9945. <para>Gets a list of query string or form POST paramaters that the
  9946. output cache will use to vary the user control.</para>
  9947. </summary>
  9948. </member>
  9949. <member name="P:System.Web.UI.PartialCachingAttribute.VaryByControls">
  9950. <summary>
  9951. <para> Gets a list of user control properties
  9952. that the output cache uses to vary the user control.</para>
  9953. </summary>
  9954. </member>
  9955. <member name="P:System.Web.UI.PartialCachingAttribute.VaryByCustom">
  9956. <summary>
  9957. <para> Gets a list of custom strings that the output cache wil
  9958. use to vary the user control. .</para>
  9959. </summary>
  9960. </member>
  9961. <member name="T:System.Web.UI.BasePartialCachingControl">
  9962. <summary>
  9963. <para> Provides the base functionality for
  9964. the <see cref="T:System.Web.UI.StaticPartialCachingControl" /> and the <see cref="T:System.Web.UI.PartialCachingControl" />
  9965. classes.</para>
  9966. </summary>
  9967. </member>
  9968. <member name="P:System.Web.UI.BasePartialCachingControl.Dependency">
  9969. <summary>
  9970. <para>Gets or sets an instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class associated with the cached user control output.</para>
  9971. </summary>
  9972. </member>
  9973. <member name="T:System.Web.UI.StaticPartialCachingControl">
  9974. <summary>
  9975. <para>Represents an instance of the <see cref="T:System.Web.UI.UserControl" /> class when it has been specifed for output
  9976. caching and included declaratively in
  9977. a page or another user control.</para>
  9978. </summary>
  9979. </member>
  9980. <member name="T:System.Web.UI.PartialCachingControl">
  9981. <summary>
  9982. <para> Created when a user control
  9983. (.ascx file) is specified for output caching, using either the <see topic="cpconoutputcache" /> directive or
  9984. the <see cref="T:System.Web.UI.PartialCachingAttribute" /> , and is added to
  9985. a page programmatically.</para>
  9986. </summary>
  9987. </member>
  9988. <member name="P:System.Web.UI.PartialCachingControl.CachedControl">
  9989. <summary>
  9990. <para>Gets a reference to the user control that is to be cached.</para>
  9991. </summary>
  9992. </member>
  9993. <member name="T:System.Web.UI.ParseChildrenAttribute">
  9994. <summary>
  9995. <para>Defines a metadata attribute that you can use when developing ASP.NET server controls. Use it to indicate
  9996. whether XML elements nested within the server control's tags, when the control is used declaratively on a page, should be treated
  9997. as properties or as child controls. This class cannot be inherited.</para>
  9998. </summary>
  9999. </member>
  10000. <member name="F:System.Web.UI.ParseChildrenAttribute.Default">
  10001. <summary>
  10002. <para>Defines the default value for the <see cref="T:System.Web.UI.ParseChildrenAttribute" /> class. This field is read-only.</para>
  10003. </summary>
  10004. </member>
  10005. <member name="M:System.Web.UI.ParseChildrenAttribute.#ctor">
  10006. <summary>
  10007. <para>Initializes a new instance of the <see cref="T:System.Web.UI.ParseChildrenAttribute" />
  10008. class.</para>
  10009. </summary>
  10010. </member>
  10011. <member name="M:System.Web.UI.ParseChildrenAttribute.#ctor(System.Boolean)">
  10012. <summary>
  10013. <para>Initializes a new instance of the <see cref="T:System.Web.UI.ParseChildrenAttribute" /> class using the <see cref="P:System.Web.UI.ParseChildrenAttribute.ChildrenAsProperties" />
  10014. property to determine whether child XML elements of
  10015. a server control are parsed as though they were properties of the control.</para>
  10016. </summary>
  10017. <param name="childrenAsProperties">
  10018. <see langword="true" /> if the child XML elements are parsed as properties of the server control; otherwise, <see langword="false" />.</param>
  10019. </member>
  10020. <member name="M:System.Web.UI.ParseChildrenAttribute.#ctor(System.Boolean,System.String)">
  10021. <summary>
  10022. <para>Initializes a new instance of the <see cref="T:System.Web.UI.ParseChildrenAttribute" /> class using the
  10023. <paramref name="childrenAsProperties" />
  10024. and <paramref name="defaultProperty" />
  10025. parameters.</para>
  10026. </summary>
  10027. <param name="childrenAsProperties">
  10028. <see langword="true" /> if the child XML elements are parsed as properties of the server control; otherwise, <see langword="false" />.</param>
  10029. <param name=" defaultProperty">A string that defines a collection property of the server control into which child controls are parsed by default.</param>
  10030. </member>
  10031. <member name="P:System.Web.UI.ParseChildrenAttribute.ChildrenAsProperties">
  10032. <summary>
  10033. <para> Gets or sets a value indicating whether child XML elements are parsed as though they are properties
  10034. of a server control.</para>
  10035. </summary>
  10036. </member>
  10037. <member name="P:System.Web.UI.ParseChildrenAttribute.DefaultProperty">
  10038. <summary>
  10039. <para> Gets or sets the default property for
  10040. the parent server control into which child elements are parsed.</para>
  10041. </summary>
  10042. </member>
  10043. <member name="T:System.Web.UI.PersistChildrenAttribute">
  10044. <summary>
  10045. <para>Defines a metadata attribute used by ASP.NET server controls. The attribute indicates
  10046. whether, at design time, the child controls of an ASP.NET server control
  10047. should be persisted as nested inner controls. This class cannot be
  10048. inherited.</para>
  10049. </summary>
  10050. </member>
  10051. <member name="F:System.Web.UI.PersistChildrenAttribute.Yes">
  10052. <summary>
  10053. <para> Indicates that the child controls of an ASP.NET server control
  10054. should persist as nested controls at design-time. This field is read-only.</para>
  10055. </summary>
  10056. </member>
  10057. <member name="F:System.Web.UI.PersistChildrenAttribute.No">
  10058. <summary>
  10059. <para> Indicates that the child controls of an ASP.NET server control should
  10060. not persist as nested controls at design-time. This field is read-only.</para>
  10061. </summary>
  10062. </member>
  10063. <member name="F:System.Web.UI.PersistChildrenAttribute.Default">
  10064. <summary>
  10065. <para> Indicates the
  10066. default attribute state. This field is read-only.</para>
  10067. </summary>
  10068. </member>
  10069. <member name="M:System.Web.UI.PersistChildrenAttribute.#ctor(System.Boolean)">
  10070. <summary>
  10071. <para>Initializes a new instance of the <see cref="T:System.Web.UI.PersistChildrenAttribute" /> class.</para>
  10072. </summary>
  10073. <param name="persist">
  10074. <see langword="true" /> to persist the child controls as server control tags; otherwise, <see langword="false" />.</param>
  10075. </member>
  10076. <member name="P:System.Web.UI.PersistChildrenAttribute.Persist">
  10077. <summary>
  10078. <para> Gets a value that indicates whether
  10079. the child controls of an ASP.NET server control are persisted as nested inner
  10080. controls at design-time.</para>
  10081. </summary>
  10082. </member>
  10083. <member name="T:System.Web.UI.PersistenceMode">
  10084. <summary>
  10085. <para> Specifies how an ASP.NET server control property or
  10086. event is persisted declaratively in an .aspx or .ascx file.
  10087. </para>
  10088. </summary>
  10089. </member>
  10090. <member name="F:System.Web.UI.PersistenceMode.Attribute">
  10091. <summary>
  10092. <para> Specifies that the property or event persists as an attribute.</para>
  10093. </summary>
  10094. </member>
  10095. <member name="F:System.Web.UI.PersistenceMode.InnerProperty">
  10096. <summary>
  10097. <para> Specifies that the property persists in the ASP.NET
  10098. server control as a nested tag. This is commonly used for complex objects; those that have persistable properties of their own.</para>
  10099. </summary>
  10100. </member>
  10101. <member name="F:System.Web.UI.PersistenceMode.InnerDefaultProperty">
  10102. <summary>
  10103. <para> Specifies that the property
  10104. persists in the ASP.NET server control as a inner text. Also indicates that this property is defined as the element's default property. Only one property can be designated the default property.</para>
  10105. </summary>
  10106. </member>
  10107. <member name="F:System.Web.UI.PersistenceMode.EncodedInnerDefaultProperty">
  10108. <summary>
  10109. <para> Specifies that the property persists as the only inner text of the ASP.NET server control. The property value is HTML encoded. Only a string can be given this designation.</para>
  10110. </summary>
  10111. </member>
  10112. <member name="T:System.Web.UI.PersistenceModeAttribute">
  10113. <summary>
  10114. <para> Defines the metadata attribute that specifies how an ASP.NET server control property or event is persisted to an ASP.NET page. This class cannot be inherited.</para>
  10115. </summary>
  10116. </member>
  10117. <member name="F:System.Web.UI.PersistenceModeAttribute.Attribute">
  10118. <summary>
  10119. <para> Specifies that the property or event persists in the opening tag of the server control as an attribute. This field is read-only.</para>
  10120. </summary>
  10121. </member>
  10122. <member name="F:System.Web.UI.PersistenceModeAttribute.InnerProperty">
  10123. <summary>
  10124. <para> Specifies that the property persists as a nested tag within the opening and closing tags of the server control. This field is read-only.</para>
  10125. </summary>
  10126. </member>
  10127. <member name="F:System.Web.UI.PersistenceModeAttribute.InnerDefaultProperty">
  10128. <summary>
  10129. <para> Specifies that a property persists as the only inner content of the ASP.NET server control. This field is read-only.</para>
  10130. </summary>
  10131. </member>
  10132. <member name="F:System.Web.UI.PersistenceModeAttribute.EncodedInnerDefaultProperty">
  10133. <summary>
  10134. <para>Specifies that a property is HTML-encoded and persists
  10135. as the only inner content of the ASP.NET server control. This field is read-only.</para>
  10136. </summary>
  10137. </member>
  10138. <member name="F:System.Web.UI.PersistenceModeAttribute.Default">
  10139. <summary>
  10140. <para>Specifies the default type for the <see cref="T:System.Web.UI.PersistenceModeAttribute" /> class. The default is
  10141. <see langword="PersistenceMode.Attribute" /> . This field is read-only.</para>
  10142. </summary>
  10143. </member>
  10144. <member name="P:System.Web.UI.PersistenceModeAttribute.Mode">
  10145. <summary>
  10146. <para>Gets the current value of the <see cref="T:System.Web.UI.PersistenceMode" /> enumeration.</para>
  10147. </summary>
  10148. </member>
  10149. <member name="M:System.Web.UI.PropertyConverter.EnumFromString(System.Type,System.String)">
  10150. <summary>
  10151. </summary>
  10152. </member>
  10153. <member name="M:System.Web.UI.PropertyConverter.EnumToString(System.Type,System.Object)">
  10154. <summary>
  10155. </summary>
  10156. </member>
  10157. <member name="M:System.Web.UI.PropertyConverter.ObjectFromString(System.Type,System.Reflection.MemberInfo,System.String)">
  10158. <summary>
  10159. </summary>
  10160. </member>
  10161. <member name="M:System.Web.UI.TemplateBuilder.Init(System.Web.UI.TemplateParser,System.Web.UI.ControlBuilder,System.Type,System.String,System.String,System.Collections.IDictionary)">
  10162. <summary>
  10163. <para>[To be supplied.]</para>
  10164. </summary>
  10165. </member>
  10166. <member name="M:System.Web.UI.TemplateBuilder.NeedsTagInnerText">
  10167. <summary>
  10168. <para>[To be supplied.]</para>
  10169. </summary>
  10170. </member>
  10171. <member name="M:System.Web.UI.TemplateBuilder.SetTagInnerText(System.String)">
  10172. <summary>
  10173. <para>[To be supplied.]</para>
  10174. </summary>
  10175. </member>
  10176. <member name="M:System.Web.UI.TemplateBuilder.InstantiateIn(System.Web.UI.Control)">
  10177. <summary>
  10178. <para>[To be supplied.]</para>
  10179. </summary>
  10180. </member>
  10181. <member name="P:System.Web.UI.TemplateBuilder.Text">
  10182. <summary>
  10183. <para>[To be supplied.]</para>
  10184. </summary>
  10185. </member>
  10186. <member name="M:System.Web.UI.RootBuilder.#ctor(System.Web.UI.TemplateParser)">
  10187. <summary>
  10188. <para>[To be supplied.]</para>
  10189. </summary>
  10190. </member>
  10191. <member name="M:System.Web.UI.RootBuilder.GetChildControlType(System.String,System.Collections.IDictionary)">
  10192. <summary>
  10193. <para>[To be supplied.]</para>
  10194. </summary>
  10195. </member>
  10196. <member name="M:System.Web.UI.SimpleWebHandlerParser.#ctor(System.Web.HttpContext,System.String,System.String)">
  10197. <summary>
  10198. <para>[To be supplied.]</para>
  10199. </summary>
  10200. </member>
  10201. <member name="M:System.Web.UI.SimpleWebHandlerParser.GetCompiledTypeFromCache">
  10202. <summary>
  10203. <para>Compiles the Web handler file into the
  10204. object <see cref="T:System.Type" /> stored in the cache. If the type for the object is not
  10205. in the cache, this method places it there.</para>
  10206. </summary>
  10207. <returns>
  10208. <para>The Type object assigned to the currently requested file.</para>
  10209. </returns>
  10210. </member>
  10211. <member name="P:System.Web.UI.SimpleWebHandlerParser.DefaultDirectiveName">
  10212. <summary>
  10213. <para>When overridden in a derived class, this property gets the default directive
  10214. name that you assign to the files processed by your parser class.</para>
  10215. </summary>
  10216. </member>
  10217. <member name="P:System.Web.UI.WebHandlerParser.DefaultDirectiveName">
  10218. <summary>
  10219. <para>Gets the default directive name for all Web page requests.</para>
  10220. </summary>
  10221. </member>
  10222. <member name="M:System.Web.UI.WebServiceParser.GetCompiledType(System.String,System.Web.HttpContext)">
  10223. <summary>
  10224. <para>Compiles the requested file using information obtained from the <see cref="T:System.Web.HttpContext" /> object
  10225. for the current request.</para>
  10226. </summary>
  10227. <param name="inputFile">The file to be compiled.</param>
  10228. <param name=" context">The <see cref="T:System.Web.HttpContext" /> object for the current request.</param>
  10229. <returns>
  10230. <para>Returns a <see cref="T:System.Type" /> object as specified by the <see cref="T:System.Web.HttpContext" />
  10231. object.</para>
  10232. </returns>
  10233. </member>
  10234. <member name="P:System.Web.UI.WebServiceParser.DefaultDirectiveName">
  10235. <summary>
  10236. <para>Gets the default directive name for all Web service requests.</para>
  10237. </summary>
  10238. </member>
  10239. <member name="T:System.Web.UI.StateBag">
  10240. <summary>
  10241. <para> Manages the view state of ASP.NET server controls,
  10242. including pages. This class cannot
  10243. be inherited. </para>
  10244. </summary>
  10245. </member>
  10246. <member name="M:System.Web.UI.StateBag.#ctor">
  10247. <summary>
  10248. <para>Initializes a new instance of the <see cref="T:System.Web.UI.StateBag" /> class. This is the default constructor for this
  10249. class.</para>
  10250. </summary>
  10251. </member>
  10252. <member name="M:System.Web.UI.StateBag.#ctor(System.Boolean)">
  10253. <summary>
  10254. <para>Initializes a new instance of the <see cref="T:System.Web.UI.StateBag" /> class that allows stored state
  10255. values to be case-insensitive.</para>
  10256. </summary>
  10257. <param name="ignoreCase">
  10258. <see langword="true" /> to ignore case; otherwise, <see langword="false" />.</param>
  10259. </member>
  10260. <member name="M:System.Web.UI.StateBag.Add(System.String,System.Object)">
  10261. <summary>
  10262. <para>Adds a new <see cref="T:System.Web.UI.StateItem" /> object to the <see cref="T:System.Web.UI.StateBag" />
  10263. object. If the item already exists in the <see langword="StateBag" />, it updates the
  10264. value of the item.</para>
  10265. </summary>
  10266. <param name="key">The attribute name for the <see langword="StateItem" /> object.</param>
  10267. <param name=" value">The value of the item to add to the <see langword="StateBag" /> .</param>
  10268. <returns>
  10269. <para>Returns a <see cref="T:System.Web.UI.StateItem" /> object that represents the object added to
  10270. view state.</para>
  10271. </returns>
  10272. </member>
  10273. <member name="M:System.Web.UI.StateBag.Clear">
  10274. <summary>
  10275. <para>Removes all items from the current <see cref="T:System.Web.UI.StateBag" /> object.</para>
  10276. </summary>
  10277. </member>
  10278. <member name="M:System.Web.UI.StateBag.GetEnumerator">
  10279. <summary>
  10280. <para> Returns an enumerator that iterates over all the
  10281. key/value pairs of the <see cref="T:System.Web.UI.StateItem" /> objects stored in
  10282. the <see langword="StateBag" />.</para>
  10283. </summary>
  10284. <returns>
  10285. <para>The enumerator to iterate through the state bag.</para>
  10286. </returns>
  10287. </member>
  10288. <member name="M:System.Web.UI.StateBag.IsItemDirty(System.String)">
  10289. <summary>
  10290. <para>Checks a <see cref="T:System.Web.UI.StateItem" /> object stored in the <see cref="T:System.Web.UI.StateBag" /> to evaluate if it has been modified since the call to
  10291. <see cref="M:System.Web.UI.Control.TrackViewState" qualify="true" />
  10292. .</para>
  10293. </summary>
  10294. <param name="key">The key of the item to check.</param>
  10295. <returns>
  10296. <para>
  10297. <see langword="true" /> if the item has been modified; otherwise,
  10298. <see langword="false" />.</para>
  10299. </returns>
  10300. </member>
  10301. <member name="M:System.Web.UI.StateBag.Remove(System.String)">
  10302. <summary>
  10303. <para>Removes the specified key/value pair from the <see cref="T:System.Web.UI.StateBag" /> object.</para>
  10304. </summary>
  10305. <param name="key">The item to remove.</param>
  10306. </member>
  10307. <member name="P:System.Web.UI.StateBag.Count">
  10308. <summary>
  10309. <para>Gets the number of <see cref="T:System.Web.UI.StateItem" /> objects in the <see cref="T:System.Web.UI.StateBag" />
  10310. object.</para>
  10311. </summary>
  10312. </member>
  10313. <member name="P:System.Web.UI.StateBag.Keys">
  10314. <summary>
  10315. <para>Gets a collection of keys representing the items in the <see cref="T:System.Web.UI.StateBag" />
  10316. object.</para>
  10317. </summary>
  10318. </member>
  10319. <member name="P:System.Web.UI.StateBag.Values">
  10320. <summary>
  10321. <para> Gets a collection of the view-state values stored in the <see cref="T:System.Web.UI.StateBag" />
  10322. object.</para>
  10323. </summary>
  10324. </member>
  10325. <member name="P:System.Web.UI.StateBag.Item(System.String)">
  10326. <summary>
  10327. <para> Gets or sets the value of an item stored in
  10328. the <see cref="T:System.Web.UI.StateBag" />
  10329. object.</para>
  10330. </summary>
  10331. <param name="key">The key for the item.</param>
  10332. </member>
  10333. <member name="T:System.Web.UI.StateItem">
  10334. <summary>
  10335. <para>Represents an item that is saved in the <see cref="T:System.Web.UI.StateBag" /> class when view state information is persisted between Web
  10336. requests. This class cannot be inherited.</para>
  10337. </summary>
  10338. </member>
  10339. <member name="P:System.Web.UI.StateItem.IsDirty">
  10340. <summary>
  10341. <para>Gets or sets a value indicating whether the <see cref="T:System.Web.UI.StateItem" /> object has been modified.</para>
  10342. </summary>
  10343. </member>
  10344. <member name="P:System.Web.UI.StateItem.Value">
  10345. <summary>
  10346. <para>Gets or sets the value of the <see cref="T:System.Web.UI.StateItem" /> object that is stored in the <see cref="T:System.Web.UI.StateBag" />
  10347. object.</para>
  10348. </summary>
  10349. </member>
  10350. <member name="T:System.Web.UI.TemplateContainerAttribute">
  10351. <summary>
  10352. <para> Declares the type of the <see cref="T:System.Web.UI.INamingContainer" /> that will contain the
  10353. template once it is created.</para>
  10354. </summary>
  10355. </member>
  10356. <member name="M:System.Web.UI.TemplateContainerAttribute.#ctor(System.Type)">
  10357. <summary>
  10358. <para>Initializes a new instance of the <see cref="T:System.Web.UI.TemplateContainerAttribute" />
  10359. class.</para>
  10360. </summary>
  10361. <param name="containerType">The <see cref="T:System.Type" />for the container control.</param>
  10362. </member>
  10363. <member name="P:System.Web.UI.TemplateContainerAttribute.ContainerType">
  10364. <summary>
  10365. <para> Gets the container control
  10366. type.</para>
  10367. </summary>
  10368. </member>
  10369. <member name="M:System.Web.UI.CompiledTemplateBuilder.InstantiateIn(System.Web.UI.Control)">
  10370. <summary>
  10371. <para>[To be supplied.]</para>
  10372. </summary>
  10373. </member>
  10374. <member name="T:System.Web.UI.ToolboxDataAttribute">
  10375. <summary>
  10376. <para>Specifies the default tag generated for a custom control
  10377. when it is dragged from a toolbox in a tool such as Visual Studio.</para>
  10378. </summary>
  10379. </member>
  10380. <member name="F:System.Web.UI.ToolboxDataAttribute.Default">
  10381. <summary>
  10382. <para> Represents the default <see cref="T:System.Web.UI.ToolboxDataAttribute" /> value for a custom control.</para>
  10383. </summary>
  10384. </member>
  10385. <member name="M:System.Web.UI.ToolboxDataAttribute.GetHashCode">
  10386. <summary>
  10387. <para> Returns the hash code of the custom control.</para>
  10388. </summary>
  10389. <returns>
  10390. <para> A 32-bit signed <see langword="integer" /> representing the
  10391. hash code.</para>
  10392. </returns>
  10393. </member>
  10394. <member name="P:System.Web.UI.ToolboxDataAttribute.Data">
  10395. <summary>
  10396. <para>Gets the string representing the initial values of the
  10397. control’s property, which is used in a visual designer for instantiating the
  10398. control. </para>
  10399. </summary>
  10400. </member>
  10401. <member name="T:System.Web.TraceContext">
  10402. <summary>
  10403. <para>Captures and presents execution details about a Web request. This class
  10404. cannot be inherited.</para>
  10405. </summary>
  10406. </member>
  10407. <member name="M:System.Web.TraceContext.#ctor(System.Web.HttpContext)">
  10408. <summary>
  10409. <para>Initializes a new instance of the <see cref="T:System.Web.TraceContext" /> class.</para>
  10410. </summary>
  10411. <param name="context">An <see cref="T:System.Web.HttpContext" /> that contains information about the current Web request.</param>
  10412. </member>
  10413. <member name="M:System.Web.TraceContext.Write(System.String)">
  10414. <summary>
  10415. <para> Writes a trace message to the trace log.</para>
  10416. </summary>
  10417. <param name="message">The trace message to write to the log.</param>
  10418. </member>
  10419. <member name="M:System.Web.TraceContext.Write(System.String,System.String)">
  10420. <summary>
  10421. <para> Writes trace information to the trace log, including
  10422. a message and any user-defined categories.</para>
  10423. </summary>
  10424. <param name="category">The trace category that receives the message.</param>
  10425. <param name="message">The trace message to write to the log.</param>
  10426. </member>
  10427. <member name="M:System.Web.TraceContext.Write(System.String,System.String,System.Exception)">
  10428. <summary>
  10429. <para> Writes trace information to the trace log, including any user-defined
  10430. categories,trace messages, and error information.</para>
  10431. </summary>
  10432. <param name="category">The trace category that receives the message.</param>
  10433. <param name="message">The trace message to write to the log.</param>
  10434. <param name="errorInfo">An <see cref="T:System.Exception" /> that contains information about the error.</param>
  10435. </member>
  10436. <member name="M:System.Web.TraceContext.Warn(System.String)">
  10437. <summary>
  10438. <para> Writes a trace message to
  10439. the trace log. All warnings appear as in the log as red text.</para>
  10440. </summary>
  10441. <param name="message">The trace message to write to the log.</param>
  10442. </member>
  10443. <member name="M:System.Web.TraceContext.Warn(System.String,System.String)">
  10444. <summary>
  10445. <para> Writes trace information to the trace log, including any user-defined categories
  10446. and trace messages. All warnings appear in the log as red text.</para>
  10447. </summary>
  10448. <param name="category">The trace category that receives the message.</param>
  10449. <param name="message">The trace message to write to the log.</param>
  10450. </member>
  10451. <member name="M:System.Web.TraceContext.Warn(System.String,System.String,System.Exception)">
  10452. <summary>
  10453. <para> Writes trace information to the trace log, including any user-defined categories,trace messages, and error information. All warnings appear in
  10454. the log as red text. </para>
  10455. </summary>
  10456. <param name="category">The trace category that receives the message.</param>
  10457. <param name="message">The trace message to write to the log.</param>
  10458. <param name="errorInfo">An <see cref="T:System.Exception" /> that contains information about the error.</param>
  10459. </member>
  10460. <member name="P:System.Web.TraceContext.TraceMode">
  10461. <summary>
  10462. <para> Gets or sets
  10463. the sorted order in which trace messages
  10464. should be output to a requesting browser.</para>
  10465. </summary>
  10466. </member>
  10467. <member name="P:System.Web.TraceContext.IsEnabled">
  10468. <summary>
  10469. <para> Indicates whether tracing is
  10470. enabled for the current Web request. </para>
  10471. </summary>
  10472. </member>
  10473. <member name="T:System.Web.TraceMode">
  10474. <summary>
  10475. <para>Specifies in what order trace messages are emitted into the HTML output of a page.</para>
  10476. </summary>
  10477. </member>
  10478. <member name="F:System.Web.TraceMode.SortByTime">
  10479. <summary>
  10480. <para> Emit trace messages in the order they were
  10481. processed.</para>
  10482. </summary>
  10483. </member>
  10484. <member name="F:System.Web.TraceMode.SortByCategory">
  10485. <summary>
  10486. <para> Emit trace messages
  10487. alphabetically by category. </para>
  10488. </summary>
  10489. </member>
  10490. <member name="F:System.Web.TraceEnable.Default">
  10491. <summary>
  10492. <para>Specifies the default value, which is equal to Disable</para>
  10493. </summary>
  10494. </member>
  10495. <member name="F:System.Web.TraceEnable.Enable">
  10496. <summary>
  10497. <para>Specifies that tracing is enabled for a Web Forms page or an ASP.NET application.</para>
  10498. </summary>
  10499. </member>
  10500. <member name="F:System.Web.TraceEnable.Disable">
  10501. <summary>
  10502. <para>Specifies that trace functionality is disabled for an application or a page. </para>
  10503. </summary>
  10504. </member>
  10505. <member name="T:System.Web.UI.UserControl">
  10506. <summary>
  10507. <para> Represents an .ascx file when called in an .aspx file.</para>
  10508. </summary>
  10509. </member>
  10510. <member name="M:System.Web.UI.UserControl.DesignerInitialize">
  10511. <summary>
  10512. <para>Performs any initialization steps on the user control
  10513. that are required by RAD designers.</para>
  10514. </summary>
  10515. </member>
  10516. <member name="M:System.Web.UI.UserControl.OnInit(System.EventArgs)">
  10517. <summary>
  10518. <para>Raises the <see langword="Init" /> event.</para>
  10519. </summary>
  10520. <param name="e">An <see cref="T:System.EventArgs" /> object that contains the event data.</param>
  10521. </member>
  10522. <member name="M:System.Web.UI.UserControl.InitializeAsUserControl(System.Web.UI.Page)">
  10523. <summary>
  10524. <para>Initializes the <see langword="UserControl" /> object that has been created declaratively. Since there are some
  10525. differences between pages and user controls, this method makes sure that the
  10526. user control is initialized properly.</para>
  10527. </summary>
  10528. <param name=" page">The <see cref="T:System.Web.UI.Page" /> object that contains the user control.</param>
  10529. </member>
  10530. <member name="M:System.Web.UI.UserControl.LoadViewState(System.Object)">
  10531. <summary>
  10532. <para> Restores the view-state information from a previous user
  10533. control request that was saved by the <see cref="M:System.Web.UI.UserControl.SaveViewState" /> method.</para>
  10534. </summary>
  10535. <param name="savedState">An <see cref="T:System.Object" /> that represents the user control state to be restored.</param>
  10536. </member>
  10537. <member name="M:System.Web.UI.UserControl.SaveViewState">
  10538. <summary>
  10539. <para> Saves any user control view-state changes that have
  10540. occurred since the last page postback.</para>
  10541. </summary>
  10542. <returns>
  10543. <para>Returns the user control's current view state. If there is no view state associated
  10544. with the control, it returns <see langword="null" />.</para>
  10545. </returns>
  10546. </member>
  10547. <member name="M:System.Web.UI.UserControl.MapPath(System.String)">
  10548. <summary>
  10549. <para>Assigns a virtual file path, either absolute or relative, to a
  10550. physical file path.</para>
  10551. </summary>
  10552. <param name="virtualPath">The virtual file path to map.</param>
  10553. <returns>
  10554. <para>The physical path to the file.</para>
  10555. </returns>
  10556. </member>
  10557. <member name="P:System.Web.UI.UserControl.Attributes">
  10558. <summary>
  10559. <para>Gets a collection of all attribute name and value pairs declared in the user
  10560. control tag within the .aspx file.</para>
  10561. </summary>
  10562. </member>
  10563. <member name="P:System.Web.UI.UserControl.Application">
  10564. <summary>
  10565. <para>Gets the <see langword="Application" /> object for the
  10566. current Web request.</para>
  10567. </summary>
  10568. </member>
  10569. <member name="P:System.Web.UI.UserControl.Trace">
  10570. <summary>
  10571. <para>Gets the <see cref="T:System.Web.TraceContext" />
  10572. object for the current Web request.</para>
  10573. </summary>
  10574. </member>
  10575. <member name="P:System.Web.UI.UserControl.Request">
  10576. <summary>
  10577. <para>Gets the <see langword="Request" />
  10578. object for the current Web request.</para>
  10579. </summary>
  10580. </member>
  10581. <member name="P:System.Web.UI.UserControl.Response">
  10582. <summary>
  10583. <para>Gets the <see langword="Response " />
  10584. object for the current Web request.</para>
  10585. </summary>
  10586. </member>
  10587. <member name="P:System.Web.UI.UserControl.Server">
  10588. <summary>
  10589. <para> Gets the <see langword="Server" />
  10590. object for the current Web request.</para>
  10591. </summary>
  10592. </member>
  10593. <member name="P:System.Web.UI.UserControl.Cache">
  10594. <summary>
  10595. <para>Gets the <see cref="T:System.Web.Caching.Cache" />
  10596. object that is associated with the
  10597. application that contains the user control.</para>
  10598. </summary>
  10599. </member>
  10600. <member name="P:System.Web.UI.UserControl.IsPostBack">
  10601. <summary>
  10602. <para>Gets a value indicating whether the user control is being loaded in response to a
  10603. client postback, or if it is being loaded and accessed for the first time.</para>
  10604. </summary>
  10605. </member>
  10606. <member name="P:System.Web.UI.UserControl.Session">
  10607. <summary>
  10608. <para>Gets the <see langword="Session" /> object for the current Web request.</para>
  10609. </summary>
  10610. </member>
  10611. <member name="T:System.Web.UI.ValidationPropertyAttribute">
  10612. <summary>
  10613. <para> Defines the metadata attribute that ASP.NET server
  10614. controls use to identify a validation property. This class cannot be inherited. </para>
  10615. </summary>
  10616. </member>
  10617. <member name="M:System.Web.UI.ValidationPropertyAttribute.#ctor(System.String)">
  10618. <summary>
  10619. <para>Initializes a new instance of the <see cref="T:System.Web.UI.ValidationPropertyAttribute" /> class.</para>
  10620. </summary>
  10621. <param name="name"> The name of the validation property. </param>
  10622. </member>
  10623. <member name="P:System.Web.UI.ValidationPropertyAttribute.Name">
  10624. <summary>
  10625. <para> Gets the name of the ASP.NET
  10626. server control's validation property.</para>
  10627. </summary>
  10628. </member>
  10629. <member name="T:System.Web.UI.ValidatorCollection">
  10630. <summary>
  10631. <para> Exposes
  10632. an array of <see cref="T:System.Web.UI.IValidator" /> references. This class cannot be
  10633. inherited.</para>
  10634. </summary>
  10635. </member>
  10636. <member name="M:System.Web.UI.ValidatorCollection.#ctor">
  10637. <summary>
  10638. <para>Initializes a new instance of the <see cref="T:System.Web.UI.ValidatorCollection" /> class.</para>
  10639. </summary>
  10640. </member>
  10641. <member name="M:System.Web.UI.ValidatorCollection.Add(System.Web.UI.IValidator)">
  10642. <summary>
  10643. <para>Adds the specified validation server control to the
  10644. <see cref="T:System.Web.UI.ValidatorCollection" /> .</para>
  10645. </summary>
  10646. <param name="validator">The validation server control to add.</param>
  10647. </member>
  10648. <member name="M:System.Web.UI.ValidatorCollection.Contains(System.Web.UI.IValidator)">
  10649. <summary>
  10650. <para>Determines whether the specified validation server control is
  10651. contained within the page's <see cref="T:System.Web.UI.ValidatorCollection" /> .</para>
  10652. </summary>
  10653. <param name="validator">The validation server control to check for.</param>
  10654. <returns>
  10655. <para>
  10656. <see langword="true" /> if the validation server control
  10657. is in the collection; otherwise, <see langword="false" /> .</para>
  10658. </returns>
  10659. </member>
  10660. <member name="M:System.Web.UI.ValidatorCollection.Remove(System.Web.UI.IValidator)">
  10661. <summary>
  10662. <para>Removes the specified validation server control from the
  10663. page's <see cref="T:System.Web.UI.ValidatorCollection" /> .</para>
  10664. </summary>
  10665. <param name="validator">The validation server control to removed from the collection.</param>
  10666. </member>
  10667. <member name="M:System.Web.UI.ValidatorCollection.GetEnumerator">
  10668. <summary>
  10669. <para>Returns an <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Web.UI.ValidatorCollection" /> .</para>
  10670. </summary>
  10671. <returns>
  10672. <para>The <see langword="IEnumerator" /> for the collection.</para>
  10673. </returns>
  10674. </member>
  10675. <member name="M:System.Web.UI.ValidatorCollection.CopyTo(System.Array,System.Int32)">
  10676. <summary>
  10677. <para>Copies a validation server control to the specified
  10678. array beginning at the location specified by the <paramref name="index" /> parameter.</para>
  10679. </summary>
  10680. <param name="array">The collection to which the validation server control is added.</param>
  10681. <param name=" index">The index where the validation server control is copied.</param>
  10682. </member>
  10683. <member name="P:System.Web.UI.ValidatorCollection.Count">
  10684. <summary>
  10685. <para> Gets the number of
  10686. references in the collection.</para>
  10687. </summary>
  10688. </member>
  10689. <member name="P:System.Web.UI.ValidatorCollection.Item(System.Int32)">
  10690. <summary>
  10691. <para> Gets the validation server control at the specified
  10692. index location in the <see cref="T:System.Web.UI.ValidatorCollection" />
  10693. .</para>
  10694. </summary>
  10695. <param name="index">The index of the validator to return.</param>
  10696. </member>
  10697. <member name="P:System.Web.UI.ValidatorCollection.SyncRoot">
  10698. <summary>
  10699. <para>Gets an object that can be used to synchronize the
  10700. <see cref="T:System.Web.UI.ValidatorCollection" />
  10701. .</para>
  10702. </summary>
  10703. </member>
  10704. <member name="P:System.Web.UI.ValidatorCollection.IsReadOnly">
  10705. <summary>
  10706. <para>Gets a value that indicates whether the <see cref="T:System.Web.UI.ValidatorCollection" /> is
  10707. read-only.</para>
  10708. </summary>
  10709. </member>
  10710. <member name="P:System.Web.UI.ValidatorCollection.IsSynchronized">
  10711. <summary>
  10712. <para>Gets a value that indicates whether the <see cref="T:System.Web.UI.ValidatorCollection" />
  10713. is synchronized.</para>
  10714. </summary>
  10715. </member>
  10716. <member name="M:System.Web.Compilation.BaseCompiler.GetCompiledType">
  10717. <summary>
  10718. </summary>
  10719. </member>
  10720. <member name="T:System.Web.UI.HtmlControls.HtmlAnchor">
  10721. <summary>
  10722. <para>Allows programmatic access to the HTML
  10723. <see langword="&lt;a&gt;" />
  10724. tag on the server.</para>
  10725. </summary>
  10726. </member>
  10727. <member name="M:System.Web.UI.HtmlControls.HtmlAnchor.#ctor">
  10728. <summary>
  10729. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlAnchor" /> class.</para>
  10730. </summary>
  10731. </member>
  10732. <member name="M:System.Web.UI.HtmlControls.HtmlAnchor.OnServerClick(System.EventArgs)">
  10733. <summary>
  10734. <para>Raises the <see cref="E:System.Web.UI.HtmlControls.HtmlAnchor.ServerClick" /> event. This allows you
  10735. to provide a custom handler for the event.</para>
  10736. </summary>
  10737. <param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains event data.</param>
  10738. </member>
  10739. <member name="P:System.Web.UI.HtmlControls.HtmlAnchor.HRef">
  10740. <summary>
  10741. <para> Gets or sets the URL target of the link specified in the
  10742. <see cref="T:System.Web.UI.HtmlControls.HtmlAnchor" />
  10743. server control.</para>
  10744. </summary>
  10745. </member>
  10746. <member name="P:System.Web.UI.HtmlControls.HtmlAnchor.Name">
  10747. <summary>
  10748. <para>Gets or sets the bookmark name defined in the <see cref="T:System.Web.UI.HtmlControls.HtmlAnchor" />
  10749. server
  10750. control.</para>
  10751. </summary>
  10752. </member>
  10753. <member name="P:System.Web.UI.HtmlControls.HtmlAnchor.Target">
  10754. <summary>
  10755. <para>
  10756. Gets
  10757. or sets the target window or
  10758. frame to load Web page content into.</para>
  10759. </summary>
  10760. </member>
  10761. <member name="P:System.Web.UI.HtmlControls.HtmlAnchor.Title">
  10762. <summary>
  10763. <para> Gets or sets the ToolTip text displayed when the mouse pointer
  10764. is placed over the <see cref="T:System.Web.UI.HtmlControls.HtmlAnchor" />
  10765. control.</para>
  10766. </summary>
  10767. </member>
  10768. <member name="E:System.Web.UI.HtmlControls.HtmlAnchor.ServerClick">
  10769. <summary>
  10770. <para> Occurs when the <see cref="T:System.Web.UI.HtmlControls.HtmlAnchor" /> control is
  10771. clicked.</para>
  10772. </summary>
  10773. </member>
  10774. <member name="T:System.Web.UI.HtmlControls.HtmlButton">
  10775. <summary>
  10776. <para>
  10777. Allows programmatic access to the HTML
  10778. <see langword="&lt;button&gt;" />
  10779. tag
  10780. on the server.</para>
  10781. </summary>
  10782. </member>
  10783. <member name="M:System.Web.UI.HtmlControls.HtmlButton.#ctor">
  10784. <summary>
  10785. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlButton" /> class.</para>
  10786. </summary>
  10787. </member>
  10788. <member name="M:System.Web.UI.HtmlControls.HtmlButton.OnServerClick(System.EventArgs)">
  10789. <summary>
  10790. <para>Raises the <see cref="E:System.Web.UI.HtmlControls.HtmlButton.ServerClick" /> event. This allows you
  10791. to provide a custom handler for the event.</para>
  10792. </summary>
  10793. <param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains the event data.</param>
  10794. </member>
  10795. <member name="P:System.Web.UI.HtmlControls.HtmlButton.CausesValidation">
  10796. <summary>
  10797. <para>Gets or sets a value indicating whether validation is
  10798. performed when the <see cref="T:System.Web.UI.HtmlControls.HtmlButton" /> control is clicked.</para>
  10799. </summary>
  10800. </member>
  10801. <member name="E:System.Web.UI.HtmlControls.HtmlButton.ServerClick">
  10802. <summary>
  10803. <para>Occurs when the user clicks an <see cref="T:System.Web.UI.HtmlControls.HtmlButton" /> control on the client Web
  10804. page.</para>
  10805. </summary>
  10806. </member>
  10807. <member name="T:System.Web.UI.HtmlControls.HtmlGenericControl">
  10808. <summary>
  10809. <para> Defines the methods,
  10810. properties, and events for all HTML server control tags not represented by a
  10811. specific .NET Framework class.</para>
  10812. </summary>
  10813. </member>
  10814. <member name="M:System.Web.UI.HtmlControls.HtmlGenericControl.#ctor">
  10815. <summary>
  10816. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlGenericControl" /> class
  10817. with default
  10818. values.</para>
  10819. </summary>
  10820. </member>
  10821. <member name="M:System.Web.UI.HtmlControls.HtmlGenericControl.#ctor(System.String)">
  10822. <summary>
  10823. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlGenericControl" /> class with the specified
  10824. tag.</para>
  10825. </summary>
  10826. <param name="tag">The name of the element for which the instance of this class is created.</param>
  10827. </member>
  10828. <member name="P:System.Web.UI.HtmlControls.HtmlGenericControl.TagName">
  10829. <summary>
  10830. <para>Gets or sets the tag name of an element that contains a
  10831. <see langword="runat= &quot;server&quot; " /> attribute.</para>
  10832. </summary>
  10833. </member>
  10834. <member name="T:System.Web.UI.HtmlControls.HtmlImage">
  10835. <summary>
  10836. <para>Provides programmatic access for the HTML
  10837. <see langword="&lt;img&gt;" /> element
  10838. on the
  10839. server.</para>
  10840. </summary>
  10841. </member>
  10842. <member name="M:System.Web.UI.HtmlControls.HtmlImage.#ctor">
  10843. <summary>
  10844. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlImage" /> class.</para>
  10845. </summary>
  10846. </member>
  10847. <member name="P:System.Web.UI.HtmlControls.HtmlImage.Alt">
  10848. <summary>
  10849. <para> Gets or sets the alternative caption the
  10850. browser displays if an image is unavailable or currently downloading and not yet finished.</para>
  10851. </summary>
  10852. </member>
  10853. <member name="P:System.Web.UI.HtmlControls.HtmlImage.Align">
  10854. <summary>
  10855. <para> Gets or sets the alignment of the image relative to other Web
  10856. page elements.</para>
  10857. </summary>
  10858. </member>
  10859. <member name="P:System.Web.UI.HtmlControls.HtmlImage.Border">
  10860. <summary>
  10861. <para>Gets or sets the width of a frame for an image.</para>
  10862. </summary>
  10863. </member>
  10864. <member name="P:System.Web.UI.HtmlControls.HtmlImage.Height">
  10865. <summary>
  10866. <para>Gets or sets the height of the image. </para>
  10867. </summary>
  10868. </member>
  10869. <member name="P:System.Web.UI.HtmlControls.HtmlImage.Src">
  10870. <summary>
  10871. <para> Gets or sets the source of the image file
  10872. to display.</para>
  10873. </summary>
  10874. </member>
  10875. <member name="P:System.Web.UI.HtmlControls.HtmlImage.Width">
  10876. <summary>
  10877. <para> Gets or sets the width of the image.</para>
  10878. </summary>
  10879. </member>
  10880. <member name="T:System.Web.UI.HtmlControls.HtmlInputButton">
  10881. <summary>
  10882. <para>Allows programmatic access to the HTML <see langword="&lt;input type= button&gt;" />, <see langword="&lt;input type= submit&gt;" />, and
  10883. <see langword=" &lt;input type= reset&gt;" />
  10884. elements on
  10885. the server.</para>
  10886. </summary>
  10887. </member>
  10888. <member name="T:System.Web.UI.HtmlControls.HtmlInputControl">
  10889. <summary>
  10890. <para> Serves as the abstract base class that defines the
  10891. methods, properties, and events common to all HTML input controls, such as the
  10892. <see langword="&lt;input type=text&gt;" />, <see langword="&lt;input type=submit&gt;" />, and <see langword=" &lt;input type= file&gt;" />
  10893. elements.</para>
  10894. </summary>
  10895. </member>
  10896. <member name="M:System.Web.UI.HtmlControls.HtmlInputControl.#ctor(System.String)">
  10897. <summary>
  10898. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlInputControl" /> class.</para>
  10899. </summary>
  10900. <param name="type">The type of input control.</param>
  10901. </member>
  10902. <member name="P:System.Web.UI.HtmlControls.HtmlInputControl.Name">
  10903. <summary>
  10904. <para> Gets or sets the unique identifier name for the <see cref="T:System.Web.UI.HtmlControls.HtmlInputControl" />.</para>
  10905. </summary>
  10906. </member>
  10907. <member name="P:System.Web.UI.HtmlControls.HtmlInputControl.Value">
  10908. <summary>
  10909. <para>Gets or sets the value associated with the <see cref="T:System.Web.UI.HtmlControls.HtmlInputControl" />.</para>
  10910. </summary>
  10911. </member>
  10912. <member name="P:System.Web.UI.HtmlControls.HtmlInputControl.Type">
  10913. <summary>
  10914. <para> Gets the type of an <see cref="T:System.Web.UI.HtmlControls.HtmlInputControl" />.</para>
  10915. </summary>
  10916. </member>
  10917. <member name="M:System.Web.UI.HtmlControls.HtmlInputButton.#ctor">
  10918. <summary>
  10919. <para>Initializes a new instance of an <see cref="T:System.Web.UI.HtmlControls.HtmlInputButton" /> class using
  10920. default values.</para>
  10921. </summary>
  10922. </member>
  10923. <member name="M:System.Web.UI.HtmlControls.HtmlInputButton.#ctor(System.String)">
  10924. <summary>
  10925. <para>Initializes a new instance of an <see cref="T:System.Web.UI.HtmlControls.HtmlInputButton" /> class using the specified
  10926. button type.</para>
  10927. </summary>
  10928. <param name="type">The input button type.</param>
  10929. </member>
  10930. <member name="M:System.Web.UI.HtmlControls.HtmlInputButton.OnServerClick(System.EventArgs)">
  10931. <summary>
  10932. <para>Raises the <see cref="E:System.Web.UI.HtmlControls.HtmlInputButton.ServerClick" />
  10933. event. This allows you to handle the event directly.</para>
  10934. </summary>
  10935. <param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains the event data.</param>
  10936. </member>
  10937. <member name="P:System.Web.UI.HtmlControls.HtmlInputButton.CausesValidation">
  10938. <summary>
  10939. <para>Gets or sets a value indicating whether validation is
  10940. performed when the <see cref="T:System.Web.UI.HtmlControls.HtmlInputButton" /> control is clicked.</para>
  10941. </summary>
  10942. </member>
  10943. <member name="E:System.Web.UI.HtmlControls.HtmlInputButton.ServerClick">
  10944. <summary>
  10945. <para>Occurs when an <see cref="T:System.Web.UI.HtmlControls.HtmlInputButton" /> control is clicked on the Web page.</para>
  10946. </summary>
  10947. </member>
  10948. <member name="T:System.Web.UI.HtmlControls.HtmlInputCheckBox">
  10949. <summary>
  10950. <para> Allows programmatic access to the HTML <see langword="&lt;input type= checkbox&gt;" />
  10951. element on the server.</para>
  10952. </summary>
  10953. </member>
  10954. <member name="M:System.Web.UI.HtmlControls.HtmlInputCheckBox.#ctor">
  10955. <summary>
  10956. <para>Initializes a new instance of an <see cref="T:System.Web.UI.HtmlControls.HtmlInputCheckBox" /> class.</para>
  10957. </summary>
  10958. </member>
  10959. <member name="M:System.Web.UI.HtmlControls.HtmlInputCheckBox.OnServerChange(System.EventArgs)">
  10960. <summary>
  10961. <para>Raises the <see cref="E:System.Web.UI.HtmlControls.HtmlInputCheckBox.ServerChange" />
  10962. event. This method allows you to handle the event directly.</para>
  10963. </summary>
  10964. <param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains event information.</param>
  10965. </member>
  10966. <member name="P:System.Web.UI.HtmlControls.HtmlInputCheckBox.Checked">
  10967. <summary>
  10968. <para>Gets or sets a value indicating whether the <see cref="T:System.Web.UI.HtmlControls.HtmlInputCheckBox" />
  10969. is checked.</para>
  10970. </summary>
  10971. </member>
  10972. <member name="E:System.Web.UI.HtmlControls.HtmlInputCheckBox.ServerChange">
  10973. <summary>
  10974. <para>Occurs when the Web page is submitted to the server and the <see cref="T:System.Web.UI.HtmlControls.HtmlInputCheckBox" /> control
  10975. changes state
  10976. from the previous post. </para>
  10977. </summary>
  10978. </member>
  10979. <member name="T:System.Web.UI.HtmlControls.HtmlInputFile">
  10980. <summary>
  10981. <para>Allows programmatic access to the HTML <see langword="&lt;input type= file&gt;" />
  10982. element on the
  10983. server.</para>
  10984. </summary>
  10985. </member>
  10986. <member name="M:System.Web.UI.HtmlControls.HtmlInputFile.#ctor">
  10987. <summary>
  10988. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlInputFile" /> class.</para>
  10989. </summary>
  10990. </member>
  10991. <member name="P:System.Web.UI.HtmlControls.HtmlInputFile.Accept">
  10992. <summary>
  10993. <para> Gets or sets
  10994. a comma-separated list of MIME encodings
  10995. used to constrain the file types the user can select.</para>
  10996. </summary>
  10997. </member>
  10998. <member name="P:System.Web.UI.HtmlControls.HtmlInputFile.MaxLength">
  10999. <summary>
  11000. <para> Gets or sets
  11001. the maximum length of the file path for the file to upload
  11002. from the client computer.</para>
  11003. </summary>
  11004. </member>
  11005. <member name="P:System.Web.UI.HtmlControls.HtmlInputFile.PostedFile">
  11006. <summary>
  11007. <para>Gets access to the uploaded file specified by a client.</para>
  11008. </summary>
  11009. </member>
  11010. <member name="P:System.Web.UI.HtmlControls.HtmlInputFile.Size">
  11011. <summary>
  11012. <para>Gets or sets the width of the text
  11013. box in which the file path is entered.</para>
  11014. </summary>
  11015. </member>
  11016. <member name="T:System.Web.UI.HtmlControls.HtmlInputHidden">
  11017. <summary>
  11018. <para> Allows programmatic access to the HTML <see langword="&lt;input type=hidden&gt; " /> element on the server.</para>
  11019. </summary>
  11020. </member>
  11021. <member name="M:System.Web.UI.HtmlControls.HtmlInputHidden.#ctor">
  11022. <summary>
  11023. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlInputHidden" /> class.</para>
  11024. </summary>
  11025. </member>
  11026. <member name="M:System.Web.UI.HtmlControls.HtmlInputHidden.OnServerChange(System.EventArgs)">
  11027. <summary>
  11028. <para>Raises the <see cref="E:System.Web.UI.HtmlControls.HtmlInputHidden.ServerChange" /> event. This method
  11029. allows you to handle the event directly.</para>
  11030. </summary>
  11031. <param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains event data.</param>
  11032. </member>
  11033. <member name="E:System.Web.UI.HtmlControls.HtmlInputHidden.ServerChange">
  11034. <summary>
  11035. <para>Occurs when the <see cref="P:System.Web.UI.HtmlControls.HtmlInputControl.Value" /> property is changed on the server.</para>
  11036. </summary>
  11037. </member>
  11038. <member name="T:System.Web.UI.HtmlControls.HtmlInputImage">
  11039. <summary>
  11040. <para>Allows programmatic access to the HTML <see langword="&lt;input type= image&gt;" />
  11041. element on the server.</para>
  11042. </summary>
  11043. </member>
  11044. <member name="M:System.Web.UI.HtmlControls.HtmlInputImage.#ctor">
  11045. <summary>
  11046. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlInputImage" /> class.</para>
  11047. </summary>
  11048. </member>
  11049. <member name="M:System.Web.UI.HtmlControls.HtmlInputImage.OnServerClick(System.Web.UI.ImageClickEventArgs)">
  11050. <summary>
  11051. <para> Raises the <see cref="E:System.Web.UI.HtmlControls.HtmlInputImage.ServerClick" />
  11052. event.</para>
  11053. </summary>
  11054. <param name="e">A <see cref="T:System.Web.UI.ImageClickEventArgs" qualify="true" /> that contains event data. </param>
  11055. </member>
  11056. <member name="P:System.Web.UI.HtmlControls.HtmlInputImage.Align">
  11057. <summary>
  11058. <para> Gets or sets the alignment of the <see cref="T:System.Web.UI.HtmlControls.HtmlInputImage" /> control in relation to other elements on the Web page.
  11059. </para>
  11060. </summary>
  11061. </member>
  11062. <member name="P:System.Web.UI.HtmlControls.HtmlInputImage.Alt">
  11063. <summary>
  11064. <para> Gets or sets
  11065. the alternative text that the browser displays if the image is unavailable or has
  11066. not been downloaded.
  11067. </para>
  11068. </summary>
  11069. </member>
  11070. <member name="P:System.Web.UI.HtmlControls.HtmlInputImage.Border">
  11071. <summary>
  11072. <para> Gets or sets the border width for the
  11073. <see cref="T:System.Web.UI.HtmlControls.HtmlInputImage" />
  11074. control.
  11075. </para>
  11076. </summary>
  11077. </member>
  11078. <member name="P:System.Web.UI.HtmlControls.HtmlInputImage.Src">
  11079. <summary>
  11080. <para> Gets or sets the location of the image file.
  11081. </para>
  11082. </summary>
  11083. </member>
  11084. <member name="P:System.Web.UI.HtmlControls.HtmlInputImage.CausesValidation">
  11085. <summary>
  11086. <para>Gets or sets a value indicating whether validation is
  11087. performed when the <see cref="T:System.Web.UI.HtmlControls.HtmlInputImage" /> control is clicked.</para>
  11088. </summary>
  11089. </member>
  11090. <member name="E:System.Web.UI.HtmlControls.HtmlInputImage.ServerClick">
  11091. <summary>
  11092. <para> Occurs on the server when the user clicks an
  11093. <see cref="T:System.Web.UI.HtmlControls.HtmlInputImage" />
  11094. control.</para>
  11095. </summary>
  11096. </member>
  11097. <member name="T:System.Web.UI.HtmlControls.HtmlInputRadioButton">
  11098. <summary>
  11099. <para>Allows programmatic access to the HTML <see langword="&lt;input type= radio&gt;" />
  11100. element on the server.</para>
  11101. </summary>
  11102. </member>
  11103. <member name="M:System.Web.UI.HtmlControls.HtmlInputRadioButton.#ctor">
  11104. <summary>
  11105. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlInputRadioButton" /> class.</para>
  11106. </summary>
  11107. </member>
  11108. <member name="M:System.Web.UI.HtmlControls.HtmlInputRadioButton.OnServerChange(System.EventArgs)">
  11109. <summary>
  11110. <para>Raises the <see cref="E:System.Web.UI.HtmlControls.HtmlInputRadioButton.ServerChange" /> event. This
  11111. allows you to create a custom event handler when the event is raised.</para>
  11112. </summary>
  11113. <param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains the event data.</param>
  11114. </member>
  11115. <member name="P:System.Web.UI.HtmlControls.HtmlInputRadioButton.Checked">
  11116. <summary>
  11117. <para> Gets or sets a value indicating whether the <see cref="T:System.Web.UI.HtmlControls.HtmlInputRadioButton" />
  11118. control is selected.</para>
  11119. </summary>
  11120. </member>
  11121. <member name="P:System.Web.UI.HtmlControls.HtmlInputRadioButton.Name">
  11122. <summary>
  11123. <para> Gets or sets the name of the group that the
  11124. instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlInputRadioButton" /> class is associated with. </para>
  11125. </summary>
  11126. </member>
  11127. <member name="P:System.Web.UI.HtmlControls.HtmlInputRadioButton.Value">
  11128. <summary>
  11129. <para>Gets or sets the value associated with the <see cref="T:System.Web.UI.HtmlControls.HtmlInputRadioButton" /> control.</para>
  11130. </summary>
  11131. </member>
  11132. <member name="E:System.Web.UI.HtmlControls.HtmlInputRadioButton.ServerChange">
  11133. <summary>
  11134. <para>Occurs when the value of the <see cref="P:System.Web.UI.HtmlControls.HtmlInputRadioButton.Checked" /> property of the
  11135. <see cref="T:System.Web.UI.HtmlControls.HtmlInputRadioButton" /> control changes between
  11136. posts to the server.</para>
  11137. </summary>
  11138. </member>
  11139. <member name="T:System.Web.UI.HtmlControls.HtmlInputText">
  11140. <summary>
  11141. <para>Allows programmatic access to the HTML <see langword="&lt;input type= text&gt;" /> and <see langword="&lt;input type= password&gt;" />
  11142. elements on the server.</para>
  11143. </summary>
  11144. </member>
  11145. <member name="M:System.Web.UI.HtmlControls.HtmlInputText.#ctor">
  11146. <summary>
  11147. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlInputText" /> class using default values.</para>
  11148. </summary>
  11149. </member>
  11150. <member name="M:System.Web.UI.HtmlControls.HtmlInputText.#ctor(System.String)">
  11151. <summary>
  11152. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlInputText" /> class using the specified input
  11153. control type.</para>
  11154. </summary>
  11155. <param name="type">The type of input control.</param>
  11156. </member>
  11157. <member name="M:System.Web.UI.HtmlControls.HtmlInputText.OnServerChange(System.EventArgs)">
  11158. <summary>
  11159. <para>Raises the <see cref="E:System.Web.UI.HtmlControls.HtmlInputText.ServerChange" /> event.</para>
  11160. </summary>
  11161. <param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains event data.</param>
  11162. </member>
  11163. <member name="P:System.Web.UI.HtmlControls.HtmlInputText.MaxLength">
  11164. <summary>
  11165. <para> Gets or sets the maximum number of characters that
  11166. can be entered in the text box.
  11167. </para>
  11168. </summary>
  11169. </member>
  11170. <member name="P:System.Web.UI.HtmlControls.HtmlInputText.Size">
  11171. <summary>
  11172. <para> Gets or sets the width of the text box.
  11173. </para>
  11174. </summary>
  11175. </member>
  11176. <member name="P:System.Web.UI.HtmlControls.HtmlInputText.Value">
  11177. <summary>
  11178. <para> Gets
  11179. or sets the contents of the text box.
  11180. </para>
  11181. </summary>
  11182. </member>
  11183. <member name="E:System.Web.UI.HtmlControls.HtmlInputText.ServerChange">
  11184. <summary>
  11185. <para>Occurs when the <see cref="P:System.Web.UI.HtmlControls.HtmlInputText.Value" /> property is changed on the
  11186. server.</para>
  11187. </summary>
  11188. </member>
  11189. <member name="T:System.Web.UI.HtmlControls.HtmlSelect">
  11190. <summary>
  11191. <para>Allows programmatic access to the HTML
  11192. <see langword="&lt;select&gt;" />
  11193. element on the server.</para>
  11194. </summary>
  11195. </member>
  11196. <member name="M:System.Web.UI.HtmlControls.HtmlSelect.#ctor">
  11197. <summary>
  11198. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlSelect" /> class.</para>
  11199. </summary>
  11200. </member>
  11201. <member name="M:System.Web.UI.HtmlControls.HtmlSelect.OnServerChange(System.EventArgs)">
  11202. <summary>
  11203. <para>Raises the <see cref="E:System.Web.UI.HtmlControls.HtmlSelect.ServerChange" /> event of the <see cref="T:System.Web.UI.HtmlControls.HtmlSelect" /> control. This allows you to provide
  11204. a custom handler for the
  11205. event.</para>
  11206. </summary>
  11207. <param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains the event data. </param>
  11208. </member>
  11209. <member name="P:System.Web.UI.HtmlControls.HtmlSelect.DataMember">
  11210. <summary>
  11211. <para>Gets or sets the set of data to bind to the <see cref="T:System.Web.UI.HtmlControls.HtmlSelect" /> control from a
  11212. <see cref="P:System.Web.UI.HtmlControls.HtmlSelect.DataSource" /> with multiple sets of
  11213. data.</para>
  11214. </summary>
  11215. </member>
  11216. <member name="P:System.Web.UI.HtmlControls.HtmlSelect.DataSource">
  11217. <summary>
  11218. <para> Gets or sets the source of information to bind
  11219. to the <see cref="T:System.Web.UI.HtmlControls.HtmlSelect" />
  11220. control.</para>
  11221. </summary>
  11222. </member>
  11223. <member name="P:System.Web.UI.HtmlControls.HtmlSelect.DataTextField">
  11224. <summary>
  11225. <para> Gets or sets the field from the <see cref="P:System.Web.UI.HtmlControls.HtmlSelect.DataSource" /> to bind to the <see cref="P:System.Web.UI.WebControls.ListItem.Text" qualify="true" />
  11226. property of each item in the <see cref="T:System.Web.UI.HtmlControls.HtmlSelect" />
  11227. control.</para>
  11228. </summary>
  11229. </member>
  11230. <member name="P:System.Web.UI.HtmlControls.HtmlSelect.DataValueField">
  11231. <summary>
  11232. <para>Gets or sets the field from the <see cref="P:System.Web.UI.HtmlControls.HtmlSelect.DataSource" /> to bind to the <see cref="P:System.Web.UI.WebControls.ListItem.Value" qualify="true" />
  11233. property of each item in the
  11234. <see cref="T:System.Web.UI.HtmlControls.HtmlSelect" />
  11235. control.</para>
  11236. </summary>
  11237. </member>
  11238. <member name="P:System.Web.UI.HtmlControls.HtmlSelect.InnerHtml">
  11239. <summary>
  11240. <para>Gets or sets the content between the opening and closing tags of the control without automatically converting
  11241. special characters to their equivalent HTML entities. This property is
  11242. not supported for this control.</para>
  11243. </summary>
  11244. </member>
  11245. <member name="P:System.Web.UI.HtmlControls.HtmlSelect.InnerText">
  11246. <summary>
  11247. <para>Gets or sets the content between the opening and closing tags of the control with automatic conversion
  11248. of special characters to their equivalent HTML entities. This
  11249. property is not supported for this control.</para>
  11250. </summary>
  11251. </member>
  11252. <member name="P:System.Web.UI.HtmlControls.HtmlSelect.Items">
  11253. <summary>
  11254. <para>Gets a collection that contains the items listed in an <see cref="T:System.Web.UI.HtmlControls.HtmlSelect" /> control.</para>
  11255. </summary>
  11256. </member>
  11257. <member name="P:System.Web.UI.HtmlControls.HtmlSelect.Multiple">
  11258. <summary>
  11259. <para>Gets or sets a value indicating whether multiple items can
  11260. be selected concurrently in the <see cref="T:System.Web.UI.HtmlControls.HtmlSelect" />
  11261. control.</para>
  11262. </summary>
  11263. </member>
  11264. <member name="P:System.Web.UI.HtmlControls.HtmlSelect.Name">
  11265. <summary>
  11266. <para>Gets or sets the unique identifier name associated with the <see cref="T:System.Web.UI.HtmlControls.HtmlSelect" /> control.</para>
  11267. </summary>
  11268. </member>
  11269. <member name="P:System.Web.UI.HtmlControls.HtmlSelect.SelectedIndex">
  11270. <summary>
  11271. <para> Gets or sets the ordinal index of the selected
  11272. item in an <see cref="T:System.Web.UI.HtmlControls.HtmlSelect" />
  11273. control.</para>
  11274. </summary>
  11275. </member>
  11276. <member name="P:System.Web.UI.HtmlControls.HtmlSelect.Size">
  11277. <summary>
  11278. <para>Gets or sets the height (in rows) of the <see cref="T:System.Web.UI.HtmlControls.HtmlSelect" /> control.</para>
  11279. </summary>
  11280. </member>
  11281. <member name="P:System.Web.UI.HtmlControls.HtmlSelect.Value">
  11282. <summary>
  11283. <para>Gets the value of the selected item in the <see cref="T:System.Web.UI.HtmlControls.HtmlSelect" /> control
  11284. or sets the <see cref="P:System.Web.UI.HtmlControls.HtmlSelect.SelectedIndex" /> property of the control to the index of the first item in the
  11285. list with the specified
  11286. value.</para>
  11287. </summary>
  11288. </member>
  11289. <member name="E:System.Web.UI.HtmlControls.HtmlSelect.ServerChange">
  11290. <summary>
  11291. <para>Occurs when the selected items in the <see cref="T:System.Web.UI.HtmlControls.HtmlSelect" /> control
  11292. change between posts to the
  11293. server.</para>
  11294. </summary>
  11295. </member>
  11296. <member name="T:System.Web.UI.HtmlControls.HtmlTable">
  11297. <summary>
  11298. <para>Allows programmatic access on the server to the HTML
  11299. <see langword="&lt;table&gt;" />
  11300. element.</para>
  11301. </summary>
  11302. </member>
  11303. <member name="M:System.Web.UI.HtmlControls.HtmlTable.#ctor">
  11304. <summary>
  11305. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> class.</para>
  11306. </summary>
  11307. </member>
  11308. <member name="P:System.Web.UI.HtmlControls.HtmlTable.Align">
  11309. <summary>
  11310. <para> Gets or sets the alignment of the <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> control in relation to other
  11311. elements on the Web
  11312. page.</para>
  11313. </summary>
  11314. </member>
  11315. <member name="P:System.Web.UI.HtmlControls.HtmlTable.BgColor">
  11316. <summary>
  11317. <para>Gets or sets the background color of the <see cref="T:System.Web.UI.HtmlControls.HtmlTable" />
  11318. control.</para>
  11319. </summary>
  11320. </member>
  11321. <member name="P:System.Web.UI.HtmlControls.HtmlTable.Border">
  11322. <summary>
  11323. <para>Gets or sets the width of the border (in pixels) of the
  11324. <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> control.</para>
  11325. </summary>
  11326. </member>
  11327. <member name="P:System.Web.UI.HtmlControls.HtmlTable.BorderColor">
  11328. <summary>
  11329. <para>Gets or sets the border color of the <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> control.</para>
  11330. </summary>
  11331. </member>
  11332. <member name="P:System.Web.UI.HtmlControls.HtmlTable.CellPadding">
  11333. <summary>
  11334. <para>Gets or sets the amount of space between the contents of
  11335. a cell and the cell's border (in pixels) in the <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> control.</para>
  11336. </summary>
  11337. </member>
  11338. <member name="P:System.Web.UI.HtmlControls.HtmlTable.CellSpacing">
  11339. <summary>
  11340. <para>Gets or sets the amount of space between adjacent
  11341. cells (in pixels) in the <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> control.</para>
  11342. </summary>
  11343. </member>
  11344. <member name="P:System.Web.UI.HtmlControls.HtmlTable.InnerHtml">
  11345. <summary>
  11346. <para>Gets or sets the content between the opening and closing tags of the control, without automatically converting
  11347. special characters to their equivalent HTML entities. This property is
  11348. not supported for this control.</para>
  11349. </summary>
  11350. </member>
  11351. <member name="P:System.Web.UI.HtmlControls.HtmlTable.InnerText">
  11352. <summary>
  11353. <para>Gets or sets the content between the opening and closing tags of the control, with automatic conversion
  11354. of special characters to their equivalent HTML entities. This
  11355. property is not supported for this control.</para>
  11356. </summary>
  11357. </member>
  11358. <member name="P:System.Web.UI.HtmlControls.HtmlTable.Height">
  11359. <summary>
  11360. <para> Gets or sets the height of the <see cref="T:System.Web.UI.HtmlControls.HtmlTable" />
  11361. control.</para>
  11362. </summary>
  11363. </member>
  11364. <member name="P:System.Web.UI.HtmlControls.HtmlTable.Width">
  11365. <summary>
  11366. <para> Gets or sets the width of the <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> control.</para>
  11367. </summary>
  11368. </member>
  11369. <member name="P:System.Web.UI.HtmlControls.HtmlTable.Rows">
  11370. <summary>
  11371. <para>Gets an <see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" /> that contains all the rows in the
  11372. <see cref="T:System.Web.UI.HtmlControls.HtmlTable" />
  11373. control.</para>
  11374. </summary>
  11375. </member>
  11376. <member name="M:System.Web.UI.HtmlControls.HtmlTable.HtmlTableRowControlCollection.Add(System.Web.UI.Control)">
  11377. <summary>
  11378. <para>[To be supplied.]</para>
  11379. </summary>
  11380. </member>
  11381. <member name="M:System.Web.UI.HtmlControls.HtmlTable.HtmlTableRowControlCollection.AddAt(System.Int32,System.Web.UI.Control)">
  11382. <summary>
  11383. <para>Adds the specified <see cref="T:System.Web.UI.Control" /> object to the collection. The new control is added
  11384. to the array at the specified index location.</para>
  11385. </summary>
  11386. <param name=" index">The location in the array to add the child control.</param>
  11387. <param name="child">The <see cref="T:System.Web.UI.Control" /> object to add to the collection.</param>
  11388. </member>
  11389. <member name="T:System.Web.UI.HtmlControls.HtmlTableCell">
  11390. <summary>
  11391. <para> Represents
  11392. the <see langword="&lt;td&gt;" /> and <see langword="&lt;th&gt;" /> HTML
  11393. elements in an <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" />.</para>
  11394. </summary>
  11395. </member>
  11396. <member name="M:System.Web.UI.HtmlControls.HtmlTableCell.#ctor">
  11397. <summary>
  11398. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> class using default values.</para>
  11399. </summary>
  11400. </member>
  11401. <member name="M:System.Web.UI.HtmlControls.HtmlTableCell.#ctor(System.String)">
  11402. <summary>
  11403. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> class, using the specified
  11404. tag name.</para>
  11405. </summary>
  11406. <param name="tagName">The element name of the tag.</param>
  11407. </member>
  11408. <member name="P:System.Web.UI.HtmlControls.HtmlTableCell.Align">
  11409. <summary>
  11410. <para>Gets or sets the horizontal alignment of the content in the cell represented by an instance of
  11411. the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> class.</para>
  11412. </summary>
  11413. </member>
  11414. <member name="P:System.Web.UI.HtmlControls.HtmlTableCell.BgColor">
  11415. <summary>
  11416. <para> Gets or sets the background color of the
  11417. cell represented by an instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" />
  11418. class.</para>
  11419. </summary>
  11420. </member>
  11421. <member name="P:System.Web.UI.HtmlControls.HtmlTableCell.BorderColor">
  11422. <summary>
  11423. <para>Gets or sets the border color of the cell
  11424. represented by an instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" />
  11425. class.</para>
  11426. </summary>
  11427. </member>
  11428. <member name="P:System.Web.UI.HtmlControls.HtmlTableCell.ColSpan">
  11429. <summary>
  11430. <para>Gets or sets the number of columns occupied by a cell represented by an instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> class.</para>
  11431. </summary>
  11432. </member>
  11433. <member name="P:System.Web.UI.HtmlControls.HtmlTableCell.Height">
  11434. <summary>
  11435. <para>Gets or sets the height (in pixels) of the cell represented by an instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" />
  11436. class.</para>
  11437. </summary>
  11438. </member>
  11439. <member name="P:System.Web.UI.HtmlControls.HtmlTableCell.NoWrap">
  11440. <summary>
  11441. <para>Gets or sets a value indicating whether the text in a cell represented by an instance of the
  11442. <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> class automatically continues
  11443. on the next line when it reaches the end
  11444. of the cell.</para>
  11445. </summary>
  11446. </member>
  11447. <member name="P:System.Web.UI.HtmlControls.HtmlTableCell.RowSpan">
  11448. <summary>
  11449. <para>Gets or sets the number of rows occupied by a cell
  11450. represented by an instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" />
  11451. class.</para>
  11452. </summary>
  11453. </member>
  11454. <member name="P:System.Web.UI.HtmlControls.HtmlTableCell.VAlign">
  11455. <summary>
  11456. <para>Gets or sets the vertical alignment for the content of a cell represented by an instance of the
  11457. <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> class.</para>
  11458. </summary>
  11459. </member>
  11460. <member name="P:System.Web.UI.HtmlControls.HtmlTableCell.Width">
  11461. <summary>
  11462. <para>Gets or sets the width (in pixels) of the cell
  11463. represented by an instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" />
  11464. class.</para>
  11465. </summary>
  11466. </member>
  11467. <member name="T:System.Web.UI.HtmlControls.HtmlTableCellCollection">
  11468. <summary>
  11469. <para> A collection of <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> objects that represent the
  11470. cells in a single row of an <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> control. This class cannot
  11471. be inherited.</para>
  11472. </summary>
  11473. </member>
  11474. <member name="M:System.Web.UI.HtmlControls.HtmlTableCellCollection.Add(System.Web.UI.HtmlControls.HtmlTableCell)">
  11475. <summary>
  11476. <para>Appends the specified <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> to the end of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCellCollection" />.</para>
  11477. </summary>
  11478. <param name="cell">The <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> to add to the collection.</param>
  11479. </member>
  11480. <member name="M:System.Web.UI.HtmlControls.HtmlTableCellCollection.Insert(System.Int32,System.Web.UI.HtmlControls.HtmlTableCell)">
  11481. <summary>
  11482. <para>Adds the specified <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> at the specified index
  11483. location of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCellCollection" />.</para>
  11484. </summary>
  11485. <param name="index">The location in the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCellCollection" /> at which to add the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" />.</param>
  11486. <param name=" cell">The <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> to add to the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCellCollection" />.</param>
  11487. </member>
  11488. <member name="M:System.Web.UI.HtmlControls.HtmlTableCellCollection.Clear">
  11489. <summary>
  11490. <para>Removes all <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> objects from the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCellCollection" />.</para>
  11491. </summary>
  11492. </member>
  11493. <member name="M:System.Web.UI.HtmlControls.HtmlTableCellCollection.GetEnumerator">
  11494. <summary>
  11495. <para>Returns a <see cref="T:System.Collections.IEnumerator" qualify="true" /> implemented object that contains all <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> objects in the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCellCollection" />.</para>
  11496. </summary>
  11497. <returns>
  11498. <para> A <see cref="T:System.Collections.IEnumerator" qualify="true" /> implemented object that contains all <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> objects in the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCellCollection" />.</para>
  11499. </returns>
  11500. </member>
  11501. <member name="M:System.Web.UI.HtmlControls.HtmlTableCellCollection.CopyTo(System.Array,System.Int32)">
  11502. <summary>
  11503. <para>Copies the items from the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCellCollection" /> to the specified <see cref="T:System.Array" qualify="true" />, beginning with the specified
  11504. index in the <see cref="T:System.Array" qualify="true" />.</para>
  11505. </summary>
  11506. <param name="array">A zero-based <see cref="T:System.Array" qualify="true" /> that receives the copied items from the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCellCollection" />.</param>
  11507. <param name=" index">The first index in the specified <see cref="T:System.Array" qualify="true" /> to receive the items.</param>
  11508. </member>
  11509. <member name="M:System.Web.UI.HtmlControls.HtmlTableCellCollection.Remove(System.Web.UI.HtmlControls.HtmlTableCell)">
  11510. <summary>
  11511. <para>Removes the specified <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> from the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCellCollection" />.</para>
  11512. </summary>
  11513. <param name="cell">The <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> to remove from the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCellCollection" />.</param>
  11514. </member>
  11515. <member name="M:System.Web.UI.HtmlControls.HtmlTableCellCollection.RemoveAt(System.Int32)">
  11516. <summary>
  11517. <para>Removes the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> at the specified index from the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCellCollection" />.</para>
  11518. </summary>
  11519. <param name="index">The index of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> to remove from the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCellCollection" />.</param>
  11520. </member>
  11521. <member name="P:System.Web.UI.HtmlControls.HtmlTableCellCollection.Count">
  11522. <summary>
  11523. <para>Gets the number of <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> objects in the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCellCollection" />.</para>
  11524. </summary>
  11525. </member>
  11526. <member name="P:System.Web.UI.HtmlControls.HtmlTableCellCollection.Item(System.Int32)">
  11527. <summary>
  11528. <para>Gets the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> at the specified index from the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCellCollection" />.</para>
  11529. </summary>
  11530. <param name="index">An ordinal index value that specifies the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> to return.</param>
  11531. </member>
  11532. <member name="P:System.Web.UI.HtmlControls.HtmlTableCellCollection.SyncRoot">
  11533. <summary>
  11534. <para>Gets the object that can be used to synchronize access
  11535. to the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCellCollection" />.</para>
  11536. </summary>
  11537. </member>
  11538. <member name="P:System.Web.UI.HtmlControls.HtmlTableCellCollection.IsReadOnly">
  11539. <summary>
  11540. <para>Gets a value indicating whether the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCellCollection" /> is read-only.</para>
  11541. </summary>
  11542. </member>
  11543. <member name="P:System.Web.UI.HtmlControls.HtmlTableCellCollection.IsSynchronized">
  11544. <summary>
  11545. <para>Gets a value indicating whether access to
  11546. the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCellCollection" /> is synchronized
  11547. (thread-safe).</para>
  11548. </summary>
  11549. </member>
  11550. <member name="T:System.Web.UI.HtmlControls.HtmlTableRow">
  11551. <summary>
  11552. <para>Represents the <see langword="&lt;tr&gt;" /> HTML element
  11553. in an <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> control.</para>
  11554. </summary>
  11555. </member>
  11556. <member name="M:System.Web.UI.HtmlControls.HtmlTableRow.#ctor">
  11557. <summary>
  11558. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> class.</para>
  11559. </summary>
  11560. </member>
  11561. <member name="P:System.Web.UI.HtmlControls.HtmlTableRow.Align">
  11562. <summary>
  11563. <para> Gets or sets the horizontal alignment of the content
  11564. in the cells of a row in an <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> control.</para>
  11565. </summary>
  11566. </member>
  11567. <member name="P:System.Web.UI.HtmlControls.HtmlTableRow.Cells">
  11568. <summary>
  11569. <para> Gets a collection of <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> objects that represent the cells contained in a row of
  11570. the <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> control.</para>
  11571. </summary>
  11572. </member>
  11573. <member name="P:System.Web.UI.HtmlControls.HtmlTableRow.BgColor">
  11574. <summary>
  11575. <para>Gets or sets the background color of the row represented by an instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" />
  11576. class.</para>
  11577. </summary>
  11578. </member>
  11579. <member name="P:System.Web.UI.HtmlControls.HtmlTableRow.BorderColor">
  11580. <summary>
  11581. <para>Gets or sets the border color of the row
  11582. represented by an instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> class.</para>
  11583. </summary>
  11584. </member>
  11585. <member name="P:System.Web.UI.HtmlControls.HtmlTableRow.Height">
  11586. <summary>
  11587. <para>Gets or sets the height (in pixels) of the row
  11588. represented by an instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> class.</para>
  11589. </summary>
  11590. </member>
  11591. <member name="P:System.Web.UI.HtmlControls.HtmlTableRow.InnerHtml">
  11592. <summary>
  11593. <para>Gets or sets the content between the opening and closing tags of the control without automatically converting
  11594. special characters to their equivalent HTML entities. This property is
  11595. not supported for this control.</para>
  11596. </summary>
  11597. </member>
  11598. <member name="P:System.Web.UI.HtmlControls.HtmlTableRow.InnerText">
  11599. <summary>
  11600. <para>Gets or sets the content between the opening and closing tags of the control with automatic conversion
  11601. of special characters to their equivalent HTML entities. This
  11602. property is not supported for this control.</para>
  11603. </summary>
  11604. </member>
  11605. <member name="P:System.Web.UI.HtmlControls.HtmlTableRow.VAlign">
  11606. <summary>
  11607. <para> Gets or sets the vertical alignment
  11608. of the content in the cells of a row in an <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> control.</para>
  11609. </summary>
  11610. </member>
  11611. <member name="M:System.Web.UI.HtmlControls.HtmlTableRow.HtmlTableCellControlCollection.Add(System.Web.UI.Control)">
  11612. <summary>
  11613. <para>[To be supplied.]</para>
  11614. </summary>
  11615. </member>
  11616. <member name="M:System.Web.UI.HtmlControls.HtmlTableRow.HtmlTableCellControlCollection.AddAt(System.Int32,System.Web.UI.Control)">
  11617. <summary>
  11618. <para>Adds the specified <see cref="T:System.Web.UI.Control" /> object to the collection. The new control is added
  11619. to the array at the specified index location.</para>
  11620. </summary>
  11621. <param name=" index">The location in the array to add the child control.</param>
  11622. <param name="child">The <see cref="T:System.Web.UI.Control" /> object to add to the collection.</param>
  11623. </member>
  11624. <member name="T:System.Web.UI.HtmlControls.HtmlTableRowCollection">
  11625. <summary>
  11626. <para>A collection of <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> objects that
  11627. represent the rows of an <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> control. This class
  11628. cannot
  11629. be inherited.</para>
  11630. </summary>
  11631. </member>
  11632. <member name="M:System.Web.UI.HtmlControls.HtmlTableRowCollection.Add(System.Web.UI.HtmlControls.HtmlTableRow)">
  11633. <summary>
  11634. <para>Appends the specified <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> to the end of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" />.</para>
  11635. </summary>
  11636. <param name="row">The <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> to add to the collection.</param>
  11637. </member>
  11638. <member name="M:System.Web.UI.HtmlControls.HtmlTableRowCollection.Insert(System.Int32,System.Web.UI.HtmlControls.HtmlTableRow)">
  11639. <summary>
  11640. <para>Adds an <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> to the specified
  11641. location in the collection.</para>
  11642. </summary>
  11643. <param name="index">
  11644. <para>The location in the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" /> at which to add the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" />.</para>
  11645. </param>
  11646. <param name=" row">The <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> to add to the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" />.</param>
  11647. </member>
  11648. <member name="M:System.Web.UI.HtmlControls.HtmlTableRowCollection.Clear">
  11649. <summary>
  11650. <para>Removes all <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> objects from the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" />.</para>
  11651. </summary>
  11652. </member>
  11653. <member name="M:System.Web.UI.HtmlControls.HtmlTableRowCollection.CopyTo(System.Array,System.Int32)">
  11654. <summary>
  11655. <para>Copies the items from the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" /> to the specified <see cref="T:System.Array" qualify="true" />, starting at the specified
  11656. index in the array.</para>
  11657. </summary>
  11658. <param name="array">A zero-based <see cref="T:System.Array" qualify="true" /> that receives the copied items from the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" />.</param>
  11659. <param name=" index">The first index in the specified array to receive the items.</param>
  11660. </member>
  11661. <member name="M:System.Web.UI.HtmlControls.HtmlTableRowCollection.GetEnumerator">
  11662. <summary>
  11663. <para>Returns a <see cref="T:System.Collections.IEnumerator" qualify="true" /> implemented object that contains all <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> objects in the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" />.</para>
  11664. </summary>
  11665. <returns>
  11666. <para> A <see cref="T:System.Collections.IEnumerator" qualify="true" /> implemented object that contains all <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> objects in the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" />.</para>
  11667. </returns>
  11668. </member>
  11669. <member name="M:System.Web.UI.HtmlControls.HtmlTableRowCollection.Remove(System.Web.UI.HtmlControls.HtmlTableRow)">
  11670. <summary>
  11671. <para>Removes the specified <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> from the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" />.</para>
  11672. </summary>
  11673. <param name="row">The <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> to remove from the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" />.</param>
  11674. </member>
  11675. <member name="M:System.Web.UI.HtmlControls.HtmlTableRowCollection.RemoveAt(System.Int32)">
  11676. <summary>
  11677. <para>Removes the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> at the specified index from the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" />.</para>
  11678. </summary>
  11679. <param name="index">The index of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> to remove from the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" />.</param>
  11680. </member>
  11681. <member name="P:System.Web.UI.HtmlControls.HtmlTableRowCollection.Count">
  11682. <summary>
  11683. <para>Gets the number of <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> objects in the
  11684. <see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" />.</para>
  11685. </summary>
  11686. </member>
  11687. <member name="P:System.Web.UI.HtmlControls.HtmlTableRowCollection.Item(System.Int32)">
  11688. <summary>
  11689. <para>Gets the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> at the specified index from the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" />.</para>
  11690. </summary>
  11691. <param name="index">An ordinal index value that specifies the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> to return.</param>
  11692. </member>
  11693. <member name="P:System.Web.UI.HtmlControls.HtmlTableRowCollection.SyncRoot">
  11694. <summary>
  11695. <para>Gets the object that can be used to synchronize access
  11696. to the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" />.</para>
  11697. </summary>
  11698. </member>
  11699. <member name="P:System.Web.UI.HtmlControls.HtmlTableRowCollection.IsReadOnly">
  11700. <summary>
  11701. <para>Gets a value indicating whether the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" /> is read-only.</para>
  11702. </summary>
  11703. </member>
  11704. <member name="P:System.Web.UI.HtmlControls.HtmlTableRowCollection.IsSynchronized">
  11705. <summary>
  11706. <para>Gets a value indicating whether access to
  11707. the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" /> is synchronized
  11708. (thread-safe).</para>
  11709. </summary>
  11710. </member>
  11711. <member name="T:System.Web.UI.HtmlControls.HtmlTextArea">
  11712. <summary>
  11713. <para> Allows
  11714. programmatic access to the <see langword="&lt;textarea&gt;" /> HTML
  11715. element on the server.</para>
  11716. </summary>
  11717. </member>
  11718. <member name="M:System.Web.UI.HtmlControls.HtmlTextArea.#ctor">
  11719. <summary>
  11720. <para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTextArea" /> class.</para>
  11721. </summary>
  11722. </member>
  11723. <member name="M:System.Web.UI.HtmlControls.HtmlTextArea.OnServerChange(System.EventArgs)">
  11724. <summary>
  11725. <para>Raises the <see cref="E:System.Web.UI.HtmlControls.HtmlTextArea.ServerChange" /> event of the <see cref="T:System.Web.UI.HtmlControls.HtmlTextArea" /> control. This allows you to provide
  11726. a custom handler for the
  11727. event.</para>
  11728. </summary>
  11729. <param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains the event data. </param>
  11730. </member>
  11731. <member name="P:System.Web.UI.HtmlControls.HtmlTextArea.Cols">
  11732. <summary>
  11733. <para> Gets or sets the width (in characters) of the
  11734. <see cref="T:System.Web.UI.HtmlControls.HtmlTextArea" />
  11735. control.</para>
  11736. </summary>
  11737. </member>
  11738. <member name="P:System.Web.UI.HtmlControls.HtmlTextArea.Name">
  11739. <summary>
  11740. <para> Gets or sets the unique identifier name for the <see cref="T:System.Web.UI.HtmlControls.HtmlTextArea" /> control.</para>
  11741. </summary>
  11742. </member>
  11743. <member name="P:System.Web.UI.HtmlControls.HtmlTextArea.Rows">
  11744. <summary>
  11745. <para> Gets or sets the height (in characters) of the
  11746. <see cref="T:System.Web.UI.HtmlControls.HtmlTextArea" />
  11747. control.</para>
  11748. </summary>
  11749. </member>
  11750. <member name="P:System.Web.UI.HtmlControls.HtmlTextArea.Value">
  11751. <summary>
  11752. <para>Gets or sets the text entered in the
  11753. <see cref="T:System.Web.UI.HtmlControls.HtmlTextArea" /> control.</para>
  11754. </summary>
  11755. </member>
  11756. <member name="E:System.Web.UI.HtmlControls.HtmlTextArea.ServerChange">
  11757. <summary>
  11758. <para>Occurs when the content of the <see cref="T:System.Web.UI.HtmlControls.HtmlTextArea" /> control changes between posts to
  11759. the server.</para>
  11760. </summary>
  11761. </member>
  11762. <member name="T:System.Web.UI.WebControls.AdCreatedEventArgs">
  11763. <summary>
  11764. <para>Provides data for the <see cref="E:System.Web.UI.WebControls.AdRotator.AdCreated" /> event of the <see cref="T:System.Web.UI.WebControls.AdRotator" /> control. This class cannot be
  11765. inherited.</para>
  11766. </summary>
  11767. </member>
  11768. <member name="M:System.Web.UI.WebControls.AdCreatedEventArgs.#ctor(System.Collections.IDictionary)">
  11769. <summary>
  11770. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.AdCreatedEventArgs" />
  11771. class.</para>
  11772. </summary>
  11773. <param name="adProperties">A <see cref="T:System.Collections.IDictionary" qualify="true" /> containing the advertisement properties from the XML file.</param>
  11774. </member>
  11775. <member name="P:System.Web.UI.WebControls.AdCreatedEventArgs.AdProperties">
  11776. <summary>
  11777. <para>Gets a <see cref="T:System.Collections.IDictionary" qualify="true" /> object that contains all the
  11778. advertisement properties for the currently displayed advertisement.</para>
  11779. </summary>
  11780. </member>
  11781. <member name="P:System.Web.UI.WebControls.AdCreatedEventArgs.AlternateText">
  11782. <summary>
  11783. <para> Gets or sets the
  11784. alternate text displayed in the <see cref="T:System.Web.UI.WebControls.AdRotator" />
  11785. control when the advertisement
  11786. image is unavailable. Browsers that support the ToolTips feature display this text as a ToolTip for the advertisement.</para>
  11787. </summary>
  11788. </member>
  11789. <member name="P:System.Web.UI.WebControls.AdCreatedEventArgs.ImageUrl">
  11790. <summary>
  11791. <para> Gets or sets the URL of an image to display in the <see cref="T:System.Web.UI.WebControls.AdRotator" /> control.</para>
  11792. </summary>
  11793. </member>
  11794. <member name="P:System.Web.UI.WebControls.AdCreatedEventArgs.NavigateUrl">
  11795. <summary>
  11796. <para> Gets or sets the Web page to display when the
  11797. <see cref="T:System.Web.UI.WebControls.AdRotator" />
  11798. control is clicked.</para>
  11799. </summary>
  11800. </member>
  11801. <member name="T:System.Web.UI.WebControls.AdCreatedEventHandler">
  11802. <summary>
  11803. <para>Represents the method that will handle the <see cref="E:System.Web.UI.WebControls.AdRotator.AdCreated" /> event of an <see cref="T:System.Web.UI.WebControls.AdRotator" />
  11804. control.</para>
  11805. </summary>
  11806. <param name="sender">The source of the event.</param>
  11807. <param name="e">An <see cref="T:System.Web.UI.WebControls.AdCreatedEventArgs" /> that contains the event data.</param>
  11808. </member>
  11809. <member name="T:System.Web.UI.WebControls.AdRotator">
  11810. <summary>
  11811. <para> Displays an advertisement banner on a Web page.</para>
  11812. </summary>
  11813. </member>
  11814. <member name="T:System.Web.UI.WebControls.WebControl">
  11815. <summary>
  11816. <para> Serves as the base class that defines the methods,
  11817. properties and events common to all controls in the <see cref="N:System.Web.UI.WebControls" />
  11818. namespace.</para>
  11819. </summary>
  11820. </member>
  11821. <member name="M:System.Web.UI.WebControls.WebControl.#ctor">
  11822. <summary>
  11823. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.WebControl" /> class that represents a
  11824. <see langword="Span" /> HTML
  11825. tag.</para>
  11826. </summary>
  11827. </member>
  11828. <member name="M:System.Web.UI.WebControls.WebControl.#ctor(System.Web.UI.HtmlTextWriterTag)">
  11829. <summary>
  11830. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.WebControl" /> class using the specified HTML tag.</para>
  11831. </summary>
  11832. <param name="tag">One of the <see cref="T:System.Web.UI.HtmlTextWriterTag" qualify="true" /> values.</param>
  11833. </member>
  11834. <member name="M:System.Web.UI.WebControls.WebControl.#ctor(System.String)">
  11835. <summary>
  11836. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.WebControl" /> class using the specified HTML tag.</para>
  11837. </summary>
  11838. <param name="tag">An HTML tag.</param>
  11839. </member>
  11840. <member name="M:System.Web.UI.WebControls.WebControl.AddAttributesToRender(System.Web.UI.HtmlTextWriter)">
  11841. <summary>
  11842. <para> Adds HTML attributes and styles that need to be rendered
  11843. to the specified <see cref="T:System.Web.UI.HtmlTextWriter" qualify="true" />. This method is used primarily by control
  11844. developers.</para>
  11845. </summary>
  11846. <param name="writer">A <see cref="T:System.Web.UI.HtmlTextWriter" qualify="true" /> that represents the output stream to render HTML content on the client.</param>
  11847. </member>
  11848. <member name="M:System.Web.UI.WebControls.WebControl.ApplyStyle(System.Web.UI.WebControls.Style)">
  11849. <summary>
  11850. <para> Copies any nonblank elements of the specified style to the Web control, overwriting any existing style elements of the
  11851. control. This method is primarily used by control developers.</para>
  11852. </summary>
  11853. <param name="s">A <see cref="T:System.Web.UI.WebControls.Style" /> that represents the style to be copied.</param>
  11854. </member>
  11855. <member name="M:System.Web.UI.WebControls.WebControl.CopyBaseAttributes(System.Web.UI.WebControls.WebControl)">
  11856. <summary>
  11857. <para>Copies the properties
  11858. not encapsulated by the <see cref="P:System.Web.UI.WebControls.WebControl.Style" /> object from the
  11859. specified Web server control to the Web server control that this method is
  11860. called from. This
  11861. method is used primarily by control developers.</para>
  11862. </summary>
  11863. <param name="controlSrc">A <see cref="T:System.Web.UI.WebControls.WebControl" /> that represents the source control with properties to be copied to the Web server control that this method is called from.</param>
  11864. </member>
  11865. <member name="M:System.Web.UI.WebControls.WebControl.CreateControlStyle">
  11866. <summary>
  11867. <para> Creates the style object that is used internally by the
  11868. <see cref="T:System.Web.UI.WebControls.WebControl" />
  11869. class to implement all style related properties. This method is used primarily
  11870. by control developers.</para>
  11871. </summary>
  11872. <returns>
  11873. <para>A <see cref="T:System.Web.UI.WebControls.Style" /> that is used
  11874. to implement all style-related properties of the control.</para>
  11875. </returns>
  11876. </member>
  11877. <member name="M:System.Web.UI.WebControls.WebControl.MergeStyle(System.Web.UI.WebControls.Style)">
  11878. <summary>
  11879. <para> Copies any nonblank elements of the specified style to the Web control, but will not overwrite any existing style elements
  11880. of the control. This method is used primarily by control developers.</para>
  11881. </summary>
  11882. <param name="s">A <see cref="T:System.Web.UI.WebControls.Style" /> that represents the style to be copied.</param>
  11883. </member>
  11884. <member name="M:System.Web.UI.WebControls.WebControl.RenderBeginTag(System.Web.UI.HtmlTextWriter)">
  11885. <summary>
  11886. <para> Renders the HTML opening tag of the control into the
  11887. specified writer. This method is used primarily by control developers.</para>
  11888. </summary>
  11889. <param name="writer">A <see cref="T:System.Web.UI.HtmlTextWriter" qualify="true" /> that represents the output stream to render HTML content on the client.</param>
  11890. </member>
  11891. <member name="M:System.Web.UI.WebControls.WebControl.RenderEndTag(System.Web.UI.HtmlTextWriter)">
  11892. <summary>
  11893. <para>Renders the HTML closing tag of the control into the
  11894. specified writer. This method is used primarily by control developers.</para>
  11895. </summary>
  11896. <param name="writer">A <see cref="T:System.Web.UI.HtmlTextWriter" qualify="true" /> that represents the output stream to render HTML content on the client.</param>
  11897. </member>
  11898. <member name="M:System.Web.UI.WebControls.WebControl.RenderContents(System.Web.UI.HtmlTextWriter)">
  11899. <summary>
  11900. <para>Renders the contents of the control into the specified writer. This method is used primarily by control developers.</para>
  11901. </summary>
  11902. <param name="writer">A <see cref="T:System.Web.UI.HtmlTextWriter" qualify="true" /> that represents the output stream to render HTML content on the client.</param>
  11903. </member>
  11904. <member name="P:System.Web.UI.WebControls.WebControl.AccessKey">
  11905. <summary>
  11906. <para>Gets or sets the access key (underlined letter) that allows you to quickly navigate to the Web
  11907. server control.</para>
  11908. </summary>
  11909. </member>
  11910. <member name="P:System.Web.UI.WebControls.WebControl.Attributes">
  11911. <summary>
  11912. <para> Gets the collection of arbitrary attributes (for rendering only) that
  11913. do not correspond to properties on the control.</para>
  11914. </summary>
  11915. </member>
  11916. <member name="P:System.Web.UI.WebControls.WebControl.BackColor">
  11917. <summary>
  11918. <para>Gets or sets the background color of the Web server control.</para>
  11919. </summary>
  11920. </member>
  11921. <member name="P:System.Web.UI.WebControls.WebControl.BorderColor">
  11922. <summary>
  11923. <para>Gets or sets the border color of the Web control.</para>
  11924. </summary>
  11925. </member>
  11926. <member name="P:System.Web.UI.WebControls.WebControl.BorderWidth">
  11927. <summary>
  11928. <para>Gets or sets the border width of the Web server control.</para>
  11929. </summary>
  11930. </member>
  11931. <member name="P:System.Web.UI.WebControls.WebControl.BorderStyle">
  11932. <summary>
  11933. <para>Gets or sets the border style of the Web server control.</para>
  11934. </summary>
  11935. </member>
  11936. <member name="P:System.Web.UI.WebControls.WebControl.ControlStyle">
  11937. <summary>
  11938. <para>Gets the style of the Web server control. This property is
  11939. used primarily by control developers.</para>
  11940. </summary>
  11941. </member>
  11942. <member name="P:System.Web.UI.WebControls.WebControl.ControlStyleCreated">
  11943. <summary>
  11944. <para>Gets a value indicating whether a <see cref="T:System.Web.UI.WebControls.Style" />
  11945. object has been created for the <see cref="P:System.Web.UI.WebControls.WebControl.ControlStyle" /> property. This property is
  11946. primarily used by control developers. </para>
  11947. </summary>
  11948. </member>
  11949. <member name="P:System.Web.UI.WebControls.WebControl.CssClass">
  11950. <summary>
  11951. <para>Gets or sets the Cascading Style Sheet (CSS) class rendered by the Web server control on the client.</para>
  11952. </summary>
  11953. </member>
  11954. <member name="P:System.Web.UI.WebControls.WebControl.Style">
  11955. <summary>
  11956. <para> Gets a collection of text attributes that will be rendered as a style attribute
  11957. on the outer tag of the Web server control.</para>
  11958. </summary>
  11959. </member>
  11960. <member name="P:System.Web.UI.WebControls.WebControl.Enabled">
  11961. <summary>
  11962. <para>Gets or sets a value indicating whether the Web server control is enabled.</para>
  11963. </summary>
  11964. </member>
  11965. <member name="P:System.Web.UI.WebControls.WebControl.Font">
  11966. <summary>
  11967. <para>Gets the font properties associated with the Web sServer control.</para>
  11968. </summary>
  11969. </member>
  11970. <member name="P:System.Web.UI.WebControls.WebControl.ForeColor">
  11971. <summary>
  11972. <para>Gets or sets the foreground color (typically the color of the text) of the Web
  11973. server control.</para>
  11974. </summary>
  11975. </member>
  11976. <member name="P:System.Web.UI.WebControls.WebControl.Height">
  11977. <summary>
  11978. <para>Gets or sets the height of the Web server control.</para>
  11979. </summary>
  11980. </member>
  11981. <member name="P:System.Web.UI.WebControls.WebControl.TabIndex">
  11982. <summary>
  11983. <para> Gets or
  11984. sets the tab index of the Web server control.</para>
  11985. </summary>
  11986. </member>
  11987. <member name="P:System.Web.UI.WebControls.WebControl.TagKey">
  11988. <summary>
  11989. <para>Gets the <see cref="T:System.Web.UI.HtmlTextWriterTag" qualify="true" /> value
  11990. that corresponds to this Web server control. This property is used primarily
  11991. by control developers.</para>
  11992. </summary>
  11993. </member>
  11994. <member name="P:System.Web.UI.WebControls.WebControl.TagName">
  11995. <summary>
  11996. <para> Gets the name of the control tag. This property is used primarily by control developers.</para>
  11997. </summary>
  11998. </member>
  11999. <member name="P:System.Web.UI.WebControls.WebControl.ToolTip">
  12000. <summary>
  12001. <para> Gets or sets the text displayed when the mouse pointer hovers
  12002. over the Web server control.</para>
  12003. </summary>
  12004. </member>
  12005. <member name="P:System.Web.UI.WebControls.WebControl.Width">
  12006. <summary>
  12007. <para>Gets or sets the width of the Web server control.</para>
  12008. </summary>
  12009. </member>
  12010. <member name="M:System.Web.UI.WebControls.AdRotator.#ctor">
  12011. <summary>
  12012. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.AdRotator" /> class.</para>
  12013. </summary>
  12014. </member>
  12015. <member name="M:System.Web.UI.WebControls.AdRotator.OnAdCreated(System.Web.UI.WebControls.AdCreatedEventArgs)">
  12016. <summary>
  12017. <para>Raises the <see cref="E:System.Web.UI.WebControls.AdRotator.AdCreated" /> event for the <see cref="T:System.Web.UI.WebControls.AdRotator" /> control.</para>
  12018. </summary>
  12019. <param name="e">An <see cref="T:System.Web.UI.WebControls.AdCreatedEventArgs" /> that contains event data.</param>
  12020. </member>
  12021. <member name="P:System.Web.UI.WebControls.AdRotator.AdvertisementFile">
  12022. <summary>
  12023. <para>Gets or sets the path to an XML file that contains advertisement information.</para>
  12024. </summary>
  12025. </member>
  12026. <member name="P:System.Web.UI.WebControls.AdRotator.KeywordFilter">
  12027. <summary>
  12028. <para> Gets or sets a category keyword to filter for specific types of advertisements in the XML advertisement file.</para>
  12029. </summary>
  12030. </member>
  12031. <member name="P:System.Web.UI.WebControls.AdRotator.Target">
  12032. <summary>
  12033. <para> Gets or sets the name of the browser window or frame that
  12034. displays the contents of the Web page linked to when the <see cref="T:System.Web.UI.WebControls.AdRotator" />
  12035. control is clicked.</para>
  12036. </summary>
  12037. </member>
  12038. <member name="E:System.Web.UI.WebControls.AdRotator.AdCreated">
  12039. <summary>
  12040. <para>Occurs once per round trip to the server after the creation of the control,
  12041. but before the page is rendered. </para>
  12042. </summary>
  12043. </member>
  12044. <member name="M:System.Web.UI.WebControls.AdRotator.AdRec.Initialize(System.Collections.IDictionary)">
  12045. <summary>
  12046. Initialize the stuct based on a dictionary containing the advertisement properties
  12047. </summary>
  12048. </member>
  12049. <member name="T:System.Web.UI.WebControls.BaseCompareValidator">
  12050. <summary>
  12051. <para> Serves as the abstract base
  12052. class for validation controls that perform typed comparisons.</para>
  12053. </summary>
  12054. </member>
  12055. <member name="T:System.Web.UI.WebControls.BaseValidator">
  12056. <summary>
  12057. <para> Serves as the abstract base
  12058. class for validation controls.</para>
  12059. </summary>
  12060. </member>
  12061. <member name="T:System.Web.UI.WebControls.Label">
  12062. <summary>
  12063. <para> Represents a label control, which displays text on a Web
  12064. page.</para>
  12065. </summary>
  12066. </member>
  12067. <member name="M:System.Web.UI.WebControls.Label.#ctor">
  12068. <summary>
  12069. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Label" />
  12070. class.</para>
  12071. </summary>
  12072. </member>
  12073. <member name="P:System.Web.UI.WebControls.Label.Text">
  12074. <summary>
  12075. <para>Gets or sets the text content of the <see cref="T:System.Web.UI.WebControls.Label" />
  12076. control.</para>
  12077. </summary>
  12078. </member>
  12079. <member name="M:System.Web.UI.WebControls.BaseValidator.#ctor">
  12080. <summary>
  12081. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.BaseValidator" /> class.</para>
  12082. </summary>
  12083. </member>
  12084. <member name="M:System.Web.UI.WebControls.BaseValidator.CheckControlValidationProperty(System.String,System.String)">
  12085. <summary>
  12086. <para> Helper function that verifies whether the
  12087. specified control is on the
  12088. page and contains validation properties.</para>
  12089. </summary>
  12090. <param name="name">The control to verify.</param>
  12091. <param name=" propertyName">Provides additional text to describe the source of the exception, if an exception is thrown from using this method. </param>
  12092. </member>
  12093. <member name="M:System.Web.UI.WebControls.BaseValidator.ControlPropertiesValid">
  12094. <summary>
  12095. <para>Helper function that determines whether the control specified by the <see cref="P:System.Web.UI.WebControls.BaseValidator.ControlToValidate" /> property is a
  12096. valid control.</para>
  12097. </summary>
  12098. <returns>
  12099. <para>
  12100. <see langword="true " />if the
  12101. control specified by the <see cref="P:System.Web.UI.WebControls.BaseValidator.ControlToValidate" /> property is a valid control; otherwise,
  12102. <see langword="false" />.</para>
  12103. </returns>
  12104. </member>
  12105. <member name="M:System.Web.UI.WebControls.BaseValidator.EvaluateIsValid">
  12106. <summary>
  12107. <para> When overridden in a derived class, this method contains the code to determine
  12108. whether the value in the input
  12109. control is valid.</para>
  12110. </summary>
  12111. <returns>
  12112. <para>
  12113. <see langword="true" /> if the value
  12114. in the input control is valid; otherwise,
  12115. <see langword="false" />.</para>
  12116. </returns>
  12117. </member>
  12118. <member name="M:System.Web.UI.WebControls.BaseValidator.GetControlRenderID(System.String)">
  12119. <summary>
  12120. <para> Gets the client ID of the specified control.</para>
  12121. </summary>
  12122. <param name="name">The name of the control to get the client ID.</param>
  12123. <returns>
  12124. <para>The client ID of the specified control.</para>
  12125. </returns>
  12126. </member>
  12127. <member name="M:System.Web.UI.WebControls.BaseValidator.GetControlValidationValue(System.String)">
  12128. <summary>
  12129. <para> Gets the value associated with the specified input control.</para>
  12130. </summary>
  12131. <param name="name">The name of the input control to get the value from.</param>
  12132. <returns>
  12133. <para>The value associated with the specified input control.</para>
  12134. </returns>
  12135. </member>
  12136. <member name="M:System.Web.UI.WebControls.BaseValidator.GetValidationProperty(System.Object)">
  12137. <summary>
  12138. <para>Helper function to get the validation
  12139. property of a control (if it exists).</para>
  12140. </summary>
  12141. <param name="component">An <see cref="T:System.Object" qualify="true" /> that represents the control to get the validation property of.</param>
  12142. <returns>
  12143. <para>A <see cref="T:System.ComponentModel.PropertyDescriptor" qualify="true" /> that contains the
  12144. validation property of the control.</para>
  12145. </returns>
  12146. </member>
  12147. <member name="M:System.Web.UI.WebControls.BaseValidator.DetermineRenderUplevel">
  12148. <summary>
  12149. <para> Helper function that determines whether the validator control can be rendered
  12150. for an uplevel browser.</para>
  12151. </summary>
  12152. <returns>
  12153. <para>
  12154. <see langword="true" /> if the validator control can be rendered for an uplevel
  12155. browser; otherwise, <see langword="false" />.</para>
  12156. </returns>
  12157. </member>
  12158. <member name="M:System.Web.UI.WebControls.BaseValidator.RegisterValidatorCommonScript">
  12159. <summary>
  12160. <para> Registers code on the page for client-side validation.
  12161. </para>
  12162. </summary>
  12163. </member>
  12164. <member name="M:System.Web.UI.WebControls.BaseValidator.RegisterValidatorDeclaration">
  12165. <summary>
  12166. <para>Registers an ECMAScript array declaration using the array name, <see langword="Page_Validators" />.</para>
  12167. </summary>
  12168. </member>
  12169. <member name="M:System.Web.UI.WebControls.BaseValidator.Validate">
  12170. <summary>
  12171. <para>Performs validation on the associated input control and updates the <see cref="P:System.Web.UI.WebControls.BaseValidator.IsValid" /> property.</para>
  12172. </summary>
  12173. </member>
  12174. <member name="P:System.Web.UI.WebControls.BaseValidator.ForeColor">
  12175. <summary>
  12176. <para> Gets or sets the color of
  12177. the message displayed when validation fails.</para>
  12178. </summary>
  12179. </member>
  12180. <member name="P:System.Web.UI.WebControls.BaseValidator.ControlToValidate">
  12181. <summary>
  12182. <para>Gets or sets the input control to validate.</para>
  12183. </summary>
  12184. </member>
  12185. <member name="P:System.Web.UI.WebControls.BaseValidator.ErrorMessage">
  12186. <summary>
  12187. <para> Gets or sets the text for the error message.</para>
  12188. </summary>
  12189. </member>
  12190. <member name="P:System.Web.UI.WebControls.BaseValidator.EnableClientScript">
  12191. <summary>
  12192. <para>Gets or sets a value indicating whether client-side validation is enabled.</para>
  12193. </summary>
  12194. </member>
  12195. <member name="P:System.Web.UI.WebControls.BaseValidator.Enabled">
  12196. <summary>
  12197. <para> Gets or sets a value that indicates whether the validation control is
  12198. enabled.</para>
  12199. </summary>
  12200. </member>
  12201. <member name="P:System.Web.UI.WebControls.BaseValidator.IsValid">
  12202. <summary>
  12203. <para>Gets or sets a value that indicates whether the associated input control passes
  12204. validation.</para>
  12205. </summary>
  12206. </member>
  12207. <member name="P:System.Web.UI.WebControls.BaseValidator.PropertiesValid">
  12208. <summary>
  12209. <para> Gets a value that indicates whether the control
  12210. specified by the <see cref="P:System.Web.UI.WebControls.BaseValidator.ControlToValidate" /> property is a valid control.</para>
  12211. </summary>
  12212. </member>
  12213. <member name="P:System.Web.UI.WebControls.BaseValidator.RenderUplevel">
  12214. <summary>
  12215. <para> Gets a value that indicates whether the client's browser
  12216. supports uplevel rendering.</para>
  12217. </summary>
  12218. </member>
  12219. <member name="P:System.Web.UI.WebControls.BaseValidator.Display">
  12220. <summary>
  12221. <para>Gets or sets the display behavior of the error message in a
  12222. validation control.</para>
  12223. </summary>
  12224. </member>
  12225. <member name="M:System.Web.UI.WebControls.BaseCompareValidator.CanConvert(System.String,System.Web.UI.WebControls.ValidationDataType)">
  12226. <summary>
  12227. <para>Determines whether the specified string can be converted to the specified data type.</para>
  12228. </summary>
  12229. <param name="text"> The string to test. </param>
  12230. <param name=" type">One of the <see cref="T:System.Web.UI.WebControls.ValidationDataType" /> enumeration values.</param>
  12231. <returns>
  12232. <para>
  12233. <see langword="true" /> if the specified data string can
  12234. be converted to the specified data type; otherwise,
  12235. <see langword="false" />.</para>
  12236. </returns>
  12237. </member>
  12238. <member name="M:System.Web.UI.WebControls.BaseCompareValidator.GetFullYear(System.Int32)">
  12239. <summary>
  12240. <para>Generates the four-digit year representation of the specified two-digit year.</para>
  12241. </summary>
  12242. <param name="shortYear">A two-digit year.</param>
  12243. <returns>
  12244. <para>The four-digit year representation of the specified two-digit year.</para>
  12245. </returns>
  12246. </member>
  12247. <member name="P:System.Web.UI.WebControls.BaseCompareValidator.Type">
  12248. <summary>
  12249. <para> Gets or sets the data type that the values being compared
  12250. are converted to before the comparison is made.</para>
  12251. </summary>
  12252. </member>
  12253. <member name="P:System.Web.UI.WebControls.BaseCompareValidator.CutoffYear">
  12254. <summary>
  12255. <para>Gets the maximum year that can be represented by a two-digit year.</para>
  12256. </summary>
  12257. </member>
  12258. <member name="T:System.Web.UI.WebControls.BaseDataList">
  12259. <summary>
  12260. <para>Serves as the abstract base class for data listing controls, such as the <see cref="T:System.Web.UI.WebControls.DataList" /> and <see cref="T:System.Web.UI.WebControls.DataGrid" />. This class provides the methods and properties common to all data
  12261. listing controls.</para>
  12262. </summary>
  12263. </member>
  12264. <member name="M:System.Web.UI.WebControls.BaseDataList.#ctor">
  12265. <summary>
  12266. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.BaseDataList" /> class.</para>
  12267. </summary>
  12268. </member>
  12269. <member name="M:System.Web.UI.WebControls.BaseDataList.DataBind">
  12270. <summary>
  12271. <para> Binds the control and all its child controls to the
  12272. data source specified by the <see cref="P:System.Web.UI.WebControls.BaseDataList.DataSource" />
  12273. property.</para>
  12274. </summary>
  12275. </member>
  12276. <member name="M:System.Web.UI.WebControls.BaseDataList.IsBindableType(System.Type)">
  12277. <summary>
  12278. <para>Determines whether the specified data type is bindable to a list control that derives from the
  12279. <see cref="T:System.Web.UI.WebControls.BaseDataList" /> class.</para>
  12280. </summary>
  12281. <param name="type">A <see cref="T:System.Type" qualify="true" /> object that contains the data type to test.</param>
  12282. <returns>
  12283. <para>
  12284. <see langword="true " />if the
  12285. specified data type is bindable to a list control that derives from the <see cref="T:System.Web.UI.WebControls.BaseDataList" /> class; otherwise, <see langword="false" />.</para>
  12286. </returns>
  12287. </member>
  12288. <member name="M:System.Web.UI.WebControls.BaseDataList.OnSelectedIndexChanged(System.EventArgs)">
  12289. <summary>
  12290. <para>Raises the <see cref="E:System.Web.UI.WebControls.BaseDataList.SelectedIndexChanged" /> event of a <see cref="T:System.Web.UI.WebControls.BaseDataList" />. This
  12291. allows you to create a custom handler for the event.</para>
  12292. </summary>
  12293. <param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains the event data.</param>
  12294. </member>
  12295. <member name="P:System.Web.UI.WebControls.BaseDataList.CellPadding">
  12296. <summary>
  12297. <para>Gets or sets the amount of space between the contents of a cell and the
  12298. cell's border.</para>
  12299. </summary>
  12300. </member>
  12301. <member name="P:System.Web.UI.WebControls.BaseDataList.CellSpacing">
  12302. <summary>
  12303. <para>Gets or sets the amount of space between cells.</para>
  12304. </summary>
  12305. </member>
  12306. <member name="P:System.Web.UI.WebControls.BaseDataList.Controls">
  12307. <summary>
  12308. <para>Gets a <see cref="T:System.Web.UI.ControlCollection" qualify="true" /> that contains
  12309. a collection of child controls in a data
  12310. listing control. </para>
  12311. </summary>
  12312. </member>
  12313. <member name="P:System.Web.UI.WebControls.BaseDataList.DataKeys">
  12314. <summary>
  12315. <para> Gets a <see cref="T:System.Web.UI.WebControls.DataKeyCollection" /> that stores the key values of each record (displayed
  12316. as a row) in a data listing control.</para>
  12317. </summary>
  12318. </member>
  12319. <member name="P:System.Web.UI.WebControls.BaseDataList.DataKeyField">
  12320. <summary>
  12321. <para> Gets or sets the key field in the data source specified by the <see cref="P:System.Web.UI.WebControls.BaseDataList.DataSource" /> property.</para>
  12322. </summary>
  12323. </member>
  12324. <member name="P:System.Web.UI.WebControls.BaseDataList.DataMember">
  12325. <summary>
  12326. <para> Gets or sets the specific data member in a multimember
  12327. data source to bind to a data listing
  12328. control.</para>
  12329. </summary>
  12330. </member>
  12331. <member name="P:System.Web.UI.WebControls.BaseDataList.DataSource">
  12332. <summary>
  12333. <para> Gets or sets the source containing a list of values used to populate
  12334. the items within the control.</para>
  12335. </summary>
  12336. </member>
  12337. <member name="P:System.Web.UI.WebControls.BaseDataList.GridLines">
  12338. <summary>
  12339. <para>Gets or sets a value that specifies whether the border between the cells of a data listing control is displayed.</para>
  12340. </summary>
  12341. </member>
  12342. <member name="P:System.Web.UI.WebControls.BaseDataList.HorizontalAlign">
  12343. <summary>
  12344. <para> Gets or sets the horizontal alignment of a data listing control within
  12345. its container.</para>
  12346. </summary>
  12347. </member>
  12348. <member name="E:System.Web.UI.WebControls.BaseDataList.SelectedIndexChanged">
  12349. <summary>
  12350. <para>Occurs when a different item is selected in a data listing control between posts to the server.</para>
  12351. </summary>
  12352. </member>
  12353. <member name="T:System.Web.UI.WebControls.BorderStyle">
  12354. <summary>
  12355. <para> Specifies the border style of a control.</para>
  12356. </summary>
  12357. </member>
  12358. <member name="F:System.Web.UI.WebControls.BorderStyle.NotSet">
  12359. <summary>
  12360. <para> No set border style.</para>
  12361. </summary>
  12362. </member>
  12363. <member name="F:System.Web.UI.WebControls.BorderStyle.None">
  12364. <summary>
  12365. <para> No border.</para>
  12366. </summary>
  12367. </member>
  12368. <member name="F:System.Web.UI.WebControls.BorderStyle.Dotted">
  12369. <summary>
  12370. <para> A dotted line border.</para>
  12371. </summary>
  12372. </member>
  12373. <member name="F:System.Web.UI.WebControls.BorderStyle.Dashed">
  12374. <summary>
  12375. <para> A dashed line border.</para>
  12376. </summary>
  12377. </member>
  12378. <member name="F:System.Web.UI.WebControls.BorderStyle.Solid">
  12379. <summary>
  12380. <para> A solid line border.</para>
  12381. </summary>
  12382. </member>
  12383. <member name="F:System.Web.UI.WebControls.BorderStyle.Double">
  12384. <summary>
  12385. <para> A double solid line border.</para>
  12386. </summary>
  12387. </member>
  12388. <member name="F:System.Web.UI.WebControls.BorderStyle.Groove">
  12389. <summary>
  12390. <para> A grooved border for a sunken border appearance.</para>
  12391. </summary>
  12392. </member>
  12393. <member name="F:System.Web.UI.WebControls.BorderStyle.Ridge">
  12394. <summary>
  12395. <para> A ridged border for a raised border appearance.</para>
  12396. </summary>
  12397. </member>
  12398. <member name="F:System.Web.UI.WebControls.BorderStyle.Inset">
  12399. <summary>
  12400. <para> An inset border for a sunken control appearance.</para>
  12401. </summary>
  12402. </member>
  12403. <member name="F:System.Web.UI.WebControls.BorderStyle.Outset">
  12404. <summary>
  12405. <para> An outset border for a raised control appearance.</para>
  12406. </summary>
  12407. </member>
  12408. <member name="T:System.Web.UI.WebControls.BoundColumn">
  12409. <summary>
  12410. <para>A column type for the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control that is bound to a field in a data
  12411. source.</para>
  12412. </summary>
  12413. </member>
  12414. <member name="T:System.Web.UI.WebControls.DataGridColumn">
  12415. <summary>
  12416. <para>Serves as the base class for the different column types of the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  12417. </summary>
  12418. </member>
  12419. <member name="M:System.Web.UI.WebControls.DataGridColumn.#ctor">
  12420. <summary>
  12421. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> class.</para>
  12422. </summary>
  12423. </member>
  12424. <member name="M:System.Web.UI.WebControls.DataGridColumn.Initialize">
  12425. <summary>
  12426. <para>Provides the base implementation to reset a column derived from the <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> class to its initial
  12427. state.</para>
  12428. </summary>
  12429. </member>
  12430. <member name="M:System.Web.UI.WebControls.DataGridColumn.InitializeCell(System.Web.UI.WebControls.TableCell,System.Int32,System.Web.UI.WebControls.ListItemType)">
  12431. <summary>
  12432. <para>Provides the base implementation to reset the specified
  12433. cell from a column derived from the <see cref="T:System.Web.UI.WebControls.DataGridColumn" />
  12434. class its
  12435. initial values.</para>
  12436. </summary>
  12437. <param name="cell">A <see cref="T:System.Web.UI.WebControls.TableCell" /> that represents the cell to reset.</param>
  12438. <param name=" columnIndex">The column number where the cell is located.</param>
  12439. <param name=" itemType">One of the <see cref="T:System.Web.UI.WebControls.ListItemType" /> values.</param>
  12440. </member>
  12441. <member name="M:System.Web.UI.WebControls.DataGridColumn.LoadViewState(System.Object)">
  12442. <summary>
  12443. <para>Loads the state of the <see cref="T:System.Web.UI.WebControls.DataGridColumn" />.</para>
  12444. </summary>
  12445. <param name="savedState">An <see cref="T:System.Object" qualify="true" /> that contains the saved state of the <see cref="T:System.Web.UI.WebControls.DataGridColumn" />.</param>
  12446. </member>
  12447. <member name="M:System.Web.UI.WebControls.DataGridColumn.TrackViewState">
  12448. <summary>
  12449. <para>Causes tracking of view-state changes to the server
  12450. control so they can be stored in the server control's <see cref="T:System.Web.UI.StateBag" qualify="true" />
  12451. object.</para>
  12452. </summary>
  12453. </member>
  12454. <member name="M:System.Web.UI.WebControls.DataGridColumn.OnColumnChanged">
  12455. <summary>
  12456. <para> Calls the <see cref="!:System.Web.UI.Design.WebControls.DataGridDesigner.OnColumnsChanged" qualify="true" /> method.</para>
  12457. </summary>
  12458. </member>
  12459. <member name="M:System.Web.UI.WebControls.DataGridColumn.SaveViewState">
  12460. <summary>
  12461. <para>Saves the current state of the <see cref="T:System.Web.UI.WebControls.DataGridColumn" />.</para>
  12462. </summary>
  12463. <returns>
  12464. <para>An <see cref="T:System.Object" qualify="true" /> that contains the saved state of the <see cref="T:System.Web.UI.WebControls.DataGridColumn" />.</para>
  12465. </returns>
  12466. </member>
  12467. <member name="P:System.Web.UI.WebControls.DataGridColumn.DesignMode">
  12468. <summary>
  12469. <para>Gets a value that indicates whether the column is in design mode.</para>
  12470. </summary>
  12471. </member>
  12472. <member name="P:System.Web.UI.WebControls.DataGridColumn.FooterStyle">
  12473. <summary>
  12474. <para>Gets the style properties for the footer section of the column.</para>
  12475. </summary>
  12476. </member>
  12477. <member name="P:System.Web.UI.WebControls.DataGridColumn.FooterText">
  12478. <summary>
  12479. <para> Gets or sets the text displayed in the footer section of
  12480. the column.</para>
  12481. </summary>
  12482. </member>
  12483. <member name="P:System.Web.UI.WebControls.DataGridColumn.HeaderImageUrl">
  12484. <summary>
  12485. <para>Gets or sets the location of an image to display
  12486. in the header section of the column.</para>
  12487. </summary>
  12488. </member>
  12489. <member name="P:System.Web.UI.WebControls.DataGridColumn.HeaderStyle">
  12490. <summary>
  12491. <para>Gets the style properties for the header section of the
  12492. column.</para>
  12493. </summary>
  12494. </member>
  12495. <member name="P:System.Web.UI.WebControls.DataGridColumn.HeaderText">
  12496. <summary>
  12497. <para>Gets or sets the text displayed in the header section of
  12498. the column.</para>
  12499. </summary>
  12500. </member>
  12501. <member name="P:System.Web.UI.WebControls.DataGridColumn.ItemStyle">
  12502. <summary>
  12503. <para>Gets the style properties for the item cells of the
  12504. column.</para>
  12505. </summary>
  12506. </member>
  12507. <member name="P:System.Web.UI.WebControls.DataGridColumn.Owner">
  12508. <summary>
  12509. <para>Gets the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control that the column is a member of.</para>
  12510. </summary>
  12511. </member>
  12512. <member name="P:System.Web.UI.WebControls.DataGridColumn.SortExpression">
  12513. <summary>
  12514. <para> Gets or sets the name of the field or expression to pass to
  12515. the <see cref="M:System.Web.UI.WebControls.DataGrid.OnSortCommand(System.Web.UI.WebControls.DataGridSortCommandEventArgs)" /> method when a column is selected
  12516. for
  12517. sorting.</para>
  12518. </summary>
  12519. </member>
  12520. <member name="P:System.Web.UI.WebControls.DataGridColumn.ViewState">
  12521. <summary>
  12522. <para>Gets the <see cref="T:System.Web.UI.StateBag" qualify="true" /> that allows a column derived from the <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> class to store its properties.</para>
  12523. </summary>
  12524. </member>
  12525. <member name="P:System.Web.UI.WebControls.DataGridColumn.Visible">
  12526. <summary>
  12527. <para>Gets or sets a value that indicates whether the column
  12528. is visible in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  12529. </summary>
  12530. </member>
  12531. <member name="F:System.Web.UI.WebControls.BoundColumn.thisExpr">
  12532. <summary>
  12533. <para> Represents the string "!". This field is read-only. </para>
  12534. </summary>
  12535. </member>
  12536. <member name="M:System.Web.UI.WebControls.BoundColumn.#ctor">
  12537. <summary>
  12538. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.BoundColumn" /> class.</para>
  12539. </summary>
  12540. </member>
  12541. <member name="M:System.Web.UI.WebControls.BoundColumn.FormatDataValue(System.Object)">
  12542. <summary>
  12543. <para>Converts the specified value to the format indicated by
  12544. the <see cref="P:System.Web.UI.WebControls.BoundColumn.DataFormatString" /> property.</para>
  12545. </summary>
  12546. <param name="dataValue">The value to format.</param>
  12547. <returns>
  12548. <para>The specified value converted to the format indicated by
  12549. the <see cref="P:System.Web.UI.WebControls.BoundColumn.DataFormatString" /> property.</para>
  12550. </returns>
  12551. </member>
  12552. <member name="M:System.Web.UI.WebControls.BoundColumn.Initialize">
  12553. <summary>
  12554. <para> Resets the <see cref="T:System.Web.UI.WebControls.BoundColumn" /> to its initial state.</para>
  12555. </summary>
  12556. </member>
  12557. <member name="M:System.Web.UI.WebControls.BoundColumn.InitializeCell(System.Web.UI.WebControls.TableCell,System.Int32,System.Web.UI.WebControls.ListItemType)">
  12558. <summary>
  12559. <para> Resets the specified cell in the <see cref="T:System.Web.UI.WebControls.BoundColumn" />
  12560. to its initial state.</para>
  12561. </summary>
  12562. <param name="cell">A <see cref="T:System.Web.UI.WebControls.TableCell" /> object that represents the cell to reset.</param>
  12563. <param name=" columnIndex">The column number where the cell is located.</param>
  12564. <param name=" itemType">One of the <see cref="T:System.Web.UI.WebControls.ListItemType" /> values.</param>
  12565. </member>
  12566. <member name="P:System.Web.UI.WebControls.BoundColumn.DataField">
  12567. <summary>
  12568. <para> Gets or sets the field name from the data source to
  12569. bind to the <see cref="T:System.Web.UI.WebControls.BoundColumn" />.</para>
  12570. </summary>
  12571. </member>
  12572. <member name="P:System.Web.UI.WebControls.BoundColumn.DataFormatString">
  12573. <summary>
  12574. <para>Gets or sets the string that specifies the display format for items in the
  12575. column.</para>
  12576. </summary>
  12577. </member>
  12578. <member name="P:System.Web.UI.WebControls.BoundColumn.ReadOnly">
  12579. <summary>
  12580. <para>Gets or sets a value that indicates whether the items
  12581. in the <see cref="T:System.Web.UI.WebControls.BoundColumn" />
  12582. can be edited.</para>
  12583. </summary>
  12584. </member>
  12585. <member name="T:System.Web.UI.WebControls.Button">
  12586. <summary>
  12587. <para>Displays a push button control on the Web page.</para>
  12588. </summary>
  12589. </member>
  12590. <member name="M:System.Web.UI.WebControls.Button.#ctor">
  12591. <summary>
  12592. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Button" /> class.</para>
  12593. </summary>
  12594. </member>
  12595. <member name="M:System.Web.UI.WebControls.Button.OnClick(System.EventArgs)">
  12596. <summary>
  12597. <para>Raises the <see cref="E:System.Web.UI.WebControls.Button.Click" /> event of the <see cref="T:System.Web.UI.WebControls.Button" /> control.</para>
  12598. </summary>
  12599. <param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains the event data.</param>
  12600. </member>
  12601. <member name="M:System.Web.UI.WebControls.Button.OnCommand(System.Web.UI.WebControls.CommandEventArgs)">
  12602. <summary>
  12603. <para>Raises the <see cref="E:System.Web.UI.WebControls.Button.Command" /> event of the <see cref="T:System.Web.UI.WebControls.Button" />
  12604. control.</para>
  12605. </summary>
  12606. <param name="e">A <see cref="T:System.Web.UI.WebControls.CommandEventArgs" /> that contains the event data.</param>
  12607. </member>
  12608. <member name="P:System.Web.UI.WebControls.Button.CommandName">
  12609. <summary>
  12610. <para>Gets or sets the command name associated with the <see cref="T:System.Web.UI.WebControls.Button" /> control that
  12611. is passed to the <see cref="E:System.Web.UI.WebControls.Button.Command" />
  12612. event.</para>
  12613. </summary>
  12614. </member>
  12615. <member name="P:System.Web.UI.WebControls.Button.CommandArgument">
  12616. <summary>
  12617. <para> Gets or sets an optional parameter passed to the <see cref="E:System.Web.UI.WebControls.Button.Command" />
  12618. event along with the associated <see cref="P:System.Web.UI.WebControls.Button.CommandName" />.</para>
  12619. </summary>
  12620. </member>
  12621. <member name="P:System.Web.UI.WebControls.Button.CausesValidation">
  12622. <summary>
  12623. <para>Gets or sets a value indicating whether validation is
  12624. performed when the <see cref="T:System.Web.UI.WebControls.Button" /> control is clicked.</para>
  12625. </summary>
  12626. </member>
  12627. <member name="P:System.Web.UI.WebControls.Button.Text">
  12628. <summary>
  12629. <para>Gets or sets the text caption displayed in the <see cref="T:System.Web.UI.WebControls.Button" /> control.</para>
  12630. </summary>
  12631. </member>
  12632. <member name="E:System.Web.UI.WebControls.Button.Click">
  12633. <summary>
  12634. <para>Occurs when the <see cref="T:System.Web.UI.WebControls.Button" /> control is clicked.</para>
  12635. </summary>
  12636. </member>
  12637. <member name="E:System.Web.UI.WebControls.Button.Command">
  12638. <summary>
  12639. <para>Occurs when the <see cref="T:System.Web.UI.WebControls.Button" /> control is clicked.</para>
  12640. </summary>
  12641. </member>
  12642. <member name="T:System.Web.UI.WebControls.ButtonColumn">
  12643. <summary>
  12644. <para>A column type for the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control that contains a user-defined command
  12645. button, such as <see langword="Add" /> or <see langword="Remove" />, that
  12646. corresponds with each row in the
  12647. column.</para>
  12648. </summary>
  12649. </member>
  12650. <member name="M:System.Web.UI.WebControls.ButtonColumn.#ctor">
  12651. <summary>
  12652. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.ButtonColumn" /> class.</para>
  12653. </summary>
  12654. </member>
  12655. <member name="M:System.Web.UI.WebControls.ButtonColumn.FormatDataTextValue(System.Object)">
  12656. <summary>
  12657. <para>Converts the specified value to the format indicated by the <see cref="P:System.Web.UI.WebControls.ButtonColumn.DataTextFormatString" /> property.</para>
  12658. </summary>
  12659. <param name="dataTextValue">The value to format.</param>
  12660. <returns>
  12661. <para>The specified value converted to the format indicated by
  12662. the <see cref="P:System.Web.UI.WebControls.ButtonColumn.DataTextFormatString" /> property.</para>
  12663. </returns>
  12664. </member>
  12665. <member name="M:System.Web.UI.WebControls.ButtonColumn.Initialize">
  12666. <summary>
  12667. <para>Resets the <see cref="T:System.Web.UI.WebControls.ButtonColumn" /> to its initial state.</para>
  12668. </summary>
  12669. </member>
  12670. <member name="M:System.Web.UI.WebControls.ButtonColumn.InitializeCell(System.Web.UI.WebControls.TableCell,System.Int32,System.Web.UI.WebControls.ListItemType)">
  12671. <summary>
  12672. <para> Resets a cell in the <see cref="T:System.Web.UI.WebControls.ButtonColumn" /> to its initial state.</para>
  12673. </summary>
  12674. <param name="cell">A <see cref="T:System.Web.UI.WebControls.TableCell" /> that represents the cell to reset.</param>
  12675. <param name=" columnIndex">The column number where the cell is located.</param>
  12676. <param name=" itemType">One of the <see cref="T:System.Web.UI.WebControls.ListItemType" /> values.</param>
  12677. </member>
  12678. <member name="P:System.Web.UI.WebControls.ButtonColumn.ButtonType">
  12679. <summary>
  12680. <para>Gets or sets the type of button to display in the
  12681. <see cref="T:System.Web.UI.WebControls.ButtonColumn" />
  12682. column.</para>
  12683. </summary>
  12684. </member>
  12685. <member name="P:System.Web.UI.WebControls.ButtonColumn.CommandName">
  12686. <summary>
  12687. <para>Gets or sets a string that represents the command to
  12688. perform when a button in the <see cref="T:System.Web.UI.WebControls.ButtonColumn" qualify="true" />
  12689. is clicked.</para>
  12690. </summary>
  12691. </member>
  12692. <member name="P:System.Web.UI.WebControls.ButtonColumn.DataTextField">
  12693. <summary>
  12694. <para>Gets or sets the field name from a data source to bind
  12695. to the <see cref="T:System.Web.UI.WebControls.ButtonColumn" />.</para>
  12696. </summary>
  12697. </member>
  12698. <member name="P:System.Web.UI.WebControls.ButtonColumn.DataTextFormatString">
  12699. <summary>
  12700. <para> Gets or sets the string that specifies
  12701. the display format for the caption in each command button.</para>
  12702. </summary>
  12703. </member>
  12704. <member name="P:System.Web.UI.WebControls.ButtonColumn.Text">
  12705. <summary>
  12706. <para>Gets or sets the caption displayed in the command
  12707. buttons of the <see cref="T:System.Web.UI.WebControls.ButtonColumn" />.</para>
  12708. </summary>
  12709. </member>
  12710. <member name="T:System.Web.UI.WebControls.ButtonColumnType">
  12711. <summary>
  12712. <para>Specifies the button type for the <see cref="T:System.Web.UI.WebControls.ButtonColumn" />
  12713. object.</para>
  12714. </summary>
  12715. </member>
  12716. <member name="F:System.Web.UI.WebControls.ButtonColumnType.LinkButton">
  12717. <summary>
  12718. <para>A column
  12719. of hyperlink style buttons.</para>
  12720. </summary>
  12721. </member>
  12722. <member name="F:System.Web.UI.WebControls.ButtonColumnType.PushButton">
  12723. <summary>
  12724. <para> A column of push buttons.</para>
  12725. </summary>
  12726. </member>
  12727. <member name="T:System.Web.UI.WebControls.Calendar">
  12728. <summary>
  12729. <para> Displays a single month calendar that allows the user to
  12730. select dates and move to the next or previous month.</para>
  12731. </summary>
  12732. </member>
  12733. <member name="M:System.Web.UI.WebControls.Calendar.#ctor">
  12734. <summary>
  12735. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Calendar" /> class.</para>
  12736. </summary>
  12737. </member>
  12738. <member name="M:System.Web.UI.WebControls.Calendar.OnDayRender(System.Web.UI.WebControls.TableCell,System.Web.UI.WebControls.CalendarDay)">
  12739. <summary>
  12740. <para>Raises the <see cref="E:System.Web.UI.WebControls.Calendar.DayRender" /> event of the <see cref="T:System.Web.UI.WebControls.Calendar" /> control
  12741. and allows you to provide a custom handler for the <see cref="E:System.Web.UI.WebControls.Calendar.DayRender" /> event.</para>
  12742. </summary>
  12743. <param name="cell">A <see cref="T:System.Web.UI.WebControls.TableCell" /> that contains information about the cell to render.</param>
  12744. <param name=" day">A <see cref="T:System.Web.UI.WebControls.CalendarDay" /> that contains information about the day to render.</param>
  12745. </member>
  12746. <member name="M:System.Web.UI.WebControls.Calendar.OnSelectionChanged">
  12747. <summary>
  12748. <para>Raises the <see cref="E:System.Web.UI.WebControls.Calendar.SelectionChanged" />event of the <see cref="T:System.Web.UI.WebControls.Calendar" /> control
  12749. and allows you to provide a
  12750. custom handler for the <see cref="E:System.Web.UI.WebControls.Calendar.SelectionChanged" /> event.</para>
  12751. </summary>
  12752. </member>
  12753. <member name="M:System.Web.UI.WebControls.Calendar.OnVisibleMonthChanged(System.DateTime,System.DateTime)">
  12754. <summary>
  12755. <para>Raises the <see cref="E:System.Web.UI.WebControls.Calendar.VisibleMonthChanged" />event of the <see cref="T:System.Web.UI.WebControls.Calendar" /> control
  12756. and allows you to provide a
  12757. custom handler for the <see cref="E:System.Web.UI.WebControls.Calendar.VisibleMonthChanged" />
  12758. event.</para>
  12759. </summary>
  12760. <param name="newDate">A <see cref="T:System.DateTime" qualify="true" /> object that represents the month currently displayed in the <see cref="T:System.Web.UI.WebControls.Calendar" /> control.</param>
  12761. <param name=" previousDate">A <see cref="T:System.DateTime" qualify="true" /> object that represents the previous month displayed by the <see cref="T:System.Web.UI.WebControls.Calendar" /> control.</param>
  12762. </member>
  12763. <member name="P:System.Web.UI.WebControls.Calendar.CellPadding">
  12764. <summary>
  12765. <para>Gets or sets the amount of space between the contents of a cell and the cell's border.</para>
  12766. </summary>
  12767. </member>
  12768. <member name="P:System.Web.UI.WebControls.Calendar.CellSpacing">
  12769. <summary>
  12770. <para> Gets or sets the amount
  12771. of space between cells.</para>
  12772. </summary>
  12773. </member>
  12774. <member name="P:System.Web.UI.WebControls.Calendar.DayHeaderStyle">
  12775. <summary>
  12776. <para> Gets the style properties for the section that displays the day of the week.</para>
  12777. </summary>
  12778. </member>
  12779. <member name="P:System.Web.UI.WebControls.Calendar.DayNameFormat">
  12780. <summary>
  12781. <para>Gets or sets the
  12782. name format of days of the week.</para>
  12783. </summary>
  12784. </member>
  12785. <member name="P:System.Web.UI.WebControls.Calendar.DayStyle">
  12786. <summary>
  12787. <para> Gets the style properties for the days in the displayed month.</para>
  12788. </summary>
  12789. </member>
  12790. <member name="P:System.Web.UI.WebControls.Calendar.FirstDayOfWeek">
  12791. <summary>
  12792. <para> Gets or sets the day of the week to display in the
  12793. first day column of the <see cref="T:System.Web.UI.WebControls.Calendar" />
  12794. control.</para>
  12795. </summary>
  12796. </member>
  12797. <member name="P:System.Web.UI.WebControls.Calendar.NextMonthText">
  12798. <summary>
  12799. <para>Gets or sets the text displayed for the next month
  12800. navigation control.</para>
  12801. </summary>
  12802. </member>
  12803. <member name="P:System.Web.UI.WebControls.Calendar.NextPrevFormat">
  12804. <summary>
  12805. <para>Gets or sets the format of the next and previous
  12806. month navigation elements in the title section of the <see cref="T:System.Web.UI.WebControls.Calendar" />
  12807. control.</para>
  12808. </summary>
  12809. </member>
  12810. <member name="P:System.Web.UI.WebControls.Calendar.NextPrevStyle">
  12811. <summary>
  12812. <para> Gets the style properties for the next and previous month navigation
  12813. elements.</para>
  12814. </summary>
  12815. </member>
  12816. <member name="P:System.Web.UI.WebControls.Calendar.OtherMonthDayStyle">
  12817. <summary>
  12818. <para>Gets the style properties for the days on the <see cref="T:System.Web.UI.WebControls.Calendar" /> control
  12819. that are not in the displayed month.</para>
  12820. </summary>
  12821. </member>
  12822. <member name="P:System.Web.UI.WebControls.Calendar.PrevMonthText">
  12823. <summary>
  12824. <para>Gets or sets the text displayed for the previous month navigation
  12825. control.</para>
  12826. </summary>
  12827. </member>
  12828. <member name="P:System.Web.UI.WebControls.Calendar.SelectedDate">
  12829. <summary>
  12830. <para> Gets or sets the selected
  12831. date.</para>
  12832. </summary>
  12833. </member>
  12834. <member name="P:System.Web.UI.WebControls.Calendar.SelectedDates">
  12835. <summary>
  12836. <para>Gets a collection of <see cref="T:System.DateTime" qualify="true" /> objects that represent the selected dates on the <see cref="T:System.Web.UI.WebControls.Calendar" />
  12837. control.</para>
  12838. </summary>
  12839. </member>
  12840. <member name="P:System.Web.UI.WebControls.Calendar.SelectedDayStyle">
  12841. <summary>
  12842. <para> Gets the style properties for the selected dates.</para>
  12843. </summary>
  12844. </member>
  12845. <member name="P:System.Web.UI.WebControls.Calendar.SelectionMode">
  12846. <summary>
  12847. <para> Gets or sets the date selection mode on the
  12848. <see cref="T:System.Web.UI.WebControls.Calendar" /> control that specifies
  12849. whether the user can select a single day, a week, or an entire month.</para>
  12850. </summary>
  12851. </member>
  12852. <member name="P:System.Web.UI.WebControls.Calendar.SelectMonthText">
  12853. <summary>
  12854. <para> Gets or sets the text displayed for the month
  12855. selection element in the selector column.</para>
  12856. </summary>
  12857. </member>
  12858. <member name="P:System.Web.UI.WebControls.Calendar.SelectorStyle">
  12859. <summary>
  12860. <para>Gets the style properties for the week and month
  12861. selector column.</para>
  12862. </summary>
  12863. </member>
  12864. <member name="P:System.Web.UI.WebControls.Calendar.SelectWeekText">
  12865. <summary>
  12866. <para> Gets or sets the text displayed for the week
  12867. selection element in the selector column.</para>
  12868. </summary>
  12869. </member>
  12870. <member name="P:System.Web.UI.WebControls.Calendar.ShowDayHeader">
  12871. <summary>
  12872. <para> Gets or sets a value
  12873. indicating whether the heading for the days of the week is displayed.</para>
  12874. </summary>
  12875. </member>
  12876. <member name="P:System.Web.UI.WebControls.Calendar.ShowGridLines">
  12877. <summary>
  12878. <para>Gets or sets a value indicating whether the days on the
  12879. <see cref="T:System.Web.UI.WebControls.Calendar" />
  12880. control are separated with grid lines.</para>
  12881. </summary>
  12882. </member>
  12883. <member name="P:System.Web.UI.WebControls.Calendar.ShowNextPrevMonth">
  12884. <summary>
  12885. <para>Gets or sets a value indicating whether the <see cref="T:System.Web.UI.WebControls.Calendar" /> control
  12886. displays the next and previous month navigation
  12887. elements in the title section.</para>
  12888. </summary>
  12889. </member>
  12890. <member name="P:System.Web.UI.WebControls.Calendar.ShowTitle">
  12891. <summary>
  12892. <para> Gets or
  12893. sets a value indicating whether the title section is displayed.</para>
  12894. </summary>
  12895. </member>
  12896. <member name="P:System.Web.UI.WebControls.Calendar.TitleFormat">
  12897. <summary>
  12898. <para> Gets or sets the title format for the title
  12899. section.</para>
  12900. </summary>
  12901. </member>
  12902. <member name="P:System.Web.UI.WebControls.Calendar.TitleStyle">
  12903. <summary>
  12904. <para>Gets the style properties of the title heading for the <see cref="T:System.Web.UI.WebControls.Calendar" />
  12905. control.</para>
  12906. </summary>
  12907. </member>
  12908. <member name="P:System.Web.UI.WebControls.Calendar.TodayDayStyle">
  12909. <summary>
  12910. <para>Gets the style properties for today's date on the
  12911. <see cref="T:System.Web.UI.WebControls.Calendar" />
  12912. control.</para>
  12913. </summary>
  12914. </member>
  12915. <member name="P:System.Web.UI.WebControls.Calendar.TodaysDate">
  12916. <summary>
  12917. <para> Gets or sets the value for today's date.</para>
  12918. </summary>
  12919. </member>
  12920. <member name="P:System.Web.UI.WebControls.Calendar.VisibleDate">
  12921. <summary>
  12922. <para>Gets or sets the date that specifies the month to
  12923. display on the <see cref="T:System.Web.UI.WebControls.Calendar" />
  12924. control.</para>
  12925. </summary>
  12926. </member>
  12927. <member name="P:System.Web.UI.WebControls.Calendar.WeekendDayStyle">
  12928. <summary>
  12929. <para>Gets the style properties for the weekend dates on the
  12930. <see cref="T:System.Web.UI.WebControls.Calendar" />
  12931. control.</para>
  12932. </summary>
  12933. </member>
  12934. <member name="E:System.Web.UI.WebControls.Calendar.DayRender">
  12935. <summary>
  12936. <para>Occurs when each day is created in the control hierarchy for the <see cref="T:System.Web.UI.WebControls.Calendar" />
  12937. control.</para>
  12938. </summary>
  12939. </member>
  12940. <member name="E:System.Web.UI.WebControls.Calendar.SelectionChanged">
  12941. <summary>
  12942. <para>Occurs when the user selects a day, a week, or an entire month by clicking the date selector controls. </para>
  12943. </summary>
  12944. </member>
  12945. <member name="E:System.Web.UI.WebControls.Calendar.VisibleMonthChanged">
  12946. <summary>
  12947. <para>Occurs when the user clicks on the next or previous
  12948. month navigation controls on the title heading.</para>
  12949. </summary>
  12950. </member>
  12951. <member name="T:System.Web.UI.WebControls.CalendarDay">
  12952. <summary>
  12953. <para> Represents a date in the <see cref="T:System.Web.UI.WebControls.Calendar" /> control.</para>
  12954. </summary>
  12955. </member>
  12956. <member name="M:System.Web.UI.WebControls.CalendarDay.#ctor(System.DateTime,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.String)">
  12957. <summary>
  12958. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.CalendarDay" /> class.</para>
  12959. </summary>
  12960. <param name="date">A <see cref="T:System.DateTime" qualify="true" /> object that contains the date represented by an instance of this class.</param>
  12961. <param name=" isWeekend">
  12962. <see langword="true" /> to indicate that the date represented by an instance of this class is either a Saturday or a Sunday; otherwise, <see langword="false" />.</param>
  12963. <param name=" isToday">
  12964. <see langword="true" /> to indicate that the date represented by an instance of this class is the current date; otherwise, <see langword="false" />.</param>
  12965. <param name=" isSelected">
  12966. <see langword="true" /> to indicate that the date represented by an instance of this class is selected on the <see cref="T:System.Web.UI.WebControls.Calendar" /> control; otherwise, <see langword="false" />.</param>
  12967. <param name=" isOtherMonth">
  12968. <see langword="true" /> to indicate that the date represented by an instance of this class is in a month other than the displayed month on the <see cref="T:System.Web.UI.WebControls.Calendar" /> control; otherwise, <see langword="false" />.</param>
  12969. <param name=" dayNumberText">The day number for the date represented by this class.</param>
  12970. </member>
  12971. <member name="P:System.Web.UI.WebControls.CalendarDay.Date">
  12972. <summary>
  12973. <para> Gets the date represented by an instance of this class. This
  12974. property is read-only.</para>
  12975. </summary>
  12976. </member>
  12977. <member name="P:System.Web.UI.WebControls.CalendarDay.DayNumberText">
  12978. <summary>
  12979. <para> Gets the string equivalent of the day number for the
  12980. date represented by an instance of the <see cref="T:System.Web.UI.WebControls.CalendarDay" /> class. This property is read-only.</para>
  12981. </summary>
  12982. </member>
  12983. <member name="P:System.Web.UI.WebControls.CalendarDay.IsOtherMonth">
  12984. <summary>
  12985. <para>Gets a value that indicates whether the date represented
  12986. by an instance of this class is in a month other than the month
  12987. displayed in the <see cref="T:System.Web.UI.WebControls.Calendar" />
  12988. control. This
  12989. property is read-only.</para>
  12990. </summary>
  12991. </member>
  12992. <member name="P:System.Web.UI.WebControls.CalendarDay.IsSelectable">
  12993. <summary>
  12994. <para>Gets or sets a value that indicates whether the date
  12995. represented by an instance of this class can be selected in the <see cref="T:System.Web.UI.WebControls.Calendar" />
  12996. control.</para>
  12997. </summary>
  12998. </member>
  12999. <member name="P:System.Web.UI.WebControls.CalendarDay.IsSelected">
  13000. <summary>
  13001. <para> Gets a value that indicates whether the date represented by
  13002. an instance of this class is selected in the <see cref="T:System.Web.UI.WebControls.Calendar" /> control. This property is read-only.</para>
  13003. </summary>
  13004. </member>
  13005. <member name="P:System.Web.UI.WebControls.CalendarDay.IsToday">
  13006. <summary>
  13007. <para>Gets a value that indicates whether the date represented by
  13008. an instance of this class is the same date specified by the <see cref="P:System.Web.UI.WebControls.Calendar.TodaysDate" /> property of the <see cref="T:System.Web.UI.WebControls.Calendar" /> control. This property is read-only.</para>
  13009. </summary>
  13010. </member>
  13011. <member name="P:System.Web.UI.WebControls.CalendarDay.IsWeekend">
  13012. <summary>
  13013. <para> Gets a value that indicates whether the date represented by an instance
  13014. of this class is a either Saturday or Sunday. This property is read-only.</para>
  13015. </summary>
  13016. </member>
  13017. <member name="T:System.Web.UI.WebControls.CalendarSelectionMode">
  13018. <summary>
  13019. <para> Specifies the date selection mode of the <see cref="T:System.Web.UI.WebControls.Calendar" />
  13020. control.</para>
  13021. </summary>
  13022. </member>
  13023. <member name="F:System.Web.UI.WebControls.CalendarSelectionMode.None">
  13024. <summary>
  13025. <para> No dates can be selected on the <see cref="T:System.Web.UI.WebControls.Calendar" /> control.</para>
  13026. </summary>
  13027. </member>
  13028. <member name="F:System.Web.UI.WebControls.CalendarSelectionMode.Day">
  13029. <summary>
  13030. <para> A single date can be
  13031. selected on the <see cref="T:System.Web.UI.WebControls.Calendar" />
  13032. control.</para>
  13033. </summary>
  13034. </member>
  13035. <member name="F:System.Web.UI.WebControls.CalendarSelectionMode.DayWeek">
  13036. <summary>
  13037. <para> A single date or
  13038. entire week can be selected on the <see cref="T:System.Web.UI.WebControls.Calendar" />
  13039. control.</para>
  13040. </summary>
  13041. </member>
  13042. <member name="F:System.Web.UI.WebControls.CalendarSelectionMode.DayWeekMonth">
  13043. <summary>
  13044. <para>
  13045. A single date, week, or entire month can be selected on the <see cref="T:System.Web.UI.WebControls.Calendar" />
  13046. control.</para>
  13047. </summary>
  13048. </member>
  13049. <member name="T:System.Web.UI.WebControls.CheckBox">
  13050. <summary>
  13051. <para> Displays a check box that allows the user to
  13052. select a <see langword="true" /> or <see langword="false" />
  13053. condition.</para>
  13054. </summary>
  13055. </member>
  13056. <member name="M:System.Web.UI.WebControls.CheckBox.#ctor">
  13057. <summary>
  13058. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.CheckBox" /> class.</para>
  13059. </summary>
  13060. </member>
  13061. <member name="M:System.Web.UI.WebControls.CheckBox.OnCheckedChanged(System.EventArgs)">
  13062. <summary>
  13063. <para> Raises the <see cref="E:System.Web.UI.WebControls.CheckBox.CheckedChanged" /> event of the <see cref="T:System.Web.UI.WebControls.CheckBox" /> control. This
  13064. allows you to handle the event
  13065. directly.</para>
  13066. </summary>
  13067. <param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains the event data.</param>
  13068. </member>
  13069. <member name="P:System.Web.UI.WebControls.CheckBox.AutoPostBack">
  13070. <summary>
  13071. <para>Gets or sets a value indicating whether the <see cref="T:System.Web.UI.WebControls.CheckBox" /> state
  13072. automatically posts back to the server
  13073. when
  13074. clicked.</para>
  13075. </summary>
  13076. </member>
  13077. <member name="P:System.Web.UI.WebControls.CheckBox.Checked">
  13078. <summary>
  13079. <para> Gets or sets a value indicating whether the
  13080. <see cref="T:System.Web.UI.WebControls.CheckBox" /> control
  13081. is checked.</para>
  13082. </summary>
  13083. </member>
  13084. <member name="P:System.Web.UI.WebControls.CheckBox.Text">
  13085. <summary>
  13086. <para>Gets or sets the text label associated with the <see cref="T:System.Web.UI.WebControls.CheckBox" />.</para>
  13087. </summary>
  13088. </member>
  13089. <member name="P:System.Web.UI.WebControls.CheckBox.TextAlign">
  13090. <summary>
  13091. <para> Gets or sets
  13092. the alignment of the text label associated with the <see cref="T:System.Web.UI.WebControls.CheckBox" /> control.</para>
  13093. </summary>
  13094. </member>
  13095. <member name="E:System.Web.UI.WebControls.CheckBox.CheckedChanged">
  13096. <summary>
  13097. <para>Occurs when the value of the <see cref="P:System.Web.UI.WebControls.CheckBox.Checked" /> property changes between
  13098. posts
  13099. to the server.</para>
  13100. </summary>
  13101. </member>
  13102. <member name="T:System.Web.UI.WebControls.CheckBoxList">
  13103. <summary>
  13104. <para>Creates a multi selection check box group that can be
  13105. dynamically created by binding the control to a data source.</para>
  13106. </summary>
  13107. </member>
  13108. <member name="T:System.Web.UI.WebControls.ListControl">
  13109. <summary>
  13110. <para> Serves
  13111. as the abstract base class that defines the properties,
  13112. methods, and events common for all list-type controls.</para>
  13113. </summary>
  13114. </member>
  13115. <member name="M:System.Web.UI.WebControls.ListControl.#ctor">
  13116. <summary>
  13117. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.ListControl" /> class.</para>
  13118. </summary>
  13119. </member>
  13120. <member name="M:System.Web.UI.WebControls.ListControl.OnSelectedIndexChanged(System.EventArgs)">
  13121. <summary>
  13122. <para> Raises the <see cref="E:System.Web.UI.WebControls.ListControl.SelectedIndexChanged" /> event.</para>
  13123. </summary>
  13124. <param name="e">An <see cref="T:System.EventArgs" qualify="true" /> that contains the event data. </param>
  13125. </member>
  13126. <member name="P:System.Web.UI.WebControls.ListControl.AutoPostBack">
  13127. <summary>
  13128. <para> Gets or
  13129. sets a value indicating whether a postback to the server automatically occurs
  13130. when the user changes the list selection.</para>
  13131. </summary>
  13132. </member>
  13133. <member name="P:System.Web.UI.WebControls.ListControl.DataMember">
  13134. <summary>
  13135. <para>Gets or sets the specific table in the <see cref="P:System.Web.UI.WebControls.ListControl.DataSource" /> to bind to the
  13136. control.</para>
  13137. </summary>
  13138. </member>
  13139. <member name="P:System.Web.UI.WebControls.ListControl.DataSource">
  13140. <summary>
  13141. <para>
  13142. Gets or sets the data source
  13143. that populates the items of the list control.</para>
  13144. </summary>
  13145. </member>
  13146. <member name="P:System.Web.UI.WebControls.ListControl.DataTextField">
  13147. <summary>
  13148. <para> Gets or sets the field of the
  13149. data source that provides the text content of the list items.</para>
  13150. </summary>
  13151. </member>
  13152. <member name="P:System.Web.UI.WebControls.ListControl.DataTextFormatString">
  13153. <summary>
  13154. <para> Gets or sets the formatting string used to control how data bound to the
  13155. list control is displayed.</para>
  13156. </summary>
  13157. </member>
  13158. <member name="P:System.Web.UI.WebControls.ListControl.DataValueField">
  13159. <summary>
  13160. <para> Gets or sets the field of the data source that provides the value of each
  13161. list item.</para>
  13162. </summary>
  13163. </member>
  13164. <member name="P:System.Web.UI.WebControls.ListControl.Items">
  13165. <summary>
  13166. <para>
  13167. Gets the collection of items
  13168. in the
  13169. list control.</para>
  13170. </summary>
  13171. </member>
  13172. <member name="P:System.Web.UI.WebControls.ListControl.SelectedIndex">
  13173. <summary>
  13174. <para> Gets or sets the lowest ordinal index of the selected items in the
  13175. list.</para>
  13176. </summary>
  13177. </member>
  13178. <member name="P:System.Web.UI.WebControls.ListControl.SelectedItem">
  13179. <summary>
  13180. <para>Gets the selected item with the lowest index in the list control. </para>
  13181. </summary>
  13182. </member>
  13183. <member name="E:System.Web.UI.WebControls.ListControl.SelectedIndexChanged">
  13184. <summary>
  13185. <para>Occurs when the selection on the list changes and is posted back to the
  13186. server.</para>
  13187. </summary>
  13188. </member>
  13189. <member name="T:System.Web.UI.WebControls.IRepeatInfoUser">
  13190. <summary>
  13191. <para> Defines the properties and methods that must be implemented by any list control that
  13192. repeats a list of items.</para>
  13193. </summary>
  13194. </member>
  13195. <member name="M:System.Web.UI.WebControls.IRepeatInfoUser.GetItemStyle(System.Web.UI.WebControls.ListItemType,System.Int32)">
  13196. <summary>
  13197. <para>Retrieves the style of the specified item type at the
  13198. specified index in the list control.</para>
  13199. </summary>
  13200. <param name="itemType">One of the <see cref="T:System.Web.UI.WebControls.ListItemType" /> enumeration values.</param>
  13201. <param name=" repeatIndex">An ordinal index that specifies the location of the item in the list control.</param>
  13202. <returns>
  13203. <para>A <see cref="T:System.Web.UI.WebControls.Style" />
  13204. that represents the style of the specified item type at
  13205. the specified index in the
  13206. list control.</para>
  13207. </returns>
  13208. </member>
  13209. <member name="M:System.Web.UI.WebControls.IRepeatInfoUser.RenderItem(System.Web.UI.WebControls.ListItemType,System.Int32,System.Web.UI.WebControls.RepeatInfo,System.Web.UI.HtmlTextWriter)">
  13210. <summary>
  13211. <para>Renders an item in the list with the specified information.</para>
  13212. </summary>
  13213. <param name=" itemType">One of the <see cref="T:System.Web.UI.WebControls.ListItemType" /> enumeration values.</param>
  13214. <param name=" repeatIndex">An ordinal index that specifies the location of the item in the list control.</param>
  13215. <param name=" repeatInfo">A <see cref="T:System.Web.UI.WebControls.RepeatInfo" /> that represents the information used to render the item in the list.</param>
  13216. <param name=" writer">A <see cref="T:System.Web.UI.HtmlTextWriter" qualify="true" /> that represents the output stream to render HTML content on the client.</param>
  13217. </member>
  13218. <member name="P:System.Web.UI.WebControls.IRepeatInfoUser.HasHeader">
  13219. <summary>
  13220. <para>Gets a value indicating whether the list control contains a
  13221. heading section.</para>
  13222. </summary>
  13223. </member>
  13224. <member name="P:System.Web.UI.WebControls.IRepeatInfoUser.HasFooter">
  13225. <summary>
  13226. <para>Gets a value indicating whether the list control contains
  13227. a footer section.</para>
  13228. </summary>
  13229. </member>
  13230. <member name="P:System.Web.UI.WebControls.IRepeatInfoUser.HasSeparators">
  13231. <summary>
  13232. <para>Gets a value indicating whether the list control contains a separator between
  13233. items in
  13234. the list.</para>
  13235. </summary>
  13236. </member>
  13237. <member name="P:System.Web.UI.WebControls.IRepeatInfoUser.RepeatedItemCount">
  13238. <summary>
  13239. <para>Gets the number of items in the list control.</para>
  13240. </summary>
  13241. </member>
  13242. <member name="M:System.Web.UI.WebControls.CheckBoxList.#ctor">
  13243. <summary>
  13244. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> class.</para>
  13245. </summary>
  13246. </member>
  13247. <member name="P:System.Web.UI.WebControls.CheckBoxList.CellPadding">
  13248. <summary>
  13249. <para> Gets or sets the distance (in pixels) between the border
  13250. and contents of the cell.
  13251. </para>
  13252. </summary>
  13253. </member>
  13254. <member name="P:System.Web.UI.WebControls.CheckBoxList.CellSpacing">
  13255. <summary>
  13256. <para> Gets or sets the
  13257. distance (in pixels) between cells.
  13258. </para>
  13259. </summary>
  13260. </member>
  13261. <member name="P:System.Web.UI.WebControls.CheckBoxList.RepeatColumns">
  13262. <summary>
  13263. <para>Gets or sets the number of columns to display in the
  13264. <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control.</para>
  13265. </summary>
  13266. </member>
  13267. <member name="P:System.Web.UI.WebControls.CheckBoxList.RepeatDirection">
  13268. <summary>
  13269. <para> Gets or sets a value that indicates whether the control displays
  13270. vertically or horizontally.</para>
  13271. </summary>
  13272. </member>
  13273. <member name="P:System.Web.UI.WebControls.CheckBoxList.RepeatLayout">
  13274. <summary>
  13275. <para> Gets or sets the layout of the check
  13276. boxes.</para>
  13277. </summary>
  13278. </member>
  13279. <member name="P:System.Web.UI.WebControls.CheckBoxList.TextAlign">
  13280. <summary>
  13281. <para> Gets or
  13282. sets the text alignment for the check boxes within the group.</para>
  13283. </summary>
  13284. </member>
  13285. <member name="T:System.Web.UI.WebControls.DataGridColumnCollection">
  13286. <summary>
  13287. <para>A collection of <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived column objects that represent
  13288. the columns in a <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.
  13289. This class cannot be
  13290. inherited.</para>
  13291. </summary>
  13292. </member>
  13293. <member name="M:System.Web.UI.WebControls.DataGridColumnCollection.#ctor(System.Web.UI.WebControls.DataGrid,System.Collections.ArrayList)">
  13294. <summary>
  13295. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" /> class.</para>
  13296. </summary>
  13297. <param name="owner">The <see cref="T:System.Web.UI.WebControls.DataGrid" /> control that corresponds with this collection.</param>
  13298. <param name=" columns">A <see cref="T:System.Collections.ArrayList" qualify="true" /> object that stores the collection of columns.</param>
  13299. </member>
  13300. <member name="M:System.Web.UI.WebControls.DataGridColumnCollection.Add(System.Web.UI.WebControls.DataGridColumn)">
  13301. <summary>
  13302. <para>Appends the specified <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived column object to the end of the
  13303. <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" />.</para>
  13304. </summary>
  13305. <param name="column">The <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived column object to append to the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" />.</param>
  13306. </member>
  13307. <member name="M:System.Web.UI.WebControls.DataGridColumnCollection.AddAt(System.Int32,System.Web.UI.WebControls.DataGridColumn)">
  13308. <summary>
  13309. <para>Inserts a <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived column object in the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" />
  13310. at the specified index.</para>
  13311. </summary>
  13312. <param name="index">The index location in the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" /> to insert the <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived column object.</param>
  13313. <param name=" column">The <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived column object to insert into the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" />.</param>
  13314. </member>
  13315. <member name="M:System.Web.UI.WebControls.DataGridColumnCollection.Clear">
  13316. <summary>
  13317. <para> Removes all <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived column objects from the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" />.</para>
  13318. </summary>
  13319. </member>
  13320. <member name="M:System.Web.UI.WebControls.DataGridColumnCollection.CopyTo(System.Array,System.Int32)">
  13321. <summary>
  13322. <para>Copies the items from the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" /> to the specified <see cref="T:System.Array" qualify="true" />
  13323. object, starting at
  13324. the specified index in the <see cref="T:System.Array" qualify="true" /> object.</para>
  13325. </summary>
  13326. <param name="array">A zero-based <see cref="T:System.Array" qualify="true" /> object that receives the copied items from the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" />.</param>
  13327. <param name=" index">The first position in the specified <see cref="T:System.Array" qualify="true" /> object to receive the copied contents.</param>
  13328. </member>
  13329. <member name="M:System.Web.UI.WebControls.DataGridColumnCollection.GetEnumerator">
  13330. <summary>
  13331. <para>Returns an <see cref="T:System.Collections.IEnumerator" qualify="true" /> interface that contains all
  13332. <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived
  13333. column objects in the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" />.</para>
  13334. </summary>
  13335. <returns>
  13336. <para>A <see cref="T:System.Collections.IEnumerator" qualify="true" /> interface that contains all <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived
  13337. column objects in the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" />.</para>
  13338. </returns>
  13339. </member>
  13340. <member name="M:System.Web.UI.WebControls.DataGridColumnCollection.IndexOf(System.Web.UI.WebControls.DataGridColumn)">
  13341. <summary>
  13342. <para>Returns the index of the specified <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived column object from the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" />.</para>
  13343. </summary>
  13344. <param name="column">The <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived column object to search for in the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" />.</param>
  13345. <returns>
  13346. <para>The index position of the specified <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived column object in the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" />. The default value is <see langword="-1" />, which indicates that the specified
  13347. <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived object is not found.</para>
  13348. </returns>
  13349. </member>
  13350. <member name="M:System.Web.UI.WebControls.DataGridColumnCollection.RemoveAt(System.Int32)">
  13351. <summary>
  13352. <para>Removes a <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived column object from the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" /> at the specified
  13353. index.</para>
  13354. </summary>
  13355. <param name="index">The index of the <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived column object in the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" /> to remove.</param>
  13356. </member>
  13357. <member name="M:System.Web.UI.WebControls.DataGridColumnCollection.Remove(System.Web.UI.WebControls.DataGridColumn)">
  13358. <summary>
  13359. <para>Removes the specified <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived column object from the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" />.</para>
  13360. </summary>
  13361. <param name="column">The <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived column object to remove from the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" />.</param>
  13362. </member>
  13363. <member name="P:System.Web.UI.WebControls.DataGridColumnCollection.Count">
  13364. <summary>
  13365. <para>Gets the number of columns in the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" />.</para>
  13366. </summary>
  13367. </member>
  13368. <member name="P:System.Web.UI.WebControls.DataGridColumnCollection.IsReadOnly">
  13369. <summary>
  13370. <para>Gets a value that indicates whether the columns in the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" />
  13371. can be modified.</para>
  13372. </summary>
  13373. </member>
  13374. <member name="P:System.Web.UI.WebControls.DataGridColumnCollection.IsSynchronized">
  13375. <summary>
  13376. <para>Gets a value indicating whether access to the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" /> is synchronized (thread-safe).</para>
  13377. </summary>
  13378. </member>
  13379. <member name="P:System.Web.UI.WebControls.DataGridColumnCollection.SyncRoot">
  13380. <summary>
  13381. <para>Gets the object that can be used to synchronize access
  13382. to the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" />. </para>
  13383. </summary>
  13384. </member>
  13385. <member name="P:System.Web.UI.WebControls.DataGridColumnCollection.Item(System.Int32)">
  13386. <summary>
  13387. <para>Gets a <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived column object from the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" /> collection at the specified
  13388. index.</para>
  13389. </summary>
  13390. <param name="index">The index of the <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived object in the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" /> collection to retrieve.</param>
  13391. </member>
  13392. <member name="T:System.Web.UI.WebControls.CommandEventArgs">
  13393. <summary>
  13394. <para>Provides data for the <see langword="Command" /> event.</para>
  13395. </summary>
  13396. </member>
  13397. <member name="M:System.Web.UI.WebControls.CommandEventArgs.#ctor(System.Web.UI.WebControls.CommandEventArgs)">
  13398. <summary>
  13399. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.CommandEventArgs" /> class with another <see cref="T:System.Web.UI.WebControls.CommandEventArgs" /> object.</para>
  13400. </summary>
  13401. <param name="e">A <see cref="T:System.Web.UI.WebControls.CommandEventArgs" /> that contains the event data.</param>
  13402. </member>
  13403. <member name="M:System.Web.UI.WebControls.CommandEventArgs.#ctor(System.String,System.Object)">
  13404. <summary>
  13405. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.CommandEventArgs" /> class with the specified command name
  13406. and argument.</para>
  13407. </summary>
  13408. <param name="commandName">The name of the command.</param>
  13409. <param name=" argument">A <see cref="T:System.Object" qualify="true" /> that contains the arguments for the command.</param>
  13410. </member>
  13411. <member name="P:System.Web.UI.WebControls.CommandEventArgs.CommandName">
  13412. <summary>
  13413. <para> Gets the name of the command.</para>
  13414. </summary>
  13415. </member>
  13416. <member name="P:System.Web.UI.WebControls.CommandEventArgs.CommandArgument">
  13417. <summary>
  13418. <para> Gets the argument for the command.</para>
  13419. </summary>
  13420. </member>
  13421. <member name="T:System.Web.UI.WebControls.CommandEventHandler">
  13422. <summary>
  13423. <para>Represents the method that will handle
  13424. the <see langword="Command" /> event.</para>
  13425. </summary>
  13426. <param name="sender">The source of the event.</param>
  13427. <param name="e">A <see cref="T:System.Web.UI.WebControls.CommandEventArgs" /> that contains the event data.</param>
  13428. </member>
  13429. <member name="T:System.Web.UI.WebControls.CompareValidator">
  13430. <summary>
  13431. <para> Compares the value entered by the user into an input control with
  13432. the value entered into another input control or a constant value.</para>
  13433. </summary>
  13434. </member>
  13435. <member name="P:System.Web.UI.WebControls.CompareValidator.ControlToCompare">
  13436. <summary>
  13437. <para> Gets or sets the input control to compare with the input control being validated.</para>
  13438. </summary>
  13439. </member>
  13440. <member name="P:System.Web.UI.WebControls.CompareValidator.Operator">
  13441. <summary>
  13442. <para>Gets or sets the comparison operation to perform.</para>
  13443. </summary>
  13444. </member>
  13445. <member name="P:System.Web.UI.WebControls.CompareValidator.ValueToCompare">
  13446. <summary>
  13447. <para>Gets or sets a constant value to compare with the value entered by the user into the input control being validated.</para>
  13448. </summary>
  13449. </member>
  13450. <member name="T:System.Web.UI.WebControls.CustomValidator">
  13451. <summary>
  13452. <para> Performs user-defined validation on an input control.</para>
  13453. </summary>
  13454. </member>
  13455. <member name="M:System.Web.UI.WebControls.CustomValidator.OnServerValidate(System.String)">
  13456. <summary>
  13457. <para>Raises the <see cref="E:System.Web.UI.WebControls.CustomValidator.ServerValidate" /> event for the <see cref="T:System.Web.UI.WebControls.CustomValidator" />
  13458. control.</para>
  13459. </summary>
  13460. <param name="value">The value to validate.</param>
  13461. <returns>
  13462. <para>
  13463. <see langword="true" /> if the value
  13464. specified by the <paramref name="value" /> parameter passes validation; otherwise, <see langword="false" />.</para>
  13465. </returns>
  13466. </member>
  13467. <member name="P:System.Web.UI.WebControls.CustomValidator.ClientValidationFunction">
  13468. <summary>
  13469. <para> Gets or sets the name of the custom client-side script function used
  13470. for validation.</para>
  13471. </summary>
  13472. </member>
  13473. <member name="E:System.Web.UI.WebControls.CustomValidator.ServerValidate">
  13474. <summary>
  13475. <para>Occurs when validation is performed on the
  13476. server.</para>
  13477. </summary>
  13478. </member>
  13479. <member name="T:System.Web.UI.WebControls.DataGrid">
  13480. <summary>
  13481. <para> A data bound list control that displays the items from
  13482. data source in a table. The <see cref="T:System.Web.UI.WebControls.DataGrid" />
  13483. control allows you to select, sort, and
  13484. edit these items.</para>
  13485. </summary>
  13486. </member>
  13487. <member name="F:System.Web.UI.WebControls.DataGrid.SortCommandName">
  13488. <summary>
  13489. <para> Represents the <see langword="Sort" />
  13490. command name. This field is read-only.</para>
  13491. </summary>
  13492. </member>
  13493. <member name="F:System.Web.UI.WebControls.DataGrid.SelectCommandName">
  13494. <summary>
  13495. <para> Represents the <see langword="Select " />command name. This field is read-only.</para>
  13496. </summary>
  13497. </member>
  13498. <member name="F:System.Web.UI.WebControls.DataGrid.EditCommandName">
  13499. <summary>
  13500. <para> Represents the <see langword="Edit" />
  13501. command name. This field is read-only.</para>
  13502. </summary>
  13503. </member>
  13504. <member name="F:System.Web.UI.WebControls.DataGrid.DeleteCommandName">
  13505. <summary>
  13506. <para> Represents the <see langword="Delete" /> command name. This field is read-only.</para>
  13507. </summary>
  13508. </member>
  13509. <member name="F:System.Web.UI.WebControls.DataGrid.UpdateCommandName">
  13510. <summary>
  13511. <para> Represents the <see langword="Update" /> command name. This field is read-only.</para>
  13512. </summary>
  13513. </member>
  13514. <member name="F:System.Web.UI.WebControls.DataGrid.CancelCommandName">
  13515. <summary>
  13516. <para> Represents the <see langword="Cancel" /> command name. This field is read-only.</para>
  13517. </summary>
  13518. </member>
  13519. <member name="F:System.Web.UI.WebControls.DataGrid.PageCommandName">
  13520. <summary>
  13521. <para> Represents the <see langword="Page " />command name. This field is read-only.</para>
  13522. </summary>
  13523. </member>
  13524. <member name="F:System.Web.UI.WebControls.DataGrid.NextPageCommandArgument">
  13525. <summary>
  13526. <para> Represents the <see langword="Next" /> command argument. This field is read-only.</para>
  13527. </summary>
  13528. </member>
  13529. <member name="F:System.Web.UI.WebControls.DataGrid.PrevPageCommandArgument">
  13530. <summary>
  13531. <para> Represents the <see langword="Prev" /> command argument. This field is read-only.</para>
  13532. </summary>
  13533. </member>
  13534. <member name="M:System.Web.UI.WebControls.DataGrid.#ctor">
  13535. <summary>
  13536. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataGrid" /> class.</para>
  13537. </summary>
  13538. </member>
  13539. <member name="M:System.Web.UI.WebControls.DataGrid.OnCancelCommand(System.Web.UI.WebControls.DataGridCommandEventArgs)">
  13540. <summary>
  13541. <para>Raises the <see cref="E:System.Web.UI.WebControls.DataGrid.CancelCommand" /> event. This allows you to
  13542. provide a custom handler for the event.</para>
  13543. </summary>
  13544. <param name="e">A <see cref="T:System.Web.UI.WebControls.DataGridCommandEventArgs" /> that contains event data.</param>
  13545. </member>
  13546. <member name="M:System.Web.UI.WebControls.DataGrid.OnDeleteCommand(System.Web.UI.WebControls.DataGridCommandEventArgs)">
  13547. <summary>
  13548. <para>Raises the <see cref="E:System.Web.UI.WebControls.DataGrid.DeleteCommand" /> event. This allows you to
  13549. provide a custom handler for the event.</para>
  13550. </summary>
  13551. <param name="e">A <see cref="T:System.Web.UI.WebControls.DataGridCommandEventArgs" /> that contains event data.</param>
  13552. </member>
  13553. <member name="M:System.Web.UI.WebControls.DataGrid.OnEditCommand(System.Web.UI.WebControls.DataGridCommandEventArgs)">
  13554. <summary>
  13555. <para>Raises the <see cref="E:System.Web.UI.WebControls.DataGrid.EditCommand" /> event. This allows you to
  13556. provide a custom handler for the event.</para>
  13557. </summary>
  13558. <param name="e">A <see cref="T:System.Web.UI.WebControls.DataGridCommandEventArgs" /> that contains event data.</param>
  13559. </member>
  13560. <member name="M:System.Web.UI.WebControls.DataGrid.OnItemCommand(System.Web.UI.WebControls.DataGridCommandEventArgs)">
  13561. <summary>
  13562. <para>Raises the <see cref="E:System.Web.UI.WebControls.DataGrid.ItemCommand" /> event. This allows you to
  13563. provide a custom handler for the event. This allows you to
  13564. provide a custom handler for the event.</para>
  13565. </summary>
  13566. <param name="e">A <see cref="T:System.Web.UI.WebControls.DataGridCommandEventArgs" /> that contains event data.</param>
  13567. </member>
  13568. <member name="M:System.Web.UI.WebControls.DataGrid.OnItemCreated(System.Web.UI.WebControls.DataGridItemEventArgs)">
  13569. <summary>
  13570. <para>Raises the <see cref="E:System.Web.UI.WebControls.DataGrid.ItemCreated" /> event. This allows you to
  13571. provide a custom handler for the event.</para>
  13572. </summary>
  13573. <param name="e">A <see cref="T:System.Web.UI.WebControls.DataGridItemEventArgs" /> that contains event data.</param>
  13574. </member>
  13575. <member name="M:System.Web.UI.WebControls.DataGrid.OnItemDataBound(System.Web.UI.WebControls.DataGridItemEventArgs)">
  13576. <summary>
  13577. <para>Raises the <see cref="E:System.Web.UI.WebControls.DataGrid.ItemDataBound" /> event. This allows you to
  13578. provide a custom handler for the event.</para>
  13579. </summary>
  13580. <param name="e">A <see cref="T:System.Web.UI.WebControls.DataGridItemEventArgs" /> that contains event data.</param>
  13581. </member>
  13582. <member name="M:System.Web.UI.WebControls.DataGrid.OnPageIndexChanged(System.Web.UI.WebControls.DataGridPageChangedEventArgs)">
  13583. <summary>
  13584. <para>Raises the <see cref="E:System.Web.UI.WebControls.DataGrid.PageIndexChanged" /> event. This allows you to
  13585. provide a custom handler for the event.</para>
  13586. </summary>
  13587. <param name="e">A <see cref="T:System.Web.UI.WebControls.DataGridPageChangedEventArgs" /> that contains event data.</param>
  13588. </member>
  13589. <member name="M:System.Web.UI.WebControls.DataGrid.OnSortCommand(System.Web.UI.WebControls.DataGridSortCommandEventArgs)">
  13590. <summary>
  13591. <para>Raises the <see cref="E:System.Web.UI.WebControls.DataGrid.SortCommand" /> event. This allows you to
  13592. provide a custom handler for the event.</para>
  13593. </summary>
  13594. <param name="e">A <see cref="T:System.Web.UI.WebControls.DataGridSortCommandEventArgs" /> that contains event data.</param>
  13595. </member>
  13596. <member name="M:System.Web.UI.WebControls.DataGrid.OnUpdateCommand(System.Web.UI.WebControls.DataGridCommandEventArgs)">
  13597. <summary>
  13598. <para>Raises the <see cref="E:System.Web.UI.WebControls.DataGrid.UpdateCommand" /> event. This allows you to
  13599. provide a custom handler for the event.</para>
  13600. </summary>
  13601. <param name="e">A <see cref="T:System.Web.UI.WebControls.DataGridCommandEventArgs" /> that contains event data.</param>
  13602. </member>
  13603. <member name="P:System.Web.UI.WebControls.DataGrid.AllowCustomPaging">
  13604. <summary>
  13605. <para>Gets or sets a value that indicates whether custom paging is enabled.</para>
  13606. </summary>
  13607. </member>
  13608. <member name="P:System.Web.UI.WebControls.DataGrid.AllowPaging">
  13609. <summary>
  13610. <para>Gets or sets a value that indicates whether paging is enabled.</para>
  13611. </summary>
  13612. </member>
  13613. <member name="P:System.Web.UI.WebControls.DataGrid.AllowSorting">
  13614. <summary>
  13615. <para>Gets or sets a value that indicates whether sorting is enabled.</para>
  13616. </summary>
  13617. </member>
  13618. <member name="P:System.Web.UI.WebControls.DataGrid.AlternatingItemStyle">
  13619. <summary>
  13620. <para>Gets the style properties for alternating items in the
  13621. <see cref="T:System.Web.UI.WebControls.DataGrid" />
  13622. control. </para>
  13623. </summary>
  13624. </member>
  13625. <member name="P:System.Web.UI.WebControls.DataGrid.AutoGenerateColumns">
  13626. <summary>
  13627. <para>Gets or sets a value that indicates whether <see cref="T:System.Web.UI.WebControls.BoundColumn" />
  13628. objects are automatically created and displayed in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control for each field in the data
  13629. source.</para>
  13630. </summary>
  13631. </member>
  13632. <member name="P:System.Web.UI.WebControls.DataGrid.BackImageUrl">
  13633. <summary>
  13634. <para>Gets or sets the URL of an image to display in the
  13635. background of the <see cref="T:System.Web.UI.WebControls.DataGrid" />
  13636. control.</para>
  13637. </summary>
  13638. </member>
  13639. <member name="P:System.Web.UI.WebControls.DataGrid.CurrentPageIndex">
  13640. <summary>
  13641. <para> Gets or sets the index of the currently displayed page. </para>
  13642. </summary>
  13643. </member>
  13644. <member name="P:System.Web.UI.WebControls.DataGrid.Columns">
  13645. <summary>
  13646. <para>Gets a collection of objects that represent the columns of
  13647. the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  13648. </summary>
  13649. </member>
  13650. <member name="P:System.Web.UI.WebControls.DataGrid.EditItemIndex">
  13651. <summary>
  13652. <para> Gets or sets the index of an item in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control to edit.</para>
  13653. </summary>
  13654. </member>
  13655. <member name="P:System.Web.UI.WebControls.DataGrid.EditItemStyle">
  13656. <summary>
  13657. <para> Gets the style properties of the item selected for editing in the
  13658. <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  13659. </summary>
  13660. </member>
  13661. <member name="P:System.Web.UI.WebControls.DataGrid.FooterStyle">
  13662. <summary>
  13663. <para> Gets the style properties of the footer section in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  13664. </summary>
  13665. </member>
  13666. <member name="P:System.Web.UI.WebControls.DataGrid.HeaderStyle">
  13667. <summary>
  13668. <para> Gets the style properties of the heading section in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  13669. </summary>
  13670. </member>
  13671. <member name="P:System.Web.UI.WebControls.DataGrid.Items">
  13672. <summary>
  13673. <para>Gets a collection of <see cref="T:System.Web.UI.WebControls.DataGridItem" /> objects that
  13674. represent the individual items in the <see cref="T:System.Web.UI.WebControls.DataGrid" />
  13675. control.</para>
  13676. </summary>
  13677. </member>
  13678. <member name="P:System.Web.UI.WebControls.DataGrid.ItemStyle">
  13679. <summary>
  13680. <para> Gets the style properties of the items in the
  13681. <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  13682. </summary>
  13683. </member>
  13684. <member name="P:System.Web.UI.WebControls.DataGrid.PageCount">
  13685. <summary>
  13686. <para> Gets the total number of pages required to display
  13687. the items in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  13688. </summary>
  13689. </member>
  13690. <member name="P:System.Web.UI.WebControls.DataGrid.PagerStyle">
  13691. <summary>
  13692. <para> Gets the style properties of the paging section of the
  13693. <see cref="T:System.Web.UI.WebControls.DataGrid" />
  13694. control. </para>
  13695. </summary>
  13696. </member>
  13697. <member name="P:System.Web.UI.WebControls.DataGrid.PageSize">
  13698. <summary>
  13699. <para>Gets or sets the number of items to display on a single
  13700. page of the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  13701. </summary>
  13702. </member>
  13703. <member name="P:System.Web.UI.WebControls.DataGrid.SelectedIndex">
  13704. <summary>
  13705. <para>Gets or sets the index of the selected item in the
  13706. <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  13707. </summary>
  13708. </member>
  13709. <member name="P:System.Web.UI.WebControls.DataGrid.SelectedItem">
  13710. <summary>
  13711. <para>Gets a <see cref="T:System.Web.UI.WebControls.DataGridItem" /> object that
  13712. represents the selected item in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  13713. </summary>
  13714. </member>
  13715. <member name="P:System.Web.UI.WebControls.DataGrid.SelectedItemStyle">
  13716. <summary>
  13717. <para> Gets the style properties of the currently selected
  13718. item in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  13719. </summary>
  13720. </member>
  13721. <member name="P:System.Web.UI.WebControls.DataGrid.ShowFooter">
  13722. <summary>
  13723. <para> Gets or sets a value that indicates whether the footer is displayed in the
  13724. <see cref="T:System.Web.UI.WebControls.DataGrid" />
  13725. control.</para>
  13726. </summary>
  13727. </member>
  13728. <member name="P:System.Web.UI.WebControls.DataGrid.ShowHeader">
  13729. <summary>
  13730. <para> Gets or sets a value that indicates whether the header is displayed in the
  13731. <see cref="T:System.Web.UI.WebControls.DataGrid" />
  13732. control.</para>
  13733. </summary>
  13734. </member>
  13735. <member name="P:System.Web.UI.WebControls.DataGrid.VirtualItemCount">
  13736. <summary>
  13737. <para>Gets or sets the virtual number of items in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control
  13738. when custom paging is used.</para>
  13739. </summary>
  13740. </member>
  13741. <member name="E:System.Web.UI.WebControls.DataGrid.CancelCommand">
  13742. <summary>
  13743. <para> Occurs when the <see langword="Cancel" /> button is
  13744. clicked for an item in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  13745. </summary>
  13746. </member>
  13747. <member name="E:System.Web.UI.WebControls.DataGrid.DeleteCommand">
  13748. <summary>
  13749. <para>Occurs when the <see langword="Delete" /> button is
  13750. clicked for an item in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  13751. </summary>
  13752. </member>
  13753. <member name="E:System.Web.UI.WebControls.DataGrid.EditCommand">
  13754. <summary>
  13755. <para>Occurs when the <see langword="Edit" /> button is clicked
  13756. for an item in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  13757. </summary>
  13758. </member>
  13759. <member name="E:System.Web.UI.WebControls.DataGrid.ItemCommand">
  13760. <summary>
  13761. <para>Occurs when any button is clicked in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  13762. </summary>
  13763. </member>
  13764. <member name="E:System.Web.UI.WebControls.DataGrid.ItemCreated">
  13765. <summary>
  13766. <para>Occurs on the server when an item in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control is created.</para>
  13767. </summary>
  13768. </member>
  13769. <member name="E:System.Web.UI.WebControls.DataGrid.ItemDataBound">
  13770. <summary>
  13771. <para> Occurs after an item is data bound to
  13772. the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  13773. </summary>
  13774. </member>
  13775. <member name="E:System.Web.UI.WebControls.DataGrid.PageIndexChanged">
  13776. <summary>
  13777. <para>Occurs when one of the page selection elements is clicked.</para>
  13778. </summary>
  13779. </member>
  13780. <member name="E:System.Web.UI.WebControls.DataGrid.SortCommand">
  13781. <summary>
  13782. <para>Occurs when a column is sorted.</para>
  13783. </summary>
  13784. </member>
  13785. <member name="E:System.Web.UI.WebControls.DataGrid.UpdateCommand">
  13786. <summary>
  13787. <para>Occurs when the <see langword="Update" /> button is
  13788. clicked for an item in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  13789. </summary>
  13790. </member>
  13791. <member name="T:System.Web.UI.WebControls.DataGridCommandEventArgs">
  13792. <summary>
  13793. <para>Provides data for the <see cref="E:System.Web.UI.WebControls.DataGrid.CancelCommand" />, <see cref="E:System.Web.UI.WebControls.DataGrid.DeleteCommand" />, <see cref="E:System.Web.UI.WebControls.DataGrid.EditCommand" />, <see cref="E:System.Web.UI.WebControls.DataGrid.ItemCommand" />, and <see cref="E:System.Web.UI.WebControls.DataGrid.UpdateCommand" /> events of the <see cref="T:System.Web.UI.WebControls.DataGrid" />
  13794. control. This class cannot be inherited.</para>
  13795. </summary>
  13796. </member>
  13797. <member name="M:System.Web.UI.WebControls.DataGridCommandEventArgs.#ctor(System.Web.UI.WebControls.DataGridItem,System.Object,System.Web.UI.WebControls.CommandEventArgs)">
  13798. <summary>
  13799. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataGridCommandEventArgs" />
  13800. class.</para>
  13801. </summary>
  13802. <param name="item">A <see cref="T:System.Web.UI.WebControls.DataGridItem" /> that represents the selected item in the <see cref="T:System.Web.UI.WebControls.DataGrid" />.</param>
  13803. <param name=" commandSource">The source of the command.</param>
  13804. <param name=" originalArgs">A <see cref="T:System.Web.UI.WebControls.CommandEventArgs" /> that contains the event data.</param>
  13805. </member>
  13806. <member name="P:System.Web.UI.WebControls.DataGridCommandEventArgs.CommandSource">
  13807. <summary>
  13808. <para> Gets the source of the command.</para>
  13809. </summary>
  13810. </member>
  13811. <member name="P:System.Web.UI.WebControls.DataGridCommandEventArgs.Item">
  13812. <summary>
  13813. <para> Gets the item containing the command source in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  13814. </summary>
  13815. </member>
  13816. <member name="T:System.Web.UI.WebControls.DataGridCommandEventHandler">
  13817. <summary>
  13818. <para>Represents the method that will handle the <see cref="E:System.Web.UI.WebControls.DataGrid.CancelCommand" />, <see cref="E:System.Web.UI.WebControls.DataGrid.DeleteCommand" />, <see cref="E:System.Web.UI.WebControls.DataGrid.EditCommand" />, <see cref="E:System.Web.UI.WebControls.DataGrid.ItemCommand" />, and <see cref="E:System.Web.UI.WebControls.DataGrid.UpdateCommand" /> events of a <see cref="T:System.Web.UI.WebControls.DataGrid" />.</para>
  13819. </summary>
  13820. <param name="source">The source of the event.</param>
  13821. <param name=" e">A <see cref="T:System.Web.UI.WebControls.DataGridCommandEventArgs" /> that contains the event data.</param>
  13822. </member>
  13823. <member name="T:System.Web.UI.WebControls.DataGridItem">
  13824. <summary>
  13825. <para> Represents an item (row) in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  13826. </summary>
  13827. </member>
  13828. <member name="T:System.Web.UI.WebControls.TableRow">
  13829. <summary>
  13830. <para> Represents a row in a <see cref="T:System.Web.UI.WebControls.Table" />
  13831. control.</para>
  13832. </summary>
  13833. </member>
  13834. <member name="M:System.Web.UI.WebControls.TableRow.#ctor">
  13835. <summary>
  13836. <para> Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.TableRow" /> class.
  13837. </para>
  13838. </summary>
  13839. </member>
  13840. <member name="P:System.Web.UI.WebControls.TableRow.Cells">
  13841. <summary>
  13842. <para> Gets a collection of <see cref="T:System.Web.UI.WebControls.TableCell" />
  13843. objects that represent the cells of a row in a
  13844. <see cref="T:System.Web.UI.WebControls.Table" />
  13845. control.</para>
  13846. </summary>
  13847. </member>
  13848. <member name="P:System.Web.UI.WebControls.TableRow.HorizontalAlign">
  13849. <summary>
  13850. <para> Gets or sets the horizontal alignment of the contents in the row.</para>
  13851. </summary>
  13852. </member>
  13853. <member name="P:System.Web.UI.WebControls.TableRow.VerticalAlign">
  13854. <summary>
  13855. <para>Gets or sets the vertical alignment of the contents in the row.</para>
  13856. </summary>
  13857. </member>
  13858. <member name="M:System.Web.UI.WebControls.TableRow.CellControlCollection.Add(System.Web.UI.Control)">
  13859. <summary>
  13860. <para>[To be supplied.]</para>
  13861. </summary>
  13862. </member>
  13863. <member name="M:System.Web.UI.WebControls.TableRow.CellControlCollection.AddAt(System.Int32,System.Web.UI.Control)">
  13864. <summary>
  13865. <para>Adds the specified <see cref="T:System.Web.UI.Control" /> object to the collection. The new control is added
  13866. to the array at the specified index location.</para>
  13867. </summary>
  13868. <param name=" index">The location in the array to add the child control.</param>
  13869. <param name="child">The <see langword="Control" /> object to add to the collection.</param>
  13870. </member>
  13871. <member name="M:System.Web.UI.WebControls.DataGridItem.#ctor(System.Int32,System.Int32,System.Web.UI.WebControls.ListItemType)">
  13872. <summary>
  13873. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataGridItem" /> class.</para>
  13874. </summary>
  13875. <param name="itemIndex">The index of the item in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control from the <see cref="P:System.Web.UI.WebControls.DataGrid.Items" /> collection.</param>
  13876. <param name="dataSetIndex">The index number of the item, from the bound data source, that appears in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</param>
  13877. <param name="itemType">One of the <see cref="T:System.Web.UI.WebControls.ListItemType" /> values.</param>
  13878. </member>
  13879. <member name="P:System.Web.UI.WebControls.DataGridItem.DataItem">
  13880. <summary>
  13881. <para>Gets or sets the data item represented by the <see cref="T:System.Web.UI.WebControls.DataGridItem" /> object in the <see cref="T:System.Web.UI.WebControls.DataGrid" />
  13882. control. </para>
  13883. </summary>
  13884. </member>
  13885. <member name="P:System.Web.UI.WebControls.DataGridItem.DataSetIndex">
  13886. <summary>
  13887. <para> Gets the index number the
  13888. <see cref="T:System.Web.UI.WebControls.DataGridItem" /> object from the bound data
  13889. source.</para>
  13890. </summary>
  13891. </member>
  13892. <member name="P:System.Web.UI.WebControls.DataGridItem.ItemIndex">
  13893. <summary>
  13894. <para> Gets the index of the
  13895. <see cref="T:System.Web.UI.WebControls.DataGridItem" /> object from the <see cref="P:System.Web.UI.WebControls.DataGrid.Items" />
  13896. collection of the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control. </para>
  13897. </summary>
  13898. </member>
  13899. <member name="P:System.Web.UI.WebControls.DataGridItem.ItemType">
  13900. <summary>
  13901. <para> Gets the type of the item represented by the <see cref="T:System.Web.UI.WebControls.DataGridItem" /> object in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  13902. </summary>
  13903. </member>
  13904. <member name="T:System.Web.UI.WebControls.DataGridItemCollection">
  13905. <summary>
  13906. <para> Represents a collection of <see cref="T:System.Web.UI.WebControls.DataGridItem" /> objects in a <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  13907. </summary>
  13908. </member>
  13909. <member name="M:System.Web.UI.WebControls.DataGridItemCollection.#ctor(System.Collections.ArrayList)">
  13910. <summary>
  13911. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataGridItemCollection" /> class.</para>
  13912. </summary>
  13913. <param name="items">A <see cref="T:System.Collections.ArrayList" qualify="true" /> object that contains the items with which to initialize the collection. </param>
  13914. </member>
  13915. <member name="M:System.Web.UI.WebControls.DataGridItemCollection.CopyTo(System.Array,System.Int32)">
  13916. <summary>
  13917. <para>Copies all the items from this <see cref="T:System.Web.UI.WebControls.DataGridItemCollection" /> to the specified <see cref="T:System.Array" qualify="true" /> object,
  13918. starting at the specified index in the <see cref="T:System.Array" qualify="true" /> object.</para>
  13919. </summary>
  13920. <param name="array">A zero-based <see cref="T:System.Array" qualify="true" /> object that receives the copied items from the <see cref="T:System.Web.UI.WebControls.DataGridItemCollection" />.</param>
  13921. <param name=" index">The first position in the specified <see cref="T:System.Array" qualify="true" /> object to receive the copied contents.</param>
  13922. </member>
  13923. <member name="M:System.Web.UI.WebControls.DataGridItemCollection.GetEnumerator">
  13924. <summary>
  13925. <para>Returns a <see cref="T:System.Collections.IEnumerator" qualify="true" /> implemented object that contains all
  13926. <see cref="T:System.Web.UI.WebControls.DataGridItem" /> objects in the <see cref="T:System.Web.UI.WebControls.DataGridItemCollection" />.</para>
  13927. </summary>
  13928. <returns>
  13929. <para>A <see cref="T:System.Collections.IEnumerator" qualify="true" /> implemented object that contains all <see cref="T:System.Web.UI.WebControls.DataGridItem" /> objects in the <see cref="T:System.Web.UI.WebControls.DataGridItemCollection" />.</para>
  13930. </returns>
  13931. </member>
  13932. <member name="P:System.Web.UI.WebControls.DataGridItemCollection.Count">
  13933. <summary>
  13934. <para>Gets the number of <see cref="T:System.Web.UI.WebControls.DataGridItem" /> objects in the collection.</para>
  13935. </summary>
  13936. </member>
  13937. <member name="P:System.Web.UI.WebControls.DataGridItemCollection.IsReadOnly">
  13938. <summary>
  13939. <para>Gets a value that indicates whether the <see cref="T:System.Web.UI.WebControls.DataGridItem" /> objects in the <see cref="T:System.Web.UI.WebControls.DataGridItemCollection" />
  13940. can be modified. </para>
  13941. </summary>
  13942. </member>
  13943. <member name="P:System.Web.UI.WebControls.DataGridItemCollection.IsSynchronized">
  13944. <summary>
  13945. <para>Gets a value indicating whether access to the <see cref="T:System.Web.UI.WebControls.DataGridItemCollection" />
  13946. is synchronized (thread-safe).</para>
  13947. </summary>
  13948. </member>
  13949. <member name="P:System.Web.UI.WebControls.DataGridItemCollection.SyncRoot">
  13950. <summary>
  13951. <para>Gets the object that can be used to synchronize access to
  13952. the <see cref="T:System.Web.UI.WebControls.DataGridItemCollection" />. </para>
  13953. </summary>
  13954. </member>
  13955. <member name="P:System.Web.UI.WebControls.DataGridItemCollection.Item(System.Int32)">
  13956. <summary>
  13957. <para>Gets the <see cref="T:System.Web.UI.WebControls.DataGridItem" /> object at the specified index in the
  13958. collection.</para>
  13959. </summary>
  13960. <param name="index">The zero-based index of the <see cref="T:System.Web.UI.WebControls.DataGridItem" /> object to retrieve from the collection.</param>
  13961. </member>
  13962. <member name="T:System.Web.UI.WebControls.DataGridItemEventArgs">
  13963. <summary>
  13964. <para>Provides data for the <see cref="E:System.Web.UI.WebControls.DataGrid.ItemCreated" /> and <see cref="E:System.Web.UI.WebControls.DataGrid.ItemDataBound" /> events of the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.
  13965. This class cannot be
  13966. inherited.</para>
  13967. </summary>
  13968. </member>
  13969. <member name="M:System.Web.UI.WebControls.DataGridItemEventArgs.#ctor(System.Web.UI.WebControls.DataGridItem)">
  13970. <summary>
  13971. <para>Initializes a new instance of <see cref="T:System.Web.UI.WebControls.DataGridItemEventArgs" /> class.</para>
  13972. </summary>
  13973. <param name="item">A <see cref="T:System.Web.UI.WebControls.DataGridItem" /> that represents an item in the <see cref="T:System.Web.UI.WebControls.DataGrid" />.</param>
  13974. </member>
  13975. <member name="P:System.Web.UI.WebControls.DataGridItemEventArgs.Item">
  13976. <summary>
  13977. <para> Gets the referenced item in the <see cref="T:System.Web.UI.WebControls.DataGrid" />
  13978. control when the event is raised.</para>
  13979. </summary>
  13980. </member>
  13981. <member name="T:System.Web.UI.WebControls.DataGridItemEventHandler">
  13982. <summary>
  13983. <para>Represents the method that will handle the <see cref="E:System.Web.UI.WebControls.DataGrid.ItemCreated" /> and <see cref="E:System.Web.UI.WebControls.DataGrid.ItemDataBound" /> events of a <see cref="T:System.Web.UI.WebControls.DataGrid" />.</para>
  13984. </summary>
  13985. <param name="sender">The source of the event.</param>
  13986. <param name=" e">A <see cref="T:System.Web.UI.WebControls.DataGridItemEventArgs" /> than contains the event data.</param>
  13987. </member>
  13988. <member name="T:System.Web.UI.WebControls.LinkButton">
  13989. <summary>
  13990. <para> Displays a hyperlink style button control on a Web page.</para>
  13991. </summary>
  13992. </member>
  13993. <member name="M:System.Web.UI.WebControls.LinkButton.#ctor">
  13994. <summary>
  13995. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.LinkButton" /> class.</para>
  13996. </summary>
  13997. </member>
  13998. <member name="M:System.Web.UI.WebControls.LinkButton.OnClick(System.EventArgs)">
  13999. <summary>
  14000. <para>Raises the <see cref="E:System.Web.UI.WebControls.LinkButton.Click" /> event of the <see cref="T:System.Web.UI.WebControls.LinkButton" /> control.</para>
  14001. </summary>
  14002. <param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains the event data.</param>
  14003. </member>
  14004. <member name="M:System.Web.UI.WebControls.LinkButton.OnCommand(System.Web.UI.WebControls.CommandEventArgs)">
  14005. <summary>
  14006. <para>Raises the <see cref="E:System.Web.UI.WebControls.LinkButton.Command" /> event of
  14007. the <see cref="T:System.Web.UI.WebControls.LinkButton" /> control.</para>
  14008. </summary>
  14009. <param name="e">A <see cref="T:System.Web.UI.WebControls.CommandEventArgs" /> that contains the event data.</param>
  14010. </member>
  14011. <member name="P:System.Web.UI.WebControls.LinkButton.CommandName">
  14012. <summary>
  14013. <para>Gets or sets the command name associated with the
  14014. <see cref="T:System.Web.UI.WebControls.LinkButton" /> control.
  14015. This value is passed to the <see cref="E:System.Web.UI.WebControls.LinkButton.Command" /> event handler along with the
  14016. <see cref="P:System.Web.UI.WebControls.LinkButton.CommandArgument" />
  14017. property.</para>
  14018. </summary>
  14019. </member>
  14020. <member name="P:System.Web.UI.WebControls.LinkButton.CommandArgument">
  14021. <summary>
  14022. <para> Gets or sets an optional argument passed to the
  14023. <see cref="E:System.Web.UI.WebControls.LinkButton.Command" /> event handler along with the
  14024. associated <see cref="P:System.Web.UI.WebControls.LinkButton.CommandName" />
  14025. property.</para>
  14026. </summary>
  14027. </member>
  14028. <member name="P:System.Web.UI.WebControls.LinkButton.CausesValidation">
  14029. <summary>
  14030. <para>Gets or sets a value indicating whether validation is
  14031. performed when the <see cref="T:System.Web.UI.WebControls.LinkButton" />
  14032. control is clicked.</para>
  14033. </summary>
  14034. </member>
  14035. <member name="P:System.Web.UI.WebControls.LinkButton.Text">
  14036. <summary>
  14037. <para>Gets or sets the text caption displayed on the <see cref="T:System.Web.UI.WebControls.LinkButton" /> control.</para>
  14038. </summary>
  14039. </member>
  14040. <member name="E:System.Web.UI.WebControls.LinkButton.Click">
  14041. <summary>
  14042. <para>Occurs when the <see cref="T:System.Web.UI.WebControls.LinkButton" /> control is clicked.</para>
  14043. </summary>
  14044. </member>
  14045. <member name="E:System.Web.UI.WebControls.LinkButton.Command">
  14046. <summary>
  14047. <para>Occurs when the <see cref="T:System.Web.UI.WebControls.Button" />
  14048. control is clicked.</para>
  14049. </summary>
  14050. </member>
  14051. <member name="T:System.Web.UI.WebControls.DataGridPageChangedEventArgs">
  14052. <summary>
  14053. <para>Provides data for the <see cref="E:System.Web.UI.WebControls.DataGrid.PageIndexChanged" /> event of the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.
  14054. This class cannot be
  14055. inherited.</para>
  14056. </summary>
  14057. </member>
  14058. <member name="M:System.Web.UI.WebControls.DataGridPageChangedEventArgs.#ctor(System.Object,System.Int32)">
  14059. <summary>
  14060. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataGridPageChangedEventArgs" /> class.</para>
  14061. </summary>
  14062. <param name="commandSource">The source of the command.</param>
  14063. <param name=" newPageIndex">The index of the page selected by the user from the page selection element of the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</param>
  14064. </member>
  14065. <member name="P:System.Web.UI.WebControls.DataGridPageChangedEventArgs.CommandSource">
  14066. <summary>
  14067. <para> Gets the source of the command.</para>
  14068. </summary>
  14069. </member>
  14070. <member name="P:System.Web.UI.WebControls.DataGridPageChangedEventArgs.NewPageIndex">
  14071. <summary>
  14072. <para>Gets the index of the page selected by the user in the page
  14073. selection element of the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  14074. </summary>
  14075. </member>
  14076. <member name="T:System.Web.UI.WebControls.DataGridPageChangedEventHandler">
  14077. <summary>
  14078. <para>Represents the method that will handle the <see cref="E:System.Web.UI.WebControls.DataGrid.PageIndexChanged" />
  14079. event of the <see cref="T:System.Web.UI.WebControls.DataGrid" />
  14080. control.</para>
  14081. </summary>
  14082. <param name="source">The source of the event.</param>
  14083. <param name=" e">A <see cref="T:System.Web.UI.WebControls.DataGridPageChangedEventArgs" /> that contains the event data.</param>
  14084. </member>
  14085. <member name="T:System.Web.UI.WebControls.DataGridPagerStyle">
  14086. <summary>
  14087. <para>Specifies the style for the pager of the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control. This class cannot be inherited.</para>
  14088. </summary>
  14089. </member>
  14090. <member name="T:System.Web.UI.WebControls.TableItemStyle">
  14091. <summary>
  14092. <para> Represents the style properties
  14093. for an element of a control that renders as a <see cref="T:System.Web.UI.WebControls.TableRow" /> or <see cref="T:System.Web.UI.WebControls.TableCell" />.</para>
  14094. </summary>
  14095. </member>
  14096. <member name="T:System.Web.UI.WebControls.Style">
  14097. <summary>
  14098. <para> Represents the style of a
  14099. Web server control.</para>
  14100. </summary>
  14101. </member>
  14102. <member name="M:System.Web.UI.WebControls.Style.#ctor">
  14103. <summary>
  14104. <para> Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Style" /> class using default values.
  14105. </para>
  14106. </summary>
  14107. </member>
  14108. <member name="M:System.Web.UI.WebControls.Style.#ctor(System.Web.UI.StateBag)">
  14109. <summary>
  14110. <para> Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Style" /> class with the
  14111. specified state bag information.
  14112. </para>
  14113. </summary>
  14114. <param name="bag">A <see cref="T:System.Web.UI.StateBag" qualify="true" /> that represents the state bag in which to store style information. </param>
  14115. </member>
  14116. <member name="M:System.Web.UI.WebControls.Style.AddAttributesToRender(System.Web.UI.HtmlTextWriter)">
  14117. <summary>
  14118. <para> Adds HTML attributes and styles that need to be rendered
  14119. to the specified <see cref="T:System.Web.UI.HtmlTextWriter" qualify="true" />. This method is primarily used by control
  14120. developers.</para>
  14121. </summary>
  14122. <param name="writer">A <see cref="T:System.Web.UI.HtmlTextWriter" qualify="true" /> that represents the output stream to render HTML content on the client.</param>
  14123. </member>
  14124. <member name="M:System.Web.UI.WebControls.Style.AddAttributesToRender(System.Web.UI.HtmlTextWriter,System.Web.UI.WebControls.WebControl)">
  14125. <summary>
  14126. <para> Adds HTML attributes and styles that need to be rendered
  14127. to the specified <see cref="T:System.Web.UI.HtmlTextWriter" qualify="true" /> and Web
  14128. server control. This method is primarily used by control
  14129. developers.</para>
  14130. </summary>
  14131. <param name="writer">A <see cref="T:System.Web.UI.HtmlTextWriter" qualify="true" /> that represents the output stream to render HTML content on the client.</param>
  14132. <param name=" owner">A <see cref="T:System.Web.UI.WebControls.WebControl" /> or <see cref="T:System.Web.UI.WebControls.WebControl" /> derived object that represents the Web server control associated with the <see cref="T:System.Web.UI.WebControls.Style" />.</param>
  14133. </member>
  14134. <member name="M:System.Web.UI.WebControls.Style.CopyFrom(System.Web.UI.WebControls.Style)">
  14135. <summary>
  14136. <para>Duplicates the style properties of the specified
  14137. <see cref="T:System.Web.UI.WebControls.Style" /> into the instance of the <see cref="T:System.Web.UI.WebControls.Style" /> class that this
  14138. method is called from.</para>
  14139. </summary>
  14140. <param name="s">A <see cref="T:System.Web.UI.WebControls.Style" /> that represents the style to copy.</param>
  14141. </member>
  14142. <member name="M:System.Web.UI.WebControls.Style.MergeWith(System.Web.UI.WebControls.Style)">
  14143. <summary>
  14144. <para> Combines the style properties of the specified
  14145. <see cref="T:System.Web.UI.WebControls.Style" /> with the instance of the <see cref="T:System.Web.UI.WebControls.Style" /> class that this
  14146. method is called from.</para>
  14147. </summary>
  14148. <param name="s">A <see cref="T:System.Web.UI.WebControls.Style" /> that represents the style to combine.</param>
  14149. </member>
  14150. <member name="M:System.Web.UI.WebControls.Style.Reset">
  14151. <summary>
  14152. <para> Removes any defined style elements from the state bag.
  14153. </para>
  14154. </summary>
  14155. </member>
  14156. <member name="P:System.Web.UI.WebControls.Style.BackColor">
  14157. <summary>
  14158. <para>Gets or sets the background color of the Web server control.</para>
  14159. </summary>
  14160. </member>
  14161. <member name="P:System.Web.UI.WebControls.Style.BorderColor">
  14162. <summary>
  14163. <para>Gets or sets the border color of the Web server control.</para>
  14164. </summary>
  14165. </member>
  14166. <member name="P:System.Web.UI.WebControls.Style.BorderWidth">
  14167. <summary>
  14168. <para>Gets or sets the border width of the Web server control.</para>
  14169. </summary>
  14170. </member>
  14171. <member name="P:System.Web.UI.WebControls.Style.BorderStyle">
  14172. <summary>
  14173. <para>Gets or sets the border style of the Web server control.</para>
  14174. </summary>
  14175. </member>
  14176. <member name="P:System.Web.UI.WebControls.Style.CssClass">
  14177. <summary>
  14178. <para>Gets or sets the CSS class rendered by the Web server control on the client.</para>
  14179. </summary>
  14180. </member>
  14181. <member name="P:System.Web.UI.WebControls.Style.Font">
  14182. <summary>
  14183. <para>Gets the font properties associated with the Web server control.</para>
  14184. </summary>
  14185. </member>
  14186. <member name="P:System.Web.UI.WebControls.Style.ForeColor">
  14187. <summary>
  14188. <para>Gets or sets the foreground color (typically the color of the text) of the Web
  14189. server control.</para>
  14190. </summary>
  14191. </member>
  14192. <member name="P:System.Web.UI.WebControls.Style.Height">
  14193. <summary>
  14194. <para> Gets or sets the height of the Web server control.
  14195. </para>
  14196. </summary>
  14197. </member>
  14198. <member name="P:System.Web.UI.WebControls.Style.Width">
  14199. <summary>
  14200. <para> Gets or sets the width of the Web server control.
  14201. </para>
  14202. </summary>
  14203. </member>
  14204. <member name="P:System.Web.UI.WebControls.Style.IsTrackingViewState">
  14205. <summary>
  14206. <para> Returns a value indicating whether
  14207. any style elements have been defined in the state bag.
  14208. </para>
  14209. </summary>
  14210. </member>
  14211. <member name="M:System.Web.UI.WebControls.TableItemStyle.#ctor">
  14212. <summary>
  14213. <para>Creates a new instance of the <see cref="T:System.Web.UI.WebControls.TableItemStyle" /> class using default values.</para>
  14214. </summary>
  14215. </member>
  14216. <member name="M:System.Web.UI.WebControls.TableItemStyle.#ctor(System.Web.UI.StateBag)">
  14217. <summary>
  14218. <para> Creates a new instance of the <see cref="T:System.Web.UI.WebControls.TableItemStyle" /> class with the
  14219. specified state bag.
  14220. </para>
  14221. </summary>
  14222. <param name="bag">A <see cref="T:System.Web.UI.StateBag" qualify="true" /> that represents the state bag in which to store style information. </param>
  14223. </member>
  14224. <member name="M:System.Web.UI.WebControls.TableItemStyle.CopyFrom(System.Web.UI.WebControls.Style)">
  14225. <summary>
  14226. <para>Duplicates the style properties of the specified
  14227. <see cref="T:System.Web.UI.WebControls.Style" /> into the instance of the <see cref="T:System.Web.UI.WebControls.TableItemStyle" /> class that this
  14228. method is called from.</para>
  14229. </summary>
  14230. <param name="s">A <see cref="T:System.Web.UI.WebControls.Style" /> that represents the style to copy.</param>
  14231. </member>
  14232. <member name="M:System.Web.UI.WebControls.TableItemStyle.MergeWith(System.Web.UI.WebControls.Style)">
  14233. <summary>
  14234. <para> Combines the style properties of the specified
  14235. <see cref="T:System.Web.UI.WebControls.Style" /> into the instance of the <see cref="T:System.Web.UI.WebControls.TableItemStyle" /> class that this
  14236. method is called from.</para>
  14237. </summary>
  14238. <param name="s">A <see cref="T:System.Web.UI.WebControls.Style" /> that represents the style to combine.</param>
  14239. </member>
  14240. <member name="M:System.Web.UI.WebControls.TableItemStyle.Reset">
  14241. <summary>
  14242. <para> Removes any defined style elements from the state bag.
  14243. </para>
  14244. </summary>
  14245. </member>
  14246. <member name="P:System.Web.UI.WebControls.TableItemStyle.HorizontalAlign">
  14247. <summary>
  14248. <para>Gets or sets the horizontal alignment of the contents in a cell.</para>
  14249. </summary>
  14250. </member>
  14251. <member name="P:System.Web.UI.WebControls.TableItemStyle.VerticalAlign">
  14252. <summary>
  14253. <para>Gets or sets the vertical alignment of the contents in a cell.</para>
  14254. </summary>
  14255. </member>
  14256. <member name="P:System.Web.UI.WebControls.TableItemStyle.Wrap">
  14257. <summary>
  14258. <para>Gets or sets a value indicating whether the contents of a cell wrap in the cell.</para>
  14259. </summary>
  14260. </member>
  14261. <member name="M:System.Web.UI.WebControls.DataGridPagerStyle.CopyFrom(System.Web.UI.WebControls.Style)">
  14262. <summary>
  14263. <para> Copies the style of the specified <see cref="T:System.Web.UI.WebControls.Style" /> object into this instance of the
  14264. <see cref="T:System.Web.UI.WebControls.DataGridPagerStyle" /> class.</para>
  14265. </summary>
  14266. <param name="s">The <see cref="T:System.Web.UI.WebControls.Style" /> object to copy from.</param>
  14267. </member>
  14268. <member name="M:System.Web.UI.WebControls.DataGridPagerStyle.MergeWith(System.Web.UI.WebControls.Style)">
  14269. <summary>
  14270. <para>Merges the style of the specified <see cref="T:System.Web.UI.WebControls.Style" /> object with this instance of the <see cref="T:System.Web.UI.WebControls.DataGridPagerStyle" /> class.</para>
  14271. </summary>
  14272. <param name="s">The <see cref="T:System.Web.UI.WebControls.Style" /> object to merge with.</param>
  14273. </member>
  14274. <member name="M:System.Web.UI.WebControls.DataGridPagerStyle.Reset">
  14275. <summary>
  14276. <para>Restores the <see cref="T:System.Web.UI.WebControls.DataGridPagerStyle" /> object to its default values.</para>
  14277. </summary>
  14278. </member>
  14279. <member name="P:System.Web.UI.WebControls.DataGridPagerStyle.Mode">
  14280. <summary>
  14281. <para> Gets or sets a value that specifies
  14282. whether the pager element displays buttons that link to the next
  14283. and previous page, or numeric buttons that link directly to a page.</para>
  14284. </summary>
  14285. </member>
  14286. <member name="P:System.Web.UI.WebControls.DataGridPagerStyle.NextPageText">
  14287. <summary>
  14288. <para> Gets or sets the text displayed for the next page
  14289. button.</para>
  14290. </summary>
  14291. </member>
  14292. <member name="P:System.Web.UI.WebControls.DataGridPagerStyle.PageButtonCount">
  14293. <summary>
  14294. <para>Gets or sets the number of numeric buttons to display concurrently in the pager element
  14295. of the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  14296. </summary>
  14297. </member>
  14298. <member name="P:System.Web.UI.WebControls.DataGridPagerStyle.Position">
  14299. <summary>
  14300. <para> Gets or sets the position of the pager element in the <see cref="T:System.Web.UI.WebControls.DataGrid" />
  14301. control.</para>
  14302. </summary>
  14303. </member>
  14304. <member name="P:System.Web.UI.WebControls.DataGridPagerStyle.PrevPageText">
  14305. <summary>
  14306. <para> Gets or sets the text displayed for the previous
  14307. page button.</para>
  14308. </summary>
  14309. </member>
  14310. <member name="P:System.Web.UI.WebControls.DataGridPagerStyle.Visible">
  14311. <summary>
  14312. <para> Gets or sets a value indicating whether the pager
  14313. is displayed in the <see cref="T:System.Web.UI.WebControls.DataGrid" />
  14314. control.</para>
  14315. </summary>
  14316. </member>
  14317. <member name="T:System.Web.UI.WebControls.DataGridSortCommandEventArgs">
  14318. <summary>
  14319. <para>Provides data for the <see cref="E:System.Web.UI.WebControls.DataGrid.SortCommand" /> event of the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.
  14320. This class cannot be inherited.</para>
  14321. </summary>
  14322. </member>
  14323. <member name="M:System.Web.UI.WebControls.DataGridSortCommandEventArgs.#ctor(System.Object,System.Web.UI.WebControls.DataGridCommandEventArgs)">
  14324. <summary>
  14325. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataGridSortCommandEventArgs" /> class.</para>
  14326. </summary>
  14327. <param name="commandSource">The source of the command.</param>
  14328. <param name=" dce">A <see cref="T:System.Web.UI.WebControls.DataGridCommandEventArgs" /> that contains the event data. </param>
  14329. </member>
  14330. <member name="P:System.Web.UI.WebControls.DataGridSortCommandEventArgs.CommandSource">
  14331. <summary>
  14332. <para> Gets the source of the command. </para>
  14333. </summary>
  14334. </member>
  14335. <member name="P:System.Web.UI.WebControls.DataGridSortCommandEventArgs.SortExpression">
  14336. <summary>
  14337. <para> Gets the expression used to sort the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  14338. </summary>
  14339. </member>
  14340. <member name="T:System.Web.UI.WebControls.DataGridSortCommandEventHandler">
  14341. <summary>
  14342. <para>Represents the method that will handle the <see cref="E:System.Web.UI.WebControls.DataGrid.SortCommand" />
  14343. event of the <see cref="T:System.Web.UI.WebControls.DataGrid" />
  14344. control.</para>
  14345. </summary>
  14346. <param name="source">The source of the event.</param>
  14347. <param name="e">A <see cref="T:System.Web.UI.WebControls.DataGridSortCommandEventArgs" /> that contains the event data.</param>
  14348. </member>
  14349. <member name="T:System.Web.UI.WebControls.Table">
  14350. <summary>
  14351. <para>Constructs a table and defines its properties.</para>
  14352. </summary>
  14353. </member>
  14354. <member name="M:System.Web.UI.WebControls.Table.#ctor">
  14355. <summary>
  14356. <para>
  14357. Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Table" /> class.
  14358. </para>
  14359. </summary>
  14360. </member>
  14361. <member name="P:System.Web.UI.WebControls.Table.BackImageUrl">
  14362. <summary>
  14363. <para>Indicates the URL of the background image to display
  14364. behind the table. The image will be tiled if it is smaller than the table.</para>
  14365. </summary>
  14366. </member>
  14367. <member name="P:System.Web.UI.WebControls.Table.CellSpacing">
  14368. <summary>
  14369. <para>Gets or
  14370. sets
  14371. the distance (in pixels) between table cells.</para>
  14372. </summary>
  14373. </member>
  14374. <member name="P:System.Web.UI.WebControls.Table.CellPadding">
  14375. <summary>
  14376. <para>Gets or sets
  14377. the distance (in pixels) between the border and
  14378. the contents of the table cell.</para>
  14379. </summary>
  14380. </member>
  14381. <member name="P:System.Web.UI.WebControls.Table.GridLines">
  14382. <summary>
  14383. <para>Gets or sets a value that specifies the grid line style to display in the <see cref="T:System.Web.UI.WebControls.Table" />
  14384. control.</para>
  14385. </summary>
  14386. </member>
  14387. <member name="P:System.Web.UI.WebControls.Table.HorizontalAlign">
  14388. <summary>
  14389. <para>Gets or sets the horizontal alignment of the table within the page.</para>
  14390. </summary>
  14391. </member>
  14392. <member name="P:System.Web.UI.WebControls.Table.Rows">
  14393. <summary>
  14394. <para> Gets the collection of rows within
  14395. the table.</para>
  14396. </summary>
  14397. </member>
  14398. <member name="M:System.Web.UI.WebControls.Table.RowControlCollection.Add(System.Web.UI.Control)">
  14399. <summary>
  14400. <para>[To be supplied.]</para>
  14401. </summary>
  14402. </member>
  14403. <member name="M:System.Web.UI.WebControls.Table.RowControlCollection.AddAt(System.Int32,System.Web.UI.Control)">
  14404. <summary>
  14405. <para>Adds the specified <see cref="T:System.Web.UI.Control" /> object to the collection. The new control is added
  14406. to the array at the specified index location.</para>
  14407. </summary>
  14408. <param name=" index">The location in the array to add the child control.</param>
  14409. <param name="child">The <see langword="Control" /> object to add to the collection.</param>
  14410. </member>
  14411. <member name="T:System.Web.UI.WebControls.DataKeyCollection">
  14412. <summary>
  14413. <para>Represents a collection that contains the key field of each record in a data source. This class cannot be inherited.</para>
  14414. </summary>
  14415. </member>
  14416. <member name="M:System.Web.UI.WebControls.DataKeyCollection.#ctor(System.Collections.ArrayList)">
  14417. <summary>
  14418. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataKeyCollection" /> class.</para>
  14419. </summary>
  14420. <param name="keys">A <see cref="T:System.Collections.ArrayList" qualify="true" /> that contains key fields from the data source.</param>
  14421. </member>
  14422. <member name="M:System.Web.UI.WebControls.DataKeyCollection.CopyTo(System.Array,System.Int32)">
  14423. <summary>
  14424. <para>Copies all the items from the <see cref="T:System.Web.UI.WebControls.DataKeyCollection" /> to the specified <see cref="T:System.Array" qualify="true" /> object,
  14425. starting at the specified index in the <see cref="T:System.Array" qualify="true" /> object.</para>
  14426. </summary>
  14427. <param name="array">A zero-based <see cref="T:System.Array" qualify="true" /> object that receives the copied items from the <see cref="T:System.Web.UI.WebControls.DataKeyCollection" />.</param>
  14428. <param name=" index">The first position in the specified <see cref="T:System.Array" qualify="true" /> object to receive the copied contents.</param>
  14429. </member>
  14430. <member name="M:System.Web.UI.WebControls.DataKeyCollection.GetEnumerator">
  14431. <summary>
  14432. <para>Creates a <see cref="T:System.Collections.IEnumerator" qualify="true" /> implemented object that contains all
  14433. key fields in the <see cref="T:System.Web.UI.WebControls.DataKeyCollection" />.</para>
  14434. </summary>
  14435. <returns>
  14436. <para> A <see cref="T:System.Collections.IEnumerator" qualify="true" /> implemented object that contains all
  14437. key fields in the <see cref="T:System.Web.UI.WebControls.DataKeyCollection" />.</para>
  14438. </returns>
  14439. </member>
  14440. <member name="P:System.Web.UI.WebControls.DataKeyCollection.Count">
  14441. <summary>
  14442. <para> Gets the number of items in the collection.</para>
  14443. </summary>
  14444. </member>
  14445. <member name="P:System.Web.UI.WebControls.DataKeyCollection.IsReadOnly">
  14446. <summary>
  14447. <para>Gets a value indicating whether items in the <see cref="T:System.Web.UI.WebControls.DataKeyCollection" />
  14448. can be modified.</para>
  14449. </summary>
  14450. </member>
  14451. <member name="P:System.Web.UI.WebControls.DataKeyCollection.IsSynchronized">
  14452. <summary>
  14453. <para> Gets a value indicating whether the <see cref="T:System.Web.UI.WebControls.DataKeyCollection" />
  14454. is synchronized (thread-safe).</para>
  14455. </summary>
  14456. </member>
  14457. <member name="P:System.Web.UI.WebControls.DataKeyCollection.SyncRoot">
  14458. <summary>
  14459. <para>Gets the object used to synchronize access to the <see cref="T:System.Web.UI.WebControls.DataKeyCollection" />.</para>
  14460. </summary>
  14461. </member>
  14462. <member name="P:System.Web.UI.WebControls.DataKeyCollection.Item(System.Int32)">
  14463. <summary>
  14464. <para> Gets the key field at the specified index in the collection.</para>
  14465. </summary>
  14466. <param name="index"> The zero-based index of the key field to retrieve from the collection.</param>
  14467. </member>
  14468. <member name="T:System.Web.UI.WebControls.DataList">
  14469. <summary>
  14470. <para>A data bound list control that displays items using templates.</para>
  14471. </summary>
  14472. </member>
  14473. <member name="F:System.Web.UI.WebControls.DataList.SelectCommandName">
  14474. <summary>
  14475. <para>Represents the <see langword="Select" /> command name. This field is read-only.</para>
  14476. </summary>
  14477. </member>
  14478. <member name="F:System.Web.UI.WebControls.DataList.EditCommandName">
  14479. <summary>
  14480. <para>Represents the <see langword="Edit" /> command name. This field is read-only.</para>
  14481. </summary>
  14482. </member>
  14483. <member name="F:System.Web.UI.WebControls.DataList.UpdateCommandName">
  14484. <summary>
  14485. <para>Represents the <see langword="Update" /> command name. This field is read-only.</para>
  14486. </summary>
  14487. </member>
  14488. <member name="F:System.Web.UI.WebControls.DataList.CancelCommandName">
  14489. <summary>
  14490. <para> Represents the <see langword="Cancel" /> command name. This field is read-only.</para>
  14491. </summary>
  14492. </member>
  14493. <member name="F:System.Web.UI.WebControls.DataList.DeleteCommandName">
  14494. <summary>
  14495. <para>Represents the <see langword="Delete" /> command name. This field is read-only.</para>
  14496. </summary>
  14497. </member>
  14498. <member name="M:System.Web.UI.WebControls.DataList.#ctor">
  14499. <summary>
  14500. <para> Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataList" /> class.
  14501. </para>
  14502. </summary>
  14503. </member>
  14504. <member name="M:System.Web.UI.WebControls.DataList.OnCancelCommand(System.Web.UI.WebControls.DataListCommandEventArgs)">
  14505. <summary>
  14506. <para>Raises the <see cref="E:System.Web.UI.WebControls.DataList.CancelCommand" /> event. This allows you to
  14507. provide a custom handler for the event.</para>
  14508. </summary>
  14509. <param name="e">A <see cref="T:System.Web.UI.WebControls.DataListCommandEventArgs" /> that contains event data.</param>
  14510. </member>
  14511. <member name="M:System.Web.UI.WebControls.DataList.OnDeleteCommand(System.Web.UI.WebControls.DataListCommandEventArgs)">
  14512. <summary>
  14513. <para>Raises the <see cref="E:System.Web.UI.WebControls.DataList.DeleteCommand" /> event. This allows you to
  14514. provide a custom handler for the event.</para>
  14515. </summary>
  14516. <param name="e">A <see cref="T:System.Web.UI.WebControls.DataListCommandEventArgs" /> that contains event data.</param>
  14517. </member>
  14518. <member name="M:System.Web.UI.WebControls.DataList.OnEditCommand(System.Web.UI.WebControls.DataListCommandEventArgs)">
  14519. <summary>
  14520. <para>Raises the <see cref="E:System.Web.UI.WebControls.DataList.EditCommand" /> event. This allows you to
  14521. provide a custom handler for the event.</para>
  14522. </summary>
  14523. <param name="e">A <see cref="T:System.Web.UI.WebControls.DataListCommandEventArgs" /> that contains event data.</param>
  14524. </member>
  14525. <member name="M:System.Web.UI.WebControls.DataList.OnItemCommand(System.Web.UI.WebControls.DataListCommandEventArgs)">
  14526. <summary>
  14527. <para>Raises the <see cref="E:System.Web.UI.WebControls.DataList.ItemCommand" /> event. This allows you to
  14528. provide a custom handler for the event.</para>
  14529. </summary>
  14530. <param name="e">A <see cref="T:System.Web.UI.WebControls.DataListCommandEventArgs" /> that contains event data.</param>
  14531. </member>
  14532. <member name="M:System.Web.UI.WebControls.DataList.OnItemCreated(System.Web.UI.WebControls.DataListItemEventArgs)">
  14533. <summary>
  14534. <para>Raises the <see cref="E:System.Web.UI.WebControls.DataList.ItemCreated" /> event. This allows you to
  14535. provide a custom handler for the event.</para>
  14536. </summary>
  14537. <param name="e">A <see cref="T:System.Web.UI.WebControls.DataListItemEventArgs" /> that contains event data.</param>
  14538. </member>
  14539. <member name="M:System.Web.UI.WebControls.DataList.OnItemDataBound(System.Web.UI.WebControls.DataListItemEventArgs)">
  14540. <summary>
  14541. <para>Raises the <see cref="E:System.Web.UI.WebControls.DataList.ItemDataBound" /> event. This allows you to
  14542. provide a custom handler for the event.</para>
  14543. </summary>
  14544. <param name="e">A <see cref="T:System.Web.UI.WebControls.DataListItemEventArgs" /> that contains event data.</param>
  14545. </member>
  14546. <member name="M:System.Web.UI.WebControls.DataList.OnUpdateCommand(System.Web.UI.WebControls.DataListCommandEventArgs)">
  14547. <summary>
  14548. <para>Raises the <see cref="E:System.Web.UI.WebControls.DataList.UpdateCommand" /> event. This allows you to
  14549. provide a custom handler for the event.</para>
  14550. </summary>
  14551. <param name="e">A <see cref="T:System.Web.UI.WebControls.DataListItemEventArgs" /> that contains event data.</param>
  14552. </member>
  14553. <member name="P:System.Web.UI.WebControls.DataList.AlternatingItemStyle">
  14554. <summary>
  14555. <para>Gets the style properties for alternating items in the <see cref="T:System.Web.UI.WebControls.DataList" />
  14556. control. </para>
  14557. </summary>
  14558. </member>
  14559. <member name="P:System.Web.UI.WebControls.DataList.AlternatingItemTemplate">
  14560. <summary>
  14561. <para> Gets or sets the template for alternating items in the <see cref="T:System.Web.UI.WebControls.DataList" />.</para>
  14562. </summary>
  14563. </member>
  14564. <member name="P:System.Web.UI.WebControls.DataList.EditItemIndex">
  14565. <summary>
  14566. <para>Gets or sets the index number of the selected item in the <see cref="T:System.Web.UI.WebControls.DataList" /> control to edit.</para>
  14567. </summary>
  14568. </member>
  14569. <member name="P:System.Web.UI.WebControls.DataList.EditItemStyle">
  14570. <summary>
  14571. <para> Gets the style properties for the item selected for
  14572. editing in the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
  14573. </summary>
  14574. </member>
  14575. <member name="P:System.Web.UI.WebControls.DataList.EditItemTemplate">
  14576. <summary>
  14577. <para> Gets or sets the template for the item selected for editing in the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
  14578. </summary>
  14579. </member>
  14580. <member name="P:System.Web.UI.WebControls.DataList.ExtractTemplateRows">
  14581. <summary>
  14582. <para>Gets or sets a
  14583. value that indicates whether the rows of a <see cref="T:System.Web.UI.WebControls.Table" /> control,
  14584. defined in each template of a <see cref="T:System.Web.UI.WebControls.DataList" />
  14585. control, are extracted and displayed.</para>
  14586. </summary>
  14587. </member>
  14588. <member name="P:System.Web.UI.WebControls.DataList.FooterStyle">
  14589. <summary>
  14590. <para>Gets the style properties for the footer section of the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
  14591. </summary>
  14592. </member>
  14593. <member name="P:System.Web.UI.WebControls.DataList.FooterTemplate">
  14594. <summary>
  14595. <para> Gets or sets the template for the footer section of the <see cref="T:System.Web.UI.WebControls.DataList" />
  14596. control.</para>
  14597. </summary>
  14598. </member>
  14599. <member name="P:System.Web.UI.WebControls.DataList.GridLines">
  14600. <summary>
  14601. <para>Gets or sets the grid line style for the <see cref="T:System.Web.UI.WebControls.DataList" /> control
  14602. when the <see cref="P:System.Web.UI.WebControls.DataList.RepeatLayout" />
  14603. property is set to <see langword="RepeatLayout.Table" />.</para>
  14604. </summary>
  14605. </member>
  14606. <member name="P:System.Web.UI.WebControls.DataList.HeaderStyle">
  14607. <summary>
  14608. <para>Gets the style properties for the heading section of the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
  14609. </summary>
  14610. </member>
  14611. <member name="P:System.Web.UI.WebControls.DataList.HeaderTemplate">
  14612. <summary>
  14613. <para> Gets or sets the template for the heading section of the <see cref="T:System.Web.UI.WebControls.DataList" />
  14614. control.</para>
  14615. </summary>
  14616. </member>
  14617. <member name="P:System.Web.UI.WebControls.DataList.Items">
  14618. <summary>
  14619. <para>Gets a collection of <see cref="T:System.Web.UI.WebControls.DataListItem" /> objects representing the individual
  14620. items within the control.</para>
  14621. </summary>
  14622. </member>
  14623. <member name="P:System.Web.UI.WebControls.DataList.ItemStyle">
  14624. <summary>
  14625. <para>Gets the style properties for the items in the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
  14626. </summary>
  14627. </member>
  14628. <member name="P:System.Web.UI.WebControls.DataList.ItemTemplate">
  14629. <summary>
  14630. <para> Gets or sets the template for the items in the <see cref="T:System.Web.UI.WebControls.DataList" />
  14631. control.</para>
  14632. </summary>
  14633. </member>
  14634. <member name="P:System.Web.UI.WebControls.DataList.RepeatColumns">
  14635. <summary>
  14636. <para>Gets or sets the number of columns to display in the
  14637. <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
  14638. </summary>
  14639. </member>
  14640. <member name="P:System.Web.UI.WebControls.DataList.RepeatDirection">
  14641. <summary>
  14642. <para>Gets or sets whether the <see cref="T:System.Web.UI.WebControls.DataList" /> control displays vertically or horizontally.</para>
  14643. </summary>
  14644. </member>
  14645. <member name="P:System.Web.UI.WebControls.DataList.RepeatLayout">
  14646. <summary>
  14647. <para> Gets or sets whether the control is displayed in a table
  14648. or flow layout.</para>
  14649. </summary>
  14650. </member>
  14651. <member name="P:System.Web.UI.WebControls.DataList.SelectedIndex">
  14652. <summary>
  14653. <para> Gets or sets the index of the selected item in the
  14654. <see cref="T:System.Web.UI.WebControls.DataList" />
  14655. control.</para>
  14656. </summary>
  14657. </member>
  14658. <member name="P:System.Web.UI.WebControls.DataList.SelectedItem">
  14659. <summary>
  14660. <para>Gets the selected item in the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
  14661. </summary>
  14662. </member>
  14663. <member name="P:System.Web.UI.WebControls.DataList.SelectedItemStyle">
  14664. <summary>
  14665. <para> Gets the style properties for the selected item
  14666. in the <see cref="T:System.Web.UI.WebControls.DataList" />
  14667. control.</para>
  14668. </summary>
  14669. </member>
  14670. <member name="P:System.Web.UI.WebControls.DataList.SelectedItemTemplate">
  14671. <summary>
  14672. <para> Gets or sets the template for the selected item in the <see cref="T:System.Web.UI.WebControls.DataList" />
  14673. control.</para>
  14674. </summary>
  14675. </member>
  14676. <member name="P:System.Web.UI.WebControls.DataList.SeparatorStyle">
  14677. <summary>
  14678. <para>Gets the style properties of the separator between each item in the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
  14679. </summary>
  14680. </member>
  14681. <member name="P:System.Web.UI.WebControls.DataList.SeparatorTemplate">
  14682. <summary>
  14683. <para> Gets or sets the template for the separator between the items of the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
  14684. </summary>
  14685. </member>
  14686. <member name="P:System.Web.UI.WebControls.DataList.ShowFooter">
  14687. <summary>
  14688. <para>Gets or sets a value indicating whether the footer section is
  14689. displayed in the <see cref="T:System.Web.UI.WebControls.DataList" />
  14690. control.</para>
  14691. </summary>
  14692. </member>
  14693. <member name="P:System.Web.UI.WebControls.DataList.ShowHeader">
  14694. <summary>
  14695. <para> Gets or sets a value indicating whether the header section is displayed in the <see cref="T:System.Web.UI.WebControls.DataList" />
  14696. control.</para>
  14697. </summary>
  14698. </member>
  14699. <member name="E:System.Web.UI.WebControls.DataList.CancelCommand">
  14700. <summary>
  14701. <para>Occurs when the <see langword="Cancel" /> button is clicked
  14702. for an item in the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
  14703. </summary>
  14704. </member>
  14705. <member name="E:System.Web.UI.WebControls.DataList.DeleteCommand">
  14706. <summary>
  14707. <para>Occurs when the <see langword="Delete" /> button is clicked
  14708. for an item in the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
  14709. </summary>
  14710. </member>
  14711. <member name="E:System.Web.UI.WebControls.DataList.EditCommand">
  14712. <summary>
  14713. <para>Occurs when the <see langword="Edit" /> button is clicked
  14714. for an item in the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
  14715. </summary>
  14716. </member>
  14717. <member name="E:System.Web.UI.WebControls.DataList.ItemCommand">
  14718. <summary>
  14719. <para>Occurs when any button is clicked in the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
  14720. </summary>
  14721. </member>
  14722. <member name="E:System.Web.UI.WebControls.DataList.ItemCreated">
  14723. <summary>
  14724. <para>Occurs on the server when an item in the <see cref="T:System.Web.UI.WebControls.DataList" /> control is created.</para>
  14725. </summary>
  14726. </member>
  14727. <member name="E:System.Web.UI.WebControls.DataList.ItemDataBound">
  14728. <summary>
  14729. <para>Occurs when an item is data bound to the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
  14730. </summary>
  14731. </member>
  14732. <member name="E:System.Web.UI.WebControls.DataList.UpdateCommand">
  14733. <summary>
  14734. <para>Occurs when the <see langword="Update" /> button is clicked
  14735. for an item in the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
  14736. </summary>
  14737. </member>
  14738. <member name="T:System.Web.UI.WebControls.DataListCommandEventArgs">
  14739. <summary>
  14740. <para>Provides data for the <see cref="E:System.Web.UI.WebControls.DataList.CancelCommand" />, <see cref="E:System.Web.UI.WebControls.DataList.DeleteCommand" />, <see cref="E:System.Web.UI.WebControls.DataList.EditCommand" />, <see cref="E:System.Web.UI.WebControls.DataList.ItemCommand" />, and <see cref="E:System.Web.UI.WebControls.DataList.UpdateCommand" /> events of the <see cref="T:System.Web.UI.WebControls.DataList" /> control.
  14741. This class cannot be
  14742. inherited.</para>
  14743. </summary>
  14744. </member>
  14745. <member name="M:System.Web.UI.WebControls.DataListCommandEventArgs.#ctor(System.Web.UI.WebControls.DataListItem,System.Object,System.Web.UI.WebControls.CommandEventArgs)">
  14746. <summary>
  14747. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataListCommandEventArgs" /> class.</para>
  14748. </summary>
  14749. <param name="item">The selected item from the <see cref="T:System.Web.UI.WebControls.DataList" />.</param>
  14750. <param name=" commandSource">The source of the command.</param>
  14751. <param name=" originalArgs">A <see cref="T:System.Web.UI.WebControls.CommandEventArgs" /> that contains the original event data.</param>
  14752. </member>
  14753. <member name="P:System.Web.UI.WebControls.DataListCommandEventArgs.Item">
  14754. <summary>
  14755. <para> Gets the item containing the command source in the <see cref="T:System.Web.UI.WebControls.DataList" />
  14756. control.</para>
  14757. </summary>
  14758. </member>
  14759. <member name="P:System.Web.UI.WebControls.DataListCommandEventArgs.CommandSource">
  14760. <summary>
  14761. <para>Gets the source of the command.</para>
  14762. </summary>
  14763. </member>
  14764. <member name="T:System.Web.UI.WebControls.DataListCommandEventHandler">
  14765. <summary>
  14766. <para>Represents the method that will handle the
  14767. <see cref="E:System.Web.UI.WebControls.DataList.CancelCommand" />, <see cref="E:System.Web.UI.WebControls.DataList.DeleteCommand" />, <see cref="E:System.Web.UI.WebControls.DataList.EditCommand" />, <see cref="E:System.Web.UI.WebControls.DataList.ItemCommand" />, and <see cref="E:System.Web.UI.WebControls.DataList.UpdateCommand" /> events of a <see cref="T:System.Web.UI.WebControls.DataList" />
  14768. control.</para>
  14769. </summary>
  14770. <param name="source">The source of the event.</param>
  14771. <param name="e">A <see cref="T:System.Web.UI.WebControls.DataListCommandEventArgs" /> that contains the event data.</param>
  14772. </member>
  14773. <member name="T:System.Web.UI.WebControls.DataListItem">
  14774. <summary>
  14775. <para>Represents an item in the <see cref="T:System.Web.UI.WebControls.DataList" /> control. </para>
  14776. </summary>
  14777. </member>
  14778. <member name="M:System.Web.UI.WebControls.DataListItem.#ctor(System.Int32,System.Web.UI.WebControls.ListItemType)">
  14779. <summary>
  14780. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataListItem" /> class.</para>
  14781. </summary>
  14782. <param name="itemIndex">The index of the item in the <see cref="T:System.Web.UI.WebControls.DataList" /> control from the <see cref="P:System.Web.UI.WebControls.DataList.Items" /> collection. </param>
  14783. <param name="itemType">One of the <see cref="T:System.Web.UI.WebControls.ListItemType" /> values.</param>
  14784. </member>
  14785. <member name="M:System.Web.UI.WebControls.DataListItem.RenderItem(System.Web.UI.HtmlTextWriter,System.Boolean,System.Boolean)">
  14786. <summary>
  14787. <para>Displays the <see cref="T:System.Web.UI.WebControls.DataListItem" /> object on the client.</para>
  14788. </summary>
  14789. <param name="writer">A <see cref="T:System.Web.UI.HtmlTextWriter" qualify="true" /> object that contains the output stream for rendering on the client.</param>
  14790. <param name=" extractRows">
  14791. <see langword="true" /> to extract rows; otherwise <see langword="false" />.</param>
  14792. <param name=" tableLayout">
  14793. <see langword="true" /> to display as a table; otherwise <see langword="false" />. </param>
  14794. </member>
  14795. <member name="P:System.Web.UI.WebControls.DataListItem.DataItem">
  14796. <summary>
  14797. <para>Gets or sets a data item associated with the <see cref="T:System.Web.UI.WebControls.DataListItem" /> object in the <see cref="T:System.Web.UI.WebControls.DataList" /> control. </para>
  14798. </summary>
  14799. </member>
  14800. <member name="P:System.Web.UI.WebControls.DataListItem.ItemIndex">
  14801. <summary>
  14802. <para>Gets the index of the <see cref="T:System.Web.UI.WebControls.DataListItem" /> object from from the <see cref="P:System.Web.UI.WebControls.DataList.Items" /> collection of the
  14803. control.</para>
  14804. </summary>
  14805. </member>
  14806. <member name="P:System.Web.UI.WebControls.DataListItem.ItemType">
  14807. <summary>
  14808. <para>Gets the type of the item represented by the <see cref="T:System.Web.UI.WebControls.DataListItem" /> object in the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
  14809. </summary>
  14810. </member>
  14811. <member name="T:System.Web.UI.WebControls.DataListItemCollection">
  14812. <summary>
  14813. <para>Represents the collection of <see cref="T:System.Web.UI.WebControls.DataListItem" /> objects in the
  14814. <see cref="T:System.Web.UI.WebControls.DataList" /> control. This class cannot be
  14815. inherited.</para>
  14816. </summary>
  14817. </member>
  14818. <member name="M:System.Web.UI.WebControls.DataListItemCollection.#ctor(System.Collections.ArrayList)">
  14819. <summary>
  14820. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataListItemCollection" /> class.</para>
  14821. </summary>
  14822. <param name="items">A <see cref="T:System.Collections.ArrayList" qualify="true" /> object that contains the items with which to initialize the collection.</param>
  14823. </member>
  14824. <member name="M:System.Web.UI.WebControls.DataListItemCollection.CopyTo(System.Array,System.Int32)">
  14825. <summary>
  14826. <para>Copies all the items from this <see cref="T:System.Web.UI.WebControls.DataListItemCollection" /> collection to the specified <see cref="T:System.Array" qualify="true" /> object,
  14827. starting at the specified index in the <see cref="T:System.Array" qualify="true" /> object.</para>
  14828. </summary>
  14829. <param name="array">A zero-based <see cref="T:System.Array" qualify="true" /> object that receives the copied items from the <see cref="T:System.Web.UI.WebControls.DataListItemCollection" /> collection.</param>
  14830. <param name=" index">The first position in the specified <see cref="T:System.Array" qualify="true" /> object to receive the copied contents.</param>
  14831. </member>
  14832. <member name="M:System.Web.UI.WebControls.DataListItemCollection.GetEnumerator">
  14833. <summary>
  14834. <para>Returns a <see cref="T:System.Collections.IEnumerator" qualify="true" /> interface that contains all
  14835. <see cref="T:System.Web.UI.WebControls.DataListItem" /> objects in the <see cref="T:System.Web.UI.WebControls.DataListItemCollection" />.</para>
  14836. </summary>
  14837. <returns>
  14838. <para>A <see cref="T:System.Collections.IEnumerator" qualify="true" /> interface that contains all <see cref="T:System.Web.UI.WebControls.DataListItem" /> objects in the <see cref="T:System.Web.UI.WebControls.DataListItemCollection" />.</para>
  14839. </returns>
  14840. </member>
  14841. <member name="P:System.Web.UI.WebControls.DataListItemCollection.Count">
  14842. <summary>
  14843. <para>Gets the number of <see cref="T:System.Web.UI.WebControls.DataListItem" /> objects in the collection.</para>
  14844. </summary>
  14845. </member>
  14846. <member name="P:System.Web.UI.WebControls.DataListItemCollection.IsReadOnly">
  14847. <summary>
  14848. <para>Gets a value that indicates whether the <see cref="T:System.Web.UI.WebControls.DataListItem" /> objects in the <see cref="T:System.Web.UI.WebControls.DataListItemCollection" /> can be modified.</para>
  14849. </summary>
  14850. </member>
  14851. <member name="P:System.Web.UI.WebControls.DataListItemCollection.IsSynchronized">
  14852. <summary>
  14853. <para>Gets a value indicating whether access to the <see cref="T:System.Web.UI.WebControls.DataListItemCollection" /> is synchronized (thread-safe).</para>
  14854. </summary>
  14855. </member>
  14856. <member name="P:System.Web.UI.WebControls.DataListItemCollection.SyncRoot">
  14857. <summary>
  14858. <para>Gets the object that can be used to synchronize access
  14859. to the <see cref="T:System.Web.UI.WebControls.DataListItemCollection" /> collection. </para>
  14860. </summary>
  14861. </member>
  14862. <member name="P:System.Web.UI.WebControls.DataListItemCollection.Item(System.Int32)">
  14863. <summary>
  14864. <para>Gets a <see cref="T:System.Web.UI.WebControls.DataListItem" /> object at the specified index in the
  14865. collection.</para>
  14866. </summary>
  14867. <param name="index">The index of the <see cref="T:System.Web.UI.WebControls.DataListItem" /> in the collection to retrieve.</param>
  14868. </member>
  14869. <member name="T:System.Web.UI.WebControls.DataListItemEventArgs">
  14870. <summary>
  14871. <para>Provides data for the <see cref="E:System.Web.UI.WebControls.DataList.ItemCreated" /> and <see cref="E:System.Web.UI.WebControls.DataList.ItemDataBound" /> events of a <see cref="T:System.Web.UI.WebControls.DataList" /> control.
  14872. This class cannot be inherited.</para>
  14873. </summary>
  14874. </member>
  14875. <member name="M:System.Web.UI.WebControls.DataListItemEventArgs.#ctor(System.Web.UI.WebControls.DataListItem)">
  14876. <summary>
  14877. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataListItemEventArgs" /> class.</para>
  14878. </summary>
  14879. <param name="item">A <see cref="T:System.Web.UI.WebControls.DataListItem" /> object that represents an item in the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</param>
  14880. </member>
  14881. <member name="P:System.Web.UI.WebControls.DataListItemEventArgs.Item">
  14882. <summary>
  14883. <para> Gets the referenced item in the <see cref="T:System.Web.UI.WebControls.DataList" />
  14884. control when the event is raised.</para>
  14885. </summary>
  14886. </member>
  14887. <member name="T:System.Web.UI.WebControls.DataListItemEventHandler">
  14888. <summary>
  14889. <para>Represents the method that will handle the <see cref="E:System.Web.UI.WebControls.DataList.ItemCreated" /> and <see cref="E:System.Web.UI.WebControls.DataList.ItemDataBound" />
  14890. events of the <see cref="T:System.Web.UI.WebControls.DataList" />
  14891. control.</para>
  14892. </summary>
  14893. <param name="sender">The source of the event.</param>
  14894. <param name=" e">A <see cref="T:System.Web.UI.WebControls.DataListItemEventArgs" /> that contains the event data.</param>
  14895. </member>
  14896. <member name="T:System.Web.UI.WebControls.DayRenderEventArgs">
  14897. <summary>
  14898. <para>Provides data for the <see cref="E:System.Web.UI.WebControls.Calendar.DayRender" /> event of the <see cref="T:System.Web.UI.WebControls.Calendar" /> control.
  14899. This class cannot be
  14900. inherited.</para>
  14901. </summary>
  14902. </member>
  14903. <member name="M:System.Web.UI.WebControls.DayRenderEventArgs.#ctor(System.Web.UI.WebControls.TableCell,System.Web.UI.WebControls.CalendarDay)">
  14904. <summary>
  14905. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DayRenderEventArgs" /> class.</para>
  14906. </summary>
  14907. <param name="cell">A <see cref="T:System.Web.UI.WebControls.TableCell" /> object that represents a cell in the <see cref="T:System.Web.UI.WebControls.Calendar" /> control.</param>
  14908. <param name=" day">A <see cref="T:System.Web.UI.WebControls.CalendarDay" /> object that represents the day to render in the <see cref="T:System.Web.UI.WebControls.Calendar" /> control.</param>
  14909. </member>
  14910. <member name="P:System.Web.UI.WebControls.DayRenderEventArgs.Cell">
  14911. <summary>
  14912. <para> Gets the <see cref="T:System.Web.UI.WebControls.TableCell" /> object that represents
  14913. the cell being rendered in the <see cref="T:System.Web.UI.WebControls.Calendar" /> control.</para>
  14914. </summary>
  14915. </member>
  14916. <member name="P:System.Web.UI.WebControls.DayRenderEventArgs.Day">
  14917. <summary>
  14918. <para> Gets the <see cref="T:System.Web.UI.WebControls.CalendarDay" /> that represents the day
  14919. being rendered in the <see cref="T:System.Web.UI.WebControls.Calendar" /> control.</para>
  14920. </summary>
  14921. </member>
  14922. <member name="T:System.Web.UI.WebControls.DayRenderEventHandler">
  14923. <summary>
  14924. <para>Represents the method that will handle the <see cref="E:System.Web.UI.WebControls.Calendar.DayRender" />
  14925. event of the
  14926. <see cref="T:System.Web.UI.WebControls.Calendar" />
  14927. control.</para>
  14928. </summary>
  14929. <param name="sender">The source of the event.</param>
  14930. <param name=" e">A <see cref="T:System.Web.UI.WebControls.DayRenderEventArgs" /> that contains the event data.</param>
  14931. </member>
  14932. <member name="T:System.Web.UI.WebControls.DayNameFormat">
  14933. <summary>
  14934. <para> Specifies the display format for the days of the week on a <see cref="T:System.Web.UI.WebControls.Calendar" />
  14935. control.</para>
  14936. </summary>
  14937. </member>
  14938. <member name="F:System.Web.UI.WebControls.DayNameFormat.Full">
  14939. <summary>
  14940. <para>The days of the week displayed in full format. For example, Tuesday.</para>
  14941. </summary>
  14942. </member>
  14943. <member name="F:System.Web.UI.WebControls.DayNameFormat.Short">
  14944. <summary>
  14945. <para>The days of the week displayed in abbreviated format. For example, Tues.</para>
  14946. </summary>
  14947. </member>
  14948. <member name="F:System.Web.UI.WebControls.DayNameFormat.FirstLetter">
  14949. <summary>
  14950. <para>The days of the week displayed with just the first letter. For example, T.</para>
  14951. </summary>
  14952. </member>
  14953. <member name="F:System.Web.UI.WebControls.DayNameFormat.FirstTwoLetters">
  14954. <summary>
  14955. <para>The days of the week displayed with just the first two letters. For example, Tu.</para>
  14956. </summary>
  14957. </member>
  14958. <member name="T:System.Web.UI.WebControls.DropDownList">
  14959. <summary>
  14960. <para> Represents a control that allows the user to select a single item from a
  14961. drop-down list.</para>
  14962. </summary>
  14963. </member>
  14964. <member name="M:System.Web.UI.WebControls.DropDownList.#ctor">
  14965. <summary>
  14966. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DropDownList" /> class.</para>
  14967. </summary>
  14968. </member>
  14969. <member name="P:System.Web.UI.WebControls.DropDownList.BorderColor">
  14970. <summary>
  14971. <para>Gets or sets the border color of the control.</para>
  14972. </summary>
  14973. </member>
  14974. <member name="P:System.Web.UI.WebControls.DropDownList.BorderStyle">
  14975. <summary>
  14976. <para>Gets or sets the border style of the control.</para>
  14977. </summary>
  14978. </member>
  14979. <member name="P:System.Web.UI.WebControls.DropDownList.BorderWidth">
  14980. <summary>
  14981. <para> Gets or sets the border width for the control.</para>
  14982. </summary>
  14983. </member>
  14984. <member name="P:System.Web.UI.WebControls.DropDownList.SelectedIndex">
  14985. <summary>
  14986. <para> Gets or sets the index of the selected item
  14987. in the <see cref="T:System.Web.UI.WebControls.DropDownList" />
  14988. control.</para>
  14989. </summary>
  14990. </member>
  14991. <member name="P:System.Web.UI.WebControls.DropDownList.ToolTip">
  14992. <summary>
  14993. <para>Gets or sets the ToolTip text displayed when the mouse pointer
  14994. rests over the control. </para>
  14995. </summary>
  14996. </member>
  14997. <member name="T:System.Web.UI.WebControls.EditCommandColumn">
  14998. <summary>
  14999. <para>A special column type for
  15000. the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control that contains the
  15001. <see langword="Edit" /> command buttons
  15002. for editing data items in each
  15003. row.</para>
  15004. </summary>
  15005. </member>
  15006. <member name="M:System.Web.UI.WebControls.EditCommandColumn.#ctor">
  15007. <summary>
  15008. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.EditCommandColumn" /> class.</para>
  15009. </summary>
  15010. </member>
  15011. <member name="P:System.Web.UI.WebControls.EditCommandColumn.ButtonType">
  15012. <summary>
  15013. <para>Gets or sets the button type for the column.</para>
  15014. </summary>
  15015. </member>
  15016. <member name="P:System.Web.UI.WebControls.EditCommandColumn.CancelText">
  15017. <summary>
  15018. <para>Gets or sets the text to display for the
  15019. <see langword="Cancel" /> command button in the <see cref="T:System.Web.UI.WebControls.EditCommandColumn" />.</para>
  15020. </summary>
  15021. </member>
  15022. <member name="P:System.Web.UI.WebControls.EditCommandColumn.EditText">
  15023. <summary>
  15024. <para>Gets or sets the text to display for the
  15025. <see langword="Edit" /> command button in the
  15026. <see cref="T:System.Web.UI.WebControls.EditCommandColumn" />.</para>
  15027. </summary>
  15028. </member>
  15029. <member name="P:System.Web.UI.WebControls.EditCommandColumn.UpdateText">
  15030. <summary>
  15031. <para>Gets or sets the text to display for the
  15032. <see langword="Update" /> command
  15033. button in the <see cref="T:System.Web.UI.WebControls.EditCommandColumn" />.</para>
  15034. </summary>
  15035. </member>
  15036. <member name="T:System.Web.UI.WebControls.FirstDayOfWeek">
  15037. <summary>
  15038. <para> Specifies the day to display as the first day of the week on the <see cref="T:System.Web.UI.WebControls.Calendar" />
  15039. control.</para>
  15040. </summary>
  15041. </member>
  15042. <member name="F:System.Web.UI.WebControls.FirstDayOfWeek.Sunday">
  15043. <summary>
  15044. <para>The first day of the week is Sunday.</para>
  15045. </summary>
  15046. </member>
  15047. <member name="F:System.Web.UI.WebControls.FirstDayOfWeek.Monday">
  15048. <summary>
  15049. <para>The first day of the week is Monday.</para>
  15050. </summary>
  15051. </member>
  15052. <member name="F:System.Web.UI.WebControls.FirstDayOfWeek.Tuesday">
  15053. <summary>
  15054. <para>The first day of the week is Tuesday.</para>
  15055. </summary>
  15056. </member>
  15057. <member name="F:System.Web.UI.WebControls.FirstDayOfWeek.Wednesday">
  15058. <summary>
  15059. <para>The first day of the week is Wednesday.</para>
  15060. </summary>
  15061. </member>
  15062. <member name="F:System.Web.UI.WebControls.FirstDayOfWeek.Thursday">
  15063. <summary>
  15064. <para>The first day of the week is Thursday.</para>
  15065. </summary>
  15066. </member>
  15067. <member name="F:System.Web.UI.WebControls.FirstDayOfWeek.Friday">
  15068. <summary>
  15069. <para>The first day of the week is Friday.</para>
  15070. </summary>
  15071. </member>
  15072. <member name="F:System.Web.UI.WebControls.FirstDayOfWeek.Saturday">
  15073. <summary>
  15074. <para>The first day of the week is Saturday.</para>
  15075. </summary>
  15076. </member>
  15077. <member name="F:System.Web.UI.WebControls.FirstDayOfWeek.Default">
  15078. <summary>
  15079. <para> The first day of the week is specified by the system settings.</para>
  15080. </summary>
  15081. </member>
  15082. <member name="T:System.Web.UI.WebControls.FontNamesConverter">
  15083. <summary>
  15084. <para>Converts a string containing a list of font names to an array of strings containing the individual
  15085. names. It also performs the reverse function.</para>
  15086. </summary>
  15087. </member>
  15088. <member name="M:System.Web.UI.WebControls.FontNamesConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
  15089. <summary>
  15090. <para>Determines whether this converter can convert an object of the specified data type to an array of strings containing individual font names. </para>
  15091. </summary>
  15092. <param name="context">A <see cref="T:System.ComponentModel.ITypeDescriptorContext" qualify="true" /> that provides information about the context of a type converter. You can optionally pass in <see langword="null" /> for this parameter.</param>
  15093. <param name=" sourceType">A <see cref="T:System.Type" qualify="true" /> that represents the data type to convert from.</param>
  15094. <returns>
  15095. <para>
  15096. <see langword="true" /> if the type can be converted; otherwise,
  15097. <see langword="false" />.</para>
  15098. </returns>
  15099. </member>
  15100. <member name="M:System.Web.UI.WebControls.FontNamesConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
  15101. <summary>
  15102. <para> Converts a string that represents a list of font
  15103. names into an array of strings containing individual font names. </para>
  15104. </summary>
  15105. <param name="context">A <see cref="T:System.ComponentModel.ITypeDescriptorContext" qualify="true" /> that provides information about the context of a type converter. This parameter is not used in this method. It is reserved for future versions of this method. You can optionally pass in <see langword="null" /> for this parameter.</param>
  15106. <param name=" culture">A <see cref="T:System.Globalization.CultureInfo" qualify="true" /> object that represents information about a culture such as language, calendar system, and so on. This parameter is not used in this method. It is reserved for future versions of this method. You can optionally pass in <see langword="null" /> for this parameter. </param>
  15107. <param name=" value">A <see cref="T:System.Object" qualify="true" /> that represents the source string to convert from.</param>
  15108. <returns>
  15109. <para>A <see cref="T:System.Object" qualify="true" /> that represents the array of strings containing
  15110. the individual font names. </para>
  15111. </returns>
  15112. </member>
  15113. <member name="M:System.Web.UI.WebControls.FontNamesConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
  15114. <summary>
  15115. <para> Creates a string that represents a list of
  15116. font names from an array of strings containing individual font names.</para>
  15117. </summary>
  15118. <param name="context">A <see cref="T:System.ComponentModel.ITypeDescriptorContext" qualify="true" /> object that provides information about the context of a type converter. This parameter is not used in this method. It is reserved for future versions of this method. You can optionally pass in <see langword="null" /> for this parameter.</param>
  15119. <param name=" culture">A <see cref="T:System.Globalization.CultureInfo" qualify="true" /> object that represents information about a culture such as language, calendar system, and so on. This parameter is not used in this method. It is reserved for future versions of this method. You can optionally pass in <see langword="null" /> for this parameter. </param>
  15120. <param name=" value">A <see cref="T:System.Object" qualify="true" /> that represents the source array of strings to convert from.</param>
  15121. <param name=" destinationType">A <see cref="T:System.Type" qualify="true" /> object that represents the data type to convert to. This parameter must be set to the <see langword="string" /> data type.</param>
  15122. <returns>
  15123. <para>A <see cref="T:System.Object" qualify="true" /> that represents a
  15124. string containing a list
  15125. of font names.</para>
  15126. </returns>
  15127. </member>
  15128. <member name="T:System.Web.UI.WebControls.FontInfo">
  15129. <summary>
  15130. <para>Encapsulates the font properties of text. This class cannot be inherited.</para>
  15131. </summary>
  15132. </member>
  15133. <member name="M:System.Web.UI.WebControls.FontInfo.CopyFrom(System.Web.UI.WebControls.FontInfo)">
  15134. <summary>
  15135. <para>Duplicates the font properties of the specified <see cref="T:System.Web.UI.WebControls.FontInfo" />
  15136. into the instance of the <see cref="T:System.Web.UI.WebControls.FontInfo" /> class
  15137. that this method is called from. </para>
  15138. </summary>
  15139. <param name="f">A <see cref="T:System.Web.UI.WebControls.FontInfo" /> that contains the font properties to duplicate.</param>
  15140. </member>
  15141. <member name="M:System.Web.UI.WebControls.FontInfo.MergeWith(System.Web.UI.WebControls.FontInfo)">
  15142. <summary>
  15143. <para>Combines the font properties of the specified <see cref="T:System.Web.UI.WebControls.FontInfo" />
  15144. with the instance of the <see cref="T:System.Web.UI.WebControls.FontInfo" /> class
  15145. that this method is called
  15146. from. </para>
  15147. </summary>
  15148. <param name="f">A <see cref="T:System.Web.UI.WebControls.FontInfo" /> that contains the font properties to combine.</param>
  15149. </member>
  15150. <member name="M:System.Web.UI.WebControls.FontInfo.ToString">
  15151. <summary>
  15152. <para> Returns a string that contains the font name and size
  15153. for an instance of the <see cref="T:System.Web.UI.WebControls.FontInfo" />
  15154. class.</para>
  15155. </summary>
  15156. <returns>
  15157. <para>A string that contains the font name and size for an instance of the <see cref="T:System.Web.UI.WebControls.FontInfo" /> class.</para>
  15158. </returns>
  15159. </member>
  15160. <member name="P:System.Web.UI.WebControls.FontInfo.Bold">
  15161. <summary>
  15162. <para>Gets or sets a value that indicates whether the font is bold.</para>
  15163. </summary>
  15164. </member>
  15165. <member name="P:System.Web.UI.WebControls.FontInfo.Italic">
  15166. <summary>
  15167. <para>Gets or sets a value that indicates whether the font is italic.</para>
  15168. </summary>
  15169. </member>
  15170. <member name="P:System.Web.UI.WebControls.FontInfo.Name">
  15171. <summary>
  15172. <para>Gets or sets the primary font name.</para>
  15173. </summary>
  15174. </member>
  15175. <member name="P:System.Web.UI.WebControls.FontInfo.Names">
  15176. <summary>
  15177. <para>Gets or sets an ordered array of font names. </para>
  15178. </summary>
  15179. </member>
  15180. <member name="P:System.Web.UI.WebControls.FontInfo.Overline">
  15181. <summary>
  15182. <para>Gets or sets a value that indicates whether the font is overlined.</para>
  15183. </summary>
  15184. </member>
  15185. <member name="P:System.Web.UI.WebControls.FontInfo.Size">
  15186. <summary>
  15187. <para>Gets or sets the font size.</para>
  15188. </summary>
  15189. </member>
  15190. <member name="P:System.Web.UI.WebControls.FontInfo.Strikeout">
  15191. <summary>
  15192. <para>Gets or sets a value that indicates whether the font is strikethrough.</para>
  15193. </summary>
  15194. </member>
  15195. <member name="P:System.Web.UI.WebControls.FontInfo.Underline">
  15196. <summary>
  15197. <para>Gets or sets a value that indicates whether the font is underlined.</para>
  15198. </summary>
  15199. </member>
  15200. <member name="T:System.Web.UI.WebControls.FontSize">
  15201. <summary>
  15202. <para> Specifies the font
  15203. sizes defined by HTML 4.0.</para>
  15204. </summary>
  15205. </member>
  15206. <member name="F:System.Web.UI.WebControls.FontSize.NotSet">
  15207. <summary>
  15208. <para>
  15209. The font size is not set.
  15210. </para>
  15211. </summary>
  15212. </member>
  15213. <member name="F:System.Web.UI.WebControls.FontSize.AsUnit">
  15214. <summary>
  15215. <para>The font size is specified by a point value.</para>
  15216. </summary>
  15217. </member>
  15218. <member name="F:System.Web.UI.WebControls.FontSize.Smaller">
  15219. <summary>
  15220. <para> The font size is one size smaller than the parent element.
  15221. </para>
  15222. </summary>
  15223. </member>
  15224. <member name="F:System.Web.UI.WebControls.FontSize.Larger">
  15225. <summary>
  15226. <para> The font size is one size larger than the parent element.
  15227. </para>
  15228. </summary>
  15229. </member>
  15230. <member name="F:System.Web.UI.WebControls.FontSize.XXSmall">
  15231. <summary>
  15232. <para> The font size is two sizes smaller than the base font size.
  15233. </para>
  15234. </summary>
  15235. </member>
  15236. <member name="F:System.Web.UI.WebControls.FontSize.XSmall">
  15237. <summary>
  15238. <para> The font size is one size smaller than the base font size.
  15239. </para>
  15240. </summary>
  15241. </member>
  15242. <member name="F:System.Web.UI.WebControls.FontSize.Small">
  15243. <summary>
  15244. <para> The base font size determined by the browser.</para>
  15245. </summary>
  15246. </member>
  15247. <member name="F:System.Web.UI.WebControls.FontSize.Medium">
  15248. <summary>
  15249. <para> The font size is one size larger than the default font size.
  15250. </para>
  15251. </summary>
  15252. </member>
  15253. <member name="F:System.Web.UI.WebControls.FontSize.Large">
  15254. <summary>
  15255. <para> The font size is two sizes larger than the base font size.
  15256. </para>
  15257. </summary>
  15258. </member>
  15259. <member name="F:System.Web.UI.WebControls.FontSize.XLarge">
  15260. <summary>
  15261. <para> The font size is three sizes larger than the base font size.
  15262. </para>
  15263. </summary>
  15264. </member>
  15265. <member name="F:System.Web.UI.WebControls.FontSize.XXLarge">
  15266. <summary>
  15267. <para> The font size is four sizes larger than the base font size.
  15268. </para>
  15269. </summary>
  15270. </member>
  15271. <member name="T:System.Web.UI.WebControls.FontUnit">
  15272. <summary>
  15273. <para>Represents the size of a font.</para>
  15274. </summary>
  15275. </member>
  15276. <member name="F:System.Web.UI.WebControls.FontUnit.Empty">
  15277. <summary>
  15278. <para>Represents an empty <see cref="T:System.Web.UI.WebControls.FontUnit" /> object. </para>
  15279. </summary>
  15280. </member>
  15281. <member name="F:System.Web.UI.WebControls.FontUnit.Smaller">
  15282. <summary>
  15283. <para>Represents a <see cref="T:System.Web.UI.WebControls.FontUnit" /> object with the <see cref="P:System.Web.UI.WebControls.FontUnit.Type" /> property set to
  15284. <see langword="FontSize.Smaller" />. </para>
  15285. </summary>
  15286. </member>
  15287. <member name="F:System.Web.UI.WebControls.FontUnit.Larger">
  15288. <summary>
  15289. <para>Represents a <see cref="T:System.Web.UI.WebControls.FontUnit" /> object with the <see cref="P:System.Web.UI.WebControls.FontUnit.Type" /> property set to <see langword="FontSize.Larger" />.</para>
  15290. </summary>
  15291. </member>
  15292. <member name="F:System.Web.UI.WebControls.FontUnit.XXSmall">
  15293. <summary>
  15294. <para>Represents a <see cref="T:System.Web.UI.WebControls.FontUnit" /> object with the <see cref="P:System.Web.UI.WebControls.FontUnit.Type" /> property set to <see langword="FontSize.XXSmall" />.</para>
  15295. </summary>
  15296. </member>
  15297. <member name="F:System.Web.UI.WebControls.FontUnit.XSmall">
  15298. <summary>
  15299. <para>Represents a <see cref="T:System.Web.UI.WebControls.FontUnit" /> object with the <see cref="P:System.Web.UI.WebControls.FontUnit.Type" /> property set to <see langword="FontSize.XSmall" />.</para>
  15300. </summary>
  15301. </member>
  15302. <member name="F:System.Web.UI.WebControls.FontUnit.Small">
  15303. <summary>
  15304. <para>Represents a <see cref="T:System.Web.UI.WebControls.FontUnit" /> object with the <see cref="P:System.Web.UI.WebControls.FontUnit.Type" /> property set to <see langword="FontSize.Small" />.</para>
  15305. </summary>
  15306. </member>
  15307. <member name="F:System.Web.UI.WebControls.FontUnit.Medium">
  15308. <summary>
  15309. <para>Represents a <see cref="T:System.Web.UI.WebControls.FontUnit" /> object with the <see cref="P:System.Web.UI.WebControls.FontUnit.Type" /> property set to <see langword="FontSize.Medium" />.</para>
  15310. </summary>
  15311. </member>
  15312. <member name="F:System.Web.UI.WebControls.FontUnit.Large">
  15313. <summary>
  15314. <para>Represents a <see cref="T:System.Web.UI.WebControls.FontUnit" /> object with the <see cref="P:System.Web.UI.WebControls.FontUnit.Type" /> property set to <see langword="FontSize.Large" />.</para>
  15315. </summary>
  15316. </member>
  15317. <member name="F:System.Web.UI.WebControls.FontUnit.XLarge">
  15318. <summary>
  15319. <para>Represents a <see cref="T:System.Web.UI.WebControls.FontUnit" /> object with the <see cref="P:System.Web.UI.WebControls.FontUnit.Type" /> property set to <see langword="FontSize.XLarge" />.</para>
  15320. </summary>
  15321. </member>
  15322. <member name="F:System.Web.UI.WebControls.FontUnit.XXLarge">
  15323. <summary>
  15324. <para>Represents a <see cref="T:System.Web.UI.WebControls.FontUnit" /> object with the <see cref="P:System.Web.UI.WebControls.FontUnit.Type" /> property set to <see langword="FontSize.XXLarge" />.</para>
  15325. </summary>
  15326. </member>
  15327. <member name="M:System.Web.UI.WebControls.FontUnit.#ctor(System.Web.UI.WebControls.FontSize)">
  15328. <summary>
  15329. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.FontUnit" /> class with the
  15330. specified <see cref="T:System.Web.UI.WebControls.FontSize" />.</para>
  15331. </summary>
  15332. <param name="type">One of the <see cref="T:System.Web.UI.WebControls.FontSize" /> values.</param>
  15333. </member>
  15334. <member name="M:System.Web.UI.WebControls.FontUnit.#ctor(System.Web.UI.WebControls.Unit)">
  15335. <summary>
  15336. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.FontUnit" /> class with the specified <see cref="T:System.Web.UI.WebControls.Unit" />.</para>
  15337. </summary>
  15338. <param name="value">A <see cref="T:System.Web.UI.WebControls.Unit" /> that specifies the font size.</param>
  15339. </member>
  15340. <member name="M:System.Web.UI.WebControls.FontUnit.#ctor(System.Int32)">
  15341. <summary>
  15342. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.FontUnit" /> class with the specified font size.</para>
  15343. </summary>
  15344. <param name="value">The size of the font.</param>
  15345. </member>
  15346. <member name="M:System.Web.UI.WebControls.FontUnit.#ctor(System.String)">
  15347. <summary>
  15348. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.FontUnit" /> class with the specified font size.</para>
  15349. </summary>
  15350. <param name="value">A string representation of one of the <see cref="T:System.Web.UI.WebControls.FontSize" /> values.</param>
  15351. </member>
  15352. <member name="M:System.Web.UI.WebControls.FontUnit.#ctor(System.String,System.Globalization.CultureInfo)">
  15353. <summary>
  15354. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.FontUnit" /> class with the specified font size and
  15355. <see cref="T:System.Globalization.CultureInfo" qualify="true" /> object.</para>
  15356. </summary>
  15357. <param name="value">A string representation of one of the <see cref="T:System.Web.UI.WebControls.FontSize" /> values.</param>
  15358. <param name=" culture">A <see cref="T:System.Globalization.CultureInfo" qualify="true" /> object that represents the culture to create the <see cref="T:System.Web.UI.WebControls.FontUnit" /> object for.</param>
  15359. </member>
  15360. <member name="M:System.Web.UI.WebControls.FontUnit.GetHashCode">
  15361. <summary>
  15362. <para>Returns the hash code for this instance.</para>
  15363. </summary>
  15364. <returns>
  15365. <para>A 32-bit signed integer that represents the hash code.</para>
  15366. </returns>
  15367. </member>
  15368. <member name="M:System.Web.UI.WebControls.FontUnit.Equals(System.Object)">
  15369. <summary>
  15370. <para>Determines whether the specified <see cref="T:System.Object" qualify="true" /> is equivalent to the instance of the <see cref="T:System.Web.UI.WebControls.FontUnit" /> class that this method is called
  15371. from.</para>
  15372. </summary>
  15373. <param name="obj">A <see cref="T:System.Object" qualify="true" /> that contains the object to compare to this instance. </param>
  15374. <returns>
  15375. <para>
  15376. <see langword="true" /> if the specified
  15377. <see cref="T:System.Object" qualify="true" /> is equivalent to the instance of the <see cref="T:System.Web.UI.WebControls.FontUnit" /> class
  15378. that this method is called
  15379. from; otherwise, <see langword="false" />.</para>
  15380. </returns>
  15381. </member>
  15382. <member name="M:System.Web.UI.WebControls.FontUnit.op_Equality(System.Web.UI.WebControls.FontUnit,System.Web.UI.WebControls.FontUnit)">
  15383. <summary>
  15384. <para>Compares two <see cref="T:System.Web.UI.WebControls.FontUnit" /> objects for equality.</para>
  15385. </summary>
  15386. <param name="left">A <see cref="T:System.Web.UI.WebControls.FontUnit" /> on the left of the operator that contains font properties.</param>
  15387. <param name=" right">A <see cref="T:System.Web.UI.WebControls.FontUnit" /> on the right of the operator that contains font properties.</param>
  15388. <returns>
  15389. <para>
  15390. <see langword="true" /> if both <see cref="T:System.Web.UI.WebControls.FontUnit" /> objects are equal; otherwise,
  15391. <see langword="false" />. </para>
  15392. </returns>
  15393. </member>
  15394. <member name="M:System.Web.UI.WebControls.FontUnit.op_Inequality(System.Web.UI.WebControls.FontUnit,System.Web.UI.WebControls.FontUnit)">
  15395. <summary>
  15396. <para>Compares two <see cref="T:System.Web.UI.WebControls.FontUnit" /> objects
  15397. for inequality.</para>
  15398. </summary>
  15399. <param name="left">A <see cref="T:System.Web.UI.WebControls.FontUnit" /> that contains font properties on the left of the operator.</param>
  15400. <param name=" right">A <see cref="T:System.Web.UI.WebControls.FontUnit" /> that contains font properties on the right of the operator.</param>
  15401. <returns>
  15402. <para>
  15403. <see langword="true" /> if both <see cref="T:System.Web.UI.WebControls.FontUnit" /> objects are not
  15404. equal; otherwise, <see langword="false" />. </para>
  15405. </returns>
  15406. </member>
  15407. <member name="M:System.Web.UI.WebControls.FontUnit.Parse(System.String)">
  15408. <summary>
  15409. <para> Converts the specified string to
  15410. its <see cref="T:System.Web.UI.WebControls.FontUnit" /> equivalent.</para>
  15411. </summary>
  15412. <param name="s">A string representation of one of the <see cref="T:System.Web.UI.WebControls.FontSize" /> values.</param>
  15413. <returns>
  15414. <para>A <see cref="T:System.Web.UI.WebControls.FontUnit" />
  15415. that represents the font size specified
  15416. by the <paramref name="s" /> parameter.</para>
  15417. </returns>
  15418. </member>
  15419. <member name="M:System.Web.UI.WebControls.FontUnit.Parse(System.String,System.Globalization.CultureInfo)">
  15420. <summary>
  15421. <para>Converts the specified string to its <see cref="T:System.Web.UI.WebControls.FontUnit" /> equivalent in the specified culture.</para>
  15422. </summary>
  15423. <param name="s">A string representation of one of the <see cref="T:System.Web.UI.WebControls.FontSize" /> values.</param>
  15424. <param name="culture">A <see cref="T:System.Globalization.CultureInfo" qualify="true" /> that represents the culture of the <see cref="T:System.Web.UI.WebControls.FontUnit" /> object.</param>
  15425. <returns>
  15426. <para>A <see cref="T:System.Web.UI.WebControls.FontUnit" /> that represents the font size
  15427. specified by the <paramref name="s" />
  15428. parameter in the culture specified by the <paramref name="culture" /> parameter.</para>
  15429. </returns>
  15430. </member>
  15431. <member name="M:System.Web.UI.WebControls.FontUnit.Point(System.Int32)">
  15432. <summary>
  15433. <para>Creates a <see cref="T:System.Web.UI.WebControls.FontUnit" /> of type <see cref="T:System.Drawing.Point" qualify="true" /> from an integer value.</para>
  15434. </summary>
  15435. <param name="n">An integer representing the <see cref="T:System.Drawing.Point" qualify="true" /> value to convert to a <see cref="T:System.Web.UI.WebControls.FontUnit" />.</param>
  15436. <returns>
  15437. <para>A <see cref="T:System.Web.UI.WebControls.FontUnit" />
  15438. that represents the font size specified by the <paramref name="n" />
  15439. parameter.</para>
  15440. </returns>
  15441. </member>
  15442. <member name="M:System.Web.UI.WebControls.FontUnit.ToString">
  15443. <summary>
  15444. <para>Converts the <see cref="T:System.Web.UI.WebControls.FontUnit" /> object to the
  15445. default string representation.</para>
  15446. </summary>
  15447. <returns>
  15448. <para>The string representation of the <see cref="T:System.Web.UI.WebControls.FontUnit" /> object.</para>
  15449. </returns>
  15450. </member>
  15451. <member name="M:System.Web.UI.WebControls.FontUnit.ToString(System.Globalization.CultureInfo)">
  15452. <summary>
  15453. <para>Converts the <see cref="T:System.Web.UI.WebControls.FontUnit" /> object to a string
  15454. representation, using the specified <see cref="T:System.Globalization.CultureInfo" qualify="true" />.</para>
  15455. </summary>
  15456. <param name="culture">A <see cref="T:System.Globalization.CultureInfo" qualify="true" /> that contains the culture to represent the <see cref="T:System.Web.UI.WebControls.FontUnit" />.</param>
  15457. <returns>
  15458. <para>The string representation of the <see cref="T:System.Web.UI.WebControls.FontUnit" /> object in the specified culture.</para>
  15459. </returns>
  15460. </member>
  15461. <member name="M:System.Web.UI.WebControls.FontUnit.op_Implicit(System.Int32)~System.Web.UI.WebControls.FontUnit">
  15462. <summary>
  15463. <para>Implicitly creates a <see cref="T:System.Web.UI.WebControls.FontUnit" /> of type <see cref="T:System.Drawing.Point" qualify="true" /> from an integer value.</para>
  15464. </summary>
  15465. <param name="n">An integer representing the <see cref="T:System.Drawing.Point" qualify="true" /> value to convert into a <see cref="T:System.Web.UI.WebControls.FontUnit" />.</param>
  15466. <returns>
  15467. <para>A <see cref="T:System.Web.UI.WebControls.FontUnit" /> of type <see cref="T:System.Drawing.Point" qualify="true" /> that represents the
  15468. font size specified the <paramref name="n" /> parameter.</para>
  15469. </returns>
  15470. </member>
  15471. <member name="P:System.Web.UI.WebControls.FontUnit.IsEmpty">
  15472. <summary>
  15473. <para>Gets a value that indicates whether the font size has been set.</para>
  15474. </summary>
  15475. </member>
  15476. <member name="P:System.Web.UI.WebControls.FontUnit.Type">
  15477. <summary>
  15478. <para>Gets a <see cref="T:System.Web.UI.WebControls.FontSize" /> enumeration value that represents the font size.</para>
  15479. </summary>
  15480. </member>
  15481. <member name="P:System.Web.UI.WebControls.FontUnit.Unit">
  15482. <summary>
  15483. <para>Gets a <see cref="T:System.Web.UI.WebControls.Unit" /> that represents
  15484. the font size. </para>
  15485. </summary>
  15486. </member>
  15487. <member name="T:System.Web.UI.WebControls.FontUnitConverter">
  15488. <summary>
  15489. <para>Converts a <see cref="T:System.Web.UI.WebControls.FontUnit" /> to an object with another data type.
  15490. It also converts an object with another data type to a <see cref="T:System.Web.UI.WebControls.FontUnit" />.</para>
  15491. </summary>
  15492. </member>
  15493. <member name="M:System.Web.UI.WebControls.FontUnitConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
  15494. <summary>
  15495. <para> Determines whether a data type can be converted to a <see cref="T:System.Web.UI.WebControls.FontUnit" />.</para>
  15496. </summary>
  15497. <param name="context">A <see cref="T:System.ComponentModel.ITypeDescriptorContext" qualify="true" /> implemented object that provides information about the context of a type converter.</param>
  15498. <param name=" sourceType">A <see cref="T:System.Type" qualify="true" /> that represents the data type to check.</param>
  15499. <returns>
  15500. <para>
  15501. <see langword="true" /> if the data
  15502. type specified by the <paramref name="sourceType" />
  15503. parameter can be converted to a <see cref="T:System.Web.UI.WebControls.FontUnit" />;
  15504. otherwise, <see langword="false" />.</para>
  15505. </returns>
  15506. </member>
  15507. <member name="M:System.Web.UI.WebControls.FontUnitConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
  15508. <summary>
  15509. <para> Converts an object to a <see cref="T:System.Web.UI.WebControls.FontUnit" /> in a specific culture.</para>
  15510. </summary>
  15511. <param name="context">A <see cref="T:System.ComponentModel.ITypeDescriptorContext" qualify="true" /> implemented object that provides information about the context of a type converter.</param>
  15512. <param name=" culture">A <see cref="T:System.Globalization.CultureInfo" qualify="true" /> that specifies the culture to represent the <see cref="T:System.Web.UI.WebControls.FontUnit" />, when it is expressed in points.</param>
  15513. <param name=" value">The object to convert to a <see cref="T:System.Web.UI.WebControls.FontUnit" />.</param>
  15514. <returns>
  15515. <para>A <see cref="T:System.Object" qualify="true" />
  15516. that represents the converted value.</para>
  15517. </returns>
  15518. </member>
  15519. <member name="M:System.Web.UI.WebControls.FontUnitConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
  15520. <summary>
  15521. <para> Converts a <see cref="T:System.Web.UI.WebControls.FontUnit" /> to an object with a different data
  15522. type. </para>
  15523. </summary>
  15524. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" qualify="true" /> implemented object that provides information about the context of a type converter.</param>
  15525. <param name=" culture">A <see cref="T:System.Globalization.CultureInfo" qualify="true" /> that specifies the culture to represent the <see cref="T:System.Web.UI.WebControls.FontUnit" />, when it is expressed in points. </param>
  15526. <param name=" value">A <see cref="T:System.Object" qualify="true" /> that represents the <see cref="T:System.Web.UI.WebControls.FontUnit" /> to convert.</param>
  15527. <param name=" destinationType">A <see cref="T:System.Type" qualify="true" /> that represents the data type to convert to.</param>
  15528. <returns>
  15529. <para>A <see cref="T:System.Object" qualify="true" />
  15530. that represents the converted value.</para>
  15531. </returns>
  15532. </member>
  15533. <member name="M:System.Web.UI.WebControls.FontUnitConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)">
  15534. <summary>
  15535. <para>Returns a <see cref="T:System.ComponentModel.TypeConverter.StandardValuesCollection" qualify="true" />
  15536. containing the standard values
  15537. for a <see cref="T:System.Web.UI.WebControls.FontUnit" />, using the specified format
  15538. context.</para>
  15539. </summary>
  15540. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" qualify="true" /> that provides information about the context of a type converter.</param>
  15541. <returns>
  15542. <para> A <see cref="T:System.ComponentModel.TypeConverter.StandardValuesCollection" qualify="true" />
  15543. containing
  15544. the standard values for a <see cref="T:System.Web.UI.WebControls.FontUnit" />.</para>
  15545. </returns>
  15546. </member>
  15547. <member name="M:System.Web.UI.WebControls.FontUnitConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)">
  15548. <summary>
  15549. <para> Returns whether the
  15550. <see cref="T:System.ComponentModel.TypeConverter.StandardValuesCollection" qualify="true" /> returned by the <see cref="M:System.Web.UI.WebControls.FontUnitConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)" /> method is an exclusive list
  15551. of values, using the specified format
  15552. context.</para>
  15553. </summary>
  15554. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" qualify="true" /> that provides information about the context of a type converter.</param>
  15555. <returns>
  15556. <para>
  15557. <see langword="false" /> for all cases.</para>
  15558. </returns>
  15559. </member>
  15560. <member name="M:System.Web.UI.WebControls.FontUnitConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)">
  15561. <summary>
  15562. <para>Returns whether the instance of the <see cref="T:System.Web.UI.WebControls.FontUnitConverter" /> class that this method is called from
  15563. supports a standard set of values that can be picked from a list, using the specified format
  15564. context.</para>
  15565. </summary>
  15566. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" qualify="true" /> that provides information about the context of a type converter.</param>
  15567. <returns>
  15568. <para>
  15569. <see langword="true" /> for all cases.</para>
  15570. </returns>
  15571. </member>
  15572. <member name="T:System.Web.UI.WebControls.GridLines">
  15573. <summary>
  15574. <para> Specifies the grid line styles for controls displaying items in a table structure.</para>
  15575. </summary>
  15576. </member>
  15577. <member name="F:System.Web.UI.WebControls.GridLines.None">
  15578. <summary>
  15579. <para> No grid lines rendered.</para>
  15580. </summary>
  15581. </member>
  15582. <member name="F:System.Web.UI.WebControls.GridLines.Horizontal">
  15583. <summary>
  15584. <para> Only horizontal grid lines rendered.</para>
  15585. </summary>
  15586. </member>
  15587. <member name="F:System.Web.UI.WebControls.GridLines.Vertical">
  15588. <summary>
  15589. <para> Only vertical grid lines rendered.</para>
  15590. </summary>
  15591. </member>
  15592. <member name="F:System.Web.UI.WebControls.GridLines.Both">
  15593. <summary>
  15594. <para> Both horizontal and vertical grid lines rendered.</para>
  15595. </summary>
  15596. </member>
  15597. <member name="T:System.Web.UI.WebControls.HorizontalAlign">
  15598. <summary>
  15599. <para> Specifies the horizonal alignment of items within a container.</para>
  15600. </summary>
  15601. </member>
  15602. <member name="F:System.Web.UI.WebControls.HorizontalAlign.NotSet">
  15603. <summary>
  15604. <para> The horizontal alignment is not set.</para>
  15605. </summary>
  15606. </member>
  15607. <member name="F:System.Web.UI.WebControls.HorizontalAlign.Left">
  15608. <summary>
  15609. <para> The contents of a container are left justified.</para>
  15610. </summary>
  15611. </member>
  15612. <member name="F:System.Web.UI.WebControls.HorizontalAlign.Center">
  15613. <summary>
  15614. <para> The contents of a container are centered.</para>
  15615. </summary>
  15616. </member>
  15617. <member name="F:System.Web.UI.WebControls.HorizontalAlign.Right">
  15618. <summary>
  15619. <para> The contents of a container are right justified.</para>
  15620. </summary>
  15621. </member>
  15622. <member name="F:System.Web.UI.WebControls.HorizontalAlign.Justify">
  15623. <summary>
  15624. <para> The contents
  15625. of a container are uniformly spread out and aligned with both the left and right margins.</para>
  15626. </summary>
  15627. </member>
  15628. <member name="T:System.Web.UI.WebControls.HyperLinkControlBuilder">
  15629. <summary>
  15630. <para>Interacts with the parser to build a <see cref="T:System.Web.UI.WebControls.HyperLink" /> control.</para>
  15631. </summary>
  15632. </member>
  15633. <member name="M:System.Web.UI.WebControls.HyperLinkControlBuilder.AllowWhitespaceLiterals">
  15634. <summary>
  15635. <para> Gets a value that indicates whether white spaces are allowed in literals
  15636. for this control.</para>
  15637. </summary>
  15638. <returns>
  15639. <para>Overloaded to always returns <see langword="false" /> to indicate that white spaces are not
  15640. allowed.</para>
  15641. </returns>
  15642. </member>
  15643. <member name="T:System.Web.UI.WebControls.HyperLink">
  15644. <summary>
  15645. <para> A control that displays a link to another Web page.</para>
  15646. </summary>
  15647. </member>
  15648. <member name="M:System.Web.UI.WebControls.HyperLink.#ctor">
  15649. <summary>
  15650. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.HyperLink" /> class.</para>
  15651. </summary>
  15652. </member>
  15653. <member name="P:System.Web.UI.WebControls.HyperLink.ImageUrl">
  15654. <summary>
  15655. <para> Gets or sets the path to an image to
  15656. display for the <see cref="T:System.Web.UI.WebControls.HyperLink" />
  15657. control.</para>
  15658. </summary>
  15659. </member>
  15660. <member name="P:System.Web.UI.WebControls.HyperLink.NavigateUrl">
  15661. <summary>
  15662. <para>Gets or sets the URL to link to when the <see cref="T:System.Web.UI.WebControls.HyperLink" /> control is clicked.</para>
  15663. </summary>
  15664. </member>
  15665. <member name="P:System.Web.UI.WebControls.HyperLink.Target">
  15666. <summary>
  15667. <para>Gets or sets the target window or frame to display
  15668. the Web page content linked to when the <see cref="T:System.Web.UI.WebControls.HyperLink" /> control is
  15669. clicked.</para>
  15670. </summary>
  15671. </member>
  15672. <member name="P:System.Web.UI.WebControls.HyperLink.Text">
  15673. <summary>
  15674. <para> Gets or sets the text caption for the <see cref="T:System.Web.UI.WebControls.HyperLink" /> control.</para>
  15675. </summary>
  15676. </member>
  15677. <member name="T:System.Web.UI.WebControls.HyperLinkColumn">
  15678. <summary>
  15679. <para>A column type for the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control that
  15680. contains a hyperlink for each
  15681. item in the column.</para>
  15682. </summary>
  15683. </member>
  15684. <member name="M:System.Web.UI.WebControls.HyperLinkColumn.#ctor">
  15685. <summary>
  15686. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.HyperLinkColumn" /> class.</para>
  15687. </summary>
  15688. </member>
  15689. <member name="M:System.Web.UI.WebControls.HyperLinkColumn.FormatDataNavigateUrlValue(System.Object)">
  15690. <summary>
  15691. <para>Formats a data-bound URL using the format specified by the <see cref="P:System.Web.UI.WebControls.HyperLinkColumn.DataNavigateUrlFormatString" /> property.</para>
  15692. </summary>
  15693. <param name="dataUrlValue">The data-bound URL to format.</param>
  15694. <returns>
  15695. <para>The data-bound URL in the format specified by the
  15696. <see cref="P:System.Web.UI.WebControls.HyperLinkColumn.DataNavigateUrlFormatString" /> property.</para>
  15697. </returns>
  15698. </member>
  15699. <member name="M:System.Web.UI.WebControls.HyperLinkColumn.FormatDataTextValue(System.Object)">
  15700. <summary>
  15701. <para>Formats a data-bound text caption using the format specified by the <see cref="P:System.Web.UI.WebControls.HyperLinkColumn.DataTextFormatString" /> property.</para>
  15702. </summary>
  15703. <param name="dataTextValue">The data-bound URL to format.</param>
  15704. <returns>
  15705. <para>The data-bound text caption in the format specified by the
  15706. <see cref="P:System.Web.UI.WebControls.HyperLinkColumn.DataTextFormatString" /> property.</para>
  15707. </returns>
  15708. </member>
  15709. <member name="P:System.Web.UI.WebControls.HyperLinkColumn.DataNavigateUrlField">
  15710. <summary>
  15711. <para> Gets or sets the field from a data source to bind
  15712. to the URL of the hyperlinks in the <see cref="T:System.Web.UI.WebControls.HyperLinkColumn" />.</para>
  15713. </summary>
  15714. </member>
  15715. <member name="P:System.Web.UI.WebControls.HyperLinkColumn.DataNavigateUrlFormatString">
  15716. <summary>
  15717. <para> Gets or
  15718. sets the display format for the URL of the hyperlinks in the <see cref="T:System.Web.UI.WebControls.HyperLinkColumn" />
  15719. when the URL is data-bound to a field in a data
  15720. source.</para>
  15721. </summary>
  15722. </member>
  15723. <member name="P:System.Web.UI.WebControls.HyperLinkColumn.DataTextField">
  15724. <summary>
  15725. <para> Gets or sets the field from a data source to bind to
  15726. the text caption of the hyperlinks in the <see cref="T:System.Web.UI.WebControls.HyperLinkColumn" />.</para>
  15727. </summary>
  15728. </member>
  15729. <member name="P:System.Web.UI.WebControls.HyperLinkColumn.DataTextFormatString">
  15730. <summary>
  15731. <para> Gets or sets the display format
  15732. for the text caption of the hyperlinks in the <see cref="T:System.Web.UI.WebControls.HyperLinkColumn" />
  15733. column.</para>
  15734. </summary>
  15735. </member>
  15736. <member name="P:System.Web.UI.WebControls.HyperLinkColumn.NavigateUrl">
  15737. <summary>
  15738. <para>Gets or sets the URL to link to when a hyperlink in
  15739. the column<see langword=" " /> is clicked.</para>
  15740. </summary>
  15741. </member>
  15742. <member name="P:System.Web.UI.WebControls.HyperLinkColumn.Target">
  15743. <summary>
  15744. <para>Gets or sets the target window or frame to display the Web page content linked
  15745. to when the hyperlink in the column is clicked.</para>
  15746. </summary>
  15747. </member>
  15748. <member name="P:System.Web.UI.WebControls.HyperLinkColumn.Text">
  15749. <summary>
  15750. <para>Gets or sets the text caption to display for the hyperlinks in the column.</para>
  15751. </summary>
  15752. </member>
  15753. <member name="T:System.Web.UI.WebControls.Image">
  15754. <summary>
  15755. <para> Displays an image on a Web page.</para>
  15756. </summary>
  15757. </member>
  15758. <member name="M:System.Web.UI.WebControls.Image.#ctor">
  15759. <summary>
  15760. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Image" /> class.</para>
  15761. </summary>
  15762. </member>
  15763. <member name="P:System.Web.UI.WebControls.Image.AlternateText">
  15764. <summary>
  15765. <para>Gets or sets the alternate text displayed in the <see cref="T:System.Web.UI.WebControls.Image" />
  15766. control when the image is unavailable. Browsers that support the ToolTips feature display this text as a ToolTip.</para>
  15767. </summary>
  15768. </member>
  15769. <member name="P:System.Web.UI.WebControls.Image.Font">
  15770. <summary>
  15771. <para> Gets the font properties for the text associated with the control.</para>
  15772. </summary>
  15773. </member>
  15774. <member name="P:System.Web.UI.WebControls.Image.Enabled">
  15775. <summary>
  15776. <para>Gets or sets a value indicating whether the control is enabled.</para>
  15777. </summary>
  15778. </member>
  15779. <member name="P:System.Web.UI.WebControls.Image.ImageAlign">
  15780. <summary>
  15781. <para>Gets or sets the alignment of the <see cref="T:System.Web.UI.WebControls.Image" /> control in relation to other elements on the Web page.</para>
  15782. </summary>
  15783. </member>
  15784. <member name="P:System.Web.UI.WebControls.Image.ImageUrl">
  15785. <summary>
  15786. <para>Gets or sets the location of an image to display in
  15787. the <see cref="T:System.Web.UI.WebControls.Image" />
  15788. control.</para>
  15789. </summary>
  15790. </member>
  15791. <member name="T:System.Web.UI.WebControls.ImageAlign">
  15792. <summary>
  15793. <para>Specifies the alignment of an
  15794. image in relation to the text of a Web page.</para>
  15795. </summary>
  15796. </member>
  15797. <member name="F:System.Web.UI.WebControls.ImageAlign.NotSet">
  15798. <summary>
  15799. <para>
  15800. The alignment is not set.
  15801. </para>
  15802. </summary>
  15803. </member>
  15804. <member name="F:System.Web.UI.WebControls.ImageAlign.Left">
  15805. <summary>
  15806. <para>The image is aligned on the left edge of the Web page with
  15807. text wrapping on the right.</para>
  15808. </summary>
  15809. </member>
  15810. <member name="F:System.Web.UI.WebControls.ImageAlign.Right">
  15811. <summary>
  15812. <para>The image is aligned on the right edge of the Web page
  15813. with text wrapping on the left.</para>
  15814. </summary>
  15815. </member>
  15816. <member name="F:System.Web.UI.WebControls.ImageAlign.Baseline">
  15817. <summary>
  15818. <para>The lower edge of the image is aligned with the lower edge of the first line
  15819. of text.</para>
  15820. </summary>
  15821. </member>
  15822. <member name="F:System.Web.UI.WebControls.ImageAlign.Top">
  15823. <summary>
  15824. <para> The upper edge of the image is aligned with the upper edge of the highest element on the same line.</para>
  15825. </summary>
  15826. </member>
  15827. <member name="F:System.Web.UI.WebControls.ImageAlign.Middle">
  15828. <summary>
  15829. <para>The middle of the image is aligned with the lower edge of
  15830. the first line of text.</para>
  15831. </summary>
  15832. </member>
  15833. <member name="F:System.Web.UI.WebControls.ImageAlign.Bottom">
  15834. <summary>
  15835. <para>The lower edge of the image is aligned with the lower edge of the first line of text.</para>
  15836. </summary>
  15837. </member>
  15838. <member name="F:System.Web.UI.WebControls.ImageAlign.AbsBottom">
  15839. <summary>
  15840. <para>The lower edge of the image is aligned with the lower
  15841. edge of the largest element on the same line.</para>
  15842. </summary>
  15843. </member>
  15844. <member name="F:System.Web.UI.WebControls.ImageAlign.AbsMiddle">
  15845. <summary>
  15846. <para> The middle of the image is aligned with the middle of the largest element on the
  15847. same line.</para>
  15848. </summary>
  15849. </member>
  15850. <member name="F:System.Web.UI.WebControls.ImageAlign.TextTop">
  15851. <summary>
  15852. <para>The upper edge of the image is aligned with the upper edge of the highest text on the same
  15853. line.</para>
  15854. </summary>
  15855. </member>
  15856. <member name="T:System.Web.UI.WebControls.ImageButton">
  15857. <summary>
  15858. <para> A control that displays an image and responds
  15859. to mouse clicks on the image.</para>
  15860. </summary>
  15861. </member>
  15862. <member name="M:System.Web.UI.WebControls.ImageButton.#ctor">
  15863. <summary>
  15864. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.ImageButton" /> class.</para>
  15865. </summary>
  15866. </member>
  15867. <member name="M:System.Web.UI.WebControls.ImageButton.OnClick(System.Web.UI.ImageClickEventArgs)">
  15868. <summary>
  15869. <para>Raises the <see cref="E:System.Web.UI.WebControls.ImageButton.Click" /> event
  15870. and allows you to handle the <see cref="E:System.Web.UI.WebControls.ImageButton.Click" /> event directly.</para>
  15871. </summary>
  15872. <param name="e">A <see cref="T:System.Web.UI.ImageClickEventArgs" qualify="true" /> that contains the event data.</param>
  15873. </member>
  15874. <member name="M:System.Web.UI.WebControls.ImageButton.OnCommand(System.Web.UI.WebControls.CommandEventArgs)">
  15875. <summary>
  15876. <para>Raises the <see cref="E:System.Web.UI.WebControls.ImageButton.Command" /> event
  15877. and allows you to handle the <see cref="E:System.Web.UI.WebControls.ImageButton.Command" /> event directly.</para>
  15878. </summary>
  15879. <param name="e">A <see cref="T:System.Web.UI.WebControls.CommandEventArgs" /> that contains the event data.</param>
  15880. </member>
  15881. <member name="P:System.Web.UI.WebControls.ImageButton.CommandName">
  15882. <summary>
  15883. <para>Gets or sets the command name associated with the <see cref="T:System.Web.UI.WebControls.ImageButton" />
  15884. control.</para>
  15885. </summary>
  15886. </member>
  15887. <member name="P:System.Web.UI.WebControls.ImageButton.CommandArgument">
  15888. <summary>
  15889. <para>Gets or sets an optional argument that provides
  15890. additional information about the
  15891. <see cref="P:System.Web.UI.WebControls.ImageButton.CommandName" />
  15892. property.</para>
  15893. </summary>
  15894. </member>
  15895. <member name="P:System.Web.UI.WebControls.ImageButton.CausesValidation">
  15896. <summary>
  15897. <para>Gets or sets a value indicating whether validation is
  15898. performed when the <see cref="T:System.Web.UI.WebControls.ImageButton" />
  15899. control is clicked.</para>
  15900. </summary>
  15901. </member>
  15902. <member name="E:System.Web.UI.WebControls.ImageButton.Click">
  15903. <summary>
  15904. <para>Occurs when the <see cref="T:System.Web.UI.WebControls.ImageButton" /> is clicked.</para>
  15905. </summary>
  15906. </member>
  15907. <member name="E:System.Web.UI.WebControls.ImageButton.Command">
  15908. <summary>
  15909. <para>Occurs when the <see cref="T:System.Web.UI.WebControls.ImageButton" /> is clicked.</para>
  15910. </summary>
  15911. </member>
  15912. <member name="T:System.Web.UI.WebControls.LabelControlBuilder">
  15913. <summary>
  15914. <para>Interacts with the parser to build a <see cref="T:System.Web.UI.WebControls.Label" />
  15915. control.</para>
  15916. </summary>
  15917. </member>
  15918. <member name="T:System.Web.UI.WebControls.LinkButtonControlBuilder">
  15919. <summary>
  15920. <para>Interacts with the parser to build a <see cref="T:System.Web.UI.WebControls.LinkButton" />
  15921. control.</para>
  15922. </summary>
  15923. </member>
  15924. <member name="T:System.Web.UI.WebControls.ListBox">
  15925. <summary>
  15926. <para> Represents a list box control that allows single or multiple item
  15927. selection.</para>
  15928. </summary>
  15929. </member>
  15930. <member name="M:System.Web.UI.WebControls.ListBox.#ctor">
  15931. <summary>
  15932. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.ListBox" /> class.</para>
  15933. </summary>
  15934. </member>
  15935. <member name="P:System.Web.UI.WebControls.ListBox.BorderColor">
  15936. <summary>
  15937. <para>Gets or sets the border color of the control.</para>
  15938. </summary>
  15939. </member>
  15940. <member name="P:System.Web.UI.WebControls.ListBox.BorderStyle">
  15941. <summary>
  15942. <para>Gets or sets the border style of the control.</para>
  15943. </summary>
  15944. </member>
  15945. <member name="P:System.Web.UI.WebControls.ListBox.BorderWidth">
  15946. <summary>
  15947. <para>Gets or sets the border width for the control.</para>
  15948. </summary>
  15949. </member>
  15950. <member name="P:System.Web.UI.WebControls.ListBox.Rows">
  15951. <summary>
  15952. <para> Gets or sets the number of rows displayed in the
  15953. <see cref="T:System.Web.UI.WebControls.ListBox" />
  15954. control.</para>
  15955. </summary>
  15956. </member>
  15957. <member name="P:System.Web.UI.WebControls.ListBox.SelectionMode">
  15958. <summary>
  15959. <para>Gets or sets the selection mode of the <see cref="T:System.Web.UI.WebControls.ListBox" />
  15960. control.</para>
  15961. </summary>
  15962. </member>
  15963. <member name="P:System.Web.UI.WebControls.ListBox.ToolTip">
  15964. <summary>
  15965. <para>Gets or sets the ToolTip text displayed when the mouse
  15966. pointer rests over the control.</para>
  15967. </summary>
  15968. </member>
  15969. <member name="T:System.Web.UI.WebControls.ListItemControlBuilder">
  15970. <summary>
  15971. <para>Interacts with the parser to build a <see cref="T:System.Web.UI.WebControls.ListItem" /> control.</para>
  15972. </summary>
  15973. </member>
  15974. <member name="M:System.Web.UI.WebControls.ListItemControlBuilder.AllowWhitespaceLiterals">
  15975. <summary>
  15976. <para>Determines whether white spaces in the text
  15977. associated with the <see cref="T:System.Web.UI.WebControls.ListItem" /> are
  15978. represented by <see cref="T:System.Web.UI.LiteralControl" qualify="true" />
  15979. objects.</para>
  15980. </summary>
  15981. <returns>
  15982. <para>
  15983. <see langword="false" /> for all cases.</para>
  15984. </returns>
  15985. </member>
  15986. <member name="M:System.Web.UI.WebControls.ListItemControlBuilder.HtmlDecodeLiterals">
  15987. <summary>
  15988. <para>Determines whether HTML entities in the text associated with the <see cref="T:System.Web.UI.WebControls.ListItem" /> are converted to their
  15989. equivalent characters when the text is parsed.</para>
  15990. </summary>
  15991. <returns>
  15992. <para>
  15993. <see langword="true" /> for all cases.</para>
  15994. </returns>
  15995. </member>
  15996. <member name="T:System.Web.UI.WebControls.ListItem">
  15997. <summary>
  15998. <para> Represents a data item in a data-bound
  15999. list control. This class cannot be inherited.</para>
  16000. </summary>
  16001. </member>
  16002. <member name="M:System.Web.UI.WebControls.ListItem.#ctor">
  16003. <summary>
  16004. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.ListItem" /> class.</para>
  16005. </summary>
  16006. </member>
  16007. <member name="M:System.Web.UI.WebControls.ListItem.#ctor(System.String)">
  16008. <summary>
  16009. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.ListItem" /> class with the specified text data.</para>
  16010. </summary>
  16011. <param name="text">The text to display in the list control for the item represented by the <see cref="T:System.Web.UI.WebControls.ListItem" />.</param>
  16012. </member>
  16013. <member name="M:System.Web.UI.WebControls.ListItem.#ctor(System.String,System.String)">
  16014. <summary>
  16015. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.ListItem" /> class with the
  16016. specified text and value data.</para>
  16017. </summary>
  16018. <param name=" text">The text to display in the list control for the item represented by the <see cref="T:System.Web.UI.WebControls.ListItem" />.</param>
  16019. <param name="value">The value associated with the <see cref="T:System.Web.UI.WebControls.ListItem" />.</param>
  16020. </member>
  16021. <member name="M:System.Web.UI.WebControls.ListItem.FromString(System.String)">
  16022. <summary>
  16023. <para>Creates a <see cref="T:System.Web.UI.WebControls.ListItem" /> from the specified text.</para>
  16024. </summary>
  16025. <param name="s">The text to display in the list control for the item represented by the <see cref="T:System.Web.UI.WebControls.ListItem" />.</param>
  16026. <returns>
  16027. <para>A <see cref="T:System.Web.UI.WebControls.ListItem" /> that represents the
  16028. text specified by the <paramref name="s" /> parameter.</para>
  16029. </returns>
  16030. </member>
  16031. <member name="P:System.Web.UI.WebControls.ListItem.Attributes">
  16032. <summary>
  16033. <para> Gets
  16034. a collection of attribute name and value pairs for the <see cref="T:System.Web.UI.WebControls.ListItem" /> that are not directly supported by the class.</para>
  16035. </summary>
  16036. </member>
  16037. <member name="P:System.Web.UI.WebControls.ListItem.Selected">
  16038. <summary>
  16039. <para>Gets or sets a value indicating whether the
  16040. item is selected.</para>
  16041. </summary>
  16042. </member>
  16043. <member name="P:System.Web.UI.WebControls.ListItem.Text">
  16044. <summary>
  16045. <para> Gets or sets the text displayed in a list control for the
  16046. item represented by the <see cref="T:System.Web.UI.WebControls.ListItem" />.</para>
  16047. </summary>
  16048. </member>
  16049. <member name="P:System.Web.UI.WebControls.ListItem.Value">
  16050. <summary>
  16051. <para>Gets or sets the value associated with the <see cref="T:System.Web.UI.WebControls.ListItem" />.</para>
  16052. </summary>
  16053. </member>
  16054. <member name="T:System.Web.UI.WebControls.ListItemCollection">
  16055. <summary>
  16056. <para>A collection of <see cref="T:System.Web.UI.WebControls.ListItem" /> objects in a list control. This class cannot be inherited.</para>
  16057. </summary>
  16058. </member>
  16059. <member name="M:System.Web.UI.WebControls.ListItemCollection.#ctor">
  16060. <summary>
  16061. <para>Initializes a new instance of the
  16062. <see cref="T:System.Web.UI.WebControls.ListItemCollection" /> class.</para>
  16063. </summary>
  16064. </member>
  16065. <member name="M:System.Web.UI.WebControls.ListItemCollection.Add(System.String)">
  16066. <summary>
  16067. <para>Appends a <see cref="T:System.Web.UI.WebControls.ListItem" /> to the end of the collection that represents the specified string.</para>
  16068. </summary>
  16069. <param name="item">A <see cref="T:System.String" qualify="true" /> that represents the item to add to the end of the collection.</param>
  16070. </member>
  16071. <member name="M:System.Web.UI.WebControls.ListItemCollection.Add(System.Web.UI.WebControls.ListItem)">
  16072. <summary>
  16073. <para>Appends the specified <see cref="T:System.Web.UI.WebControls.ListItem" /> to the end of the collection.</para>
  16074. </summary>
  16075. <param name="item">The <see cref="T:System.Web.UI.WebControls.ListItem" /> to append to the collection.</param>
  16076. </member>
  16077. <member name="M:System.Web.UI.WebControls.ListItemCollection.AddRange(System.Web.UI.WebControls.ListItem[])">
  16078. <summary>
  16079. <para>Adds the items in an array of
  16080. <see cref="T:System.Web.UI.WebControls.ListItem" /> objects to the collection.</para>
  16081. </summary>
  16082. <param name="items">An array of <see cref="T:System.Web.UI.WebControls.ListItem" /> objects that contain the items to add to the collection.</param>
  16083. </member>
  16084. <member name="M:System.Web.UI.WebControls.ListItemCollection.Clear">
  16085. <summary>
  16086. <para>Removes all <see cref="T:System.Web.UI.WebControls.ListItem" /> objects from the collection.</para>
  16087. </summary>
  16088. </member>
  16089. <member name="M:System.Web.UI.WebControls.ListItemCollection.Contains(System.Web.UI.WebControls.ListItem)">
  16090. <summary>
  16091. <para> Determines whether the
  16092. collection contains the specified item.</para>
  16093. </summary>
  16094. <param name="item">A <see cref="T:System.Web.UI.WebControls.ListItem" /> to search for in the collection. </param>
  16095. <returns>
  16096. <para>
  16097. <see langword="true" /> if the
  16098. collection contains the specified item; otherwise, <see langword="false" />.</para>
  16099. </returns>
  16100. </member>
  16101. <member name="M:System.Web.UI.WebControls.ListItemCollection.CopyTo(System.Array,System.Int32)">
  16102. <summary>
  16103. <para>Copies the items from the <see cref="T:System.Web.UI.WebControls.ListItemCollection" /> to the specified <see cref="T:System.Array" qualify="true" />, starting with the specified
  16104. index.</para>
  16105. </summary>
  16106. <param name=" array">A zero-based <see cref="T:System.Array" qualify="true" /> that receives the copied items from the <see cref="T:System.Web.UI.WebControls.ListItemCollection" />.</param>
  16107. <param name=" index">The first index in the specified <see cref="T:System.Array" qualify="true" /> to receive the items.</param>
  16108. </member>
  16109. <member name="M:System.Web.UI.WebControls.ListItemCollection.FindByText(System.String)">
  16110. <summary>
  16111. <para>Searches the collection for a <see cref="T:System.Web.UI.WebControls.ListItem" /> with a <see cref="P:System.Web.UI.WebControls.ListItem.Text" /> property that contains the specified text.</para>
  16112. </summary>
  16113. <param name="text">The text to search for.</param>
  16114. <returns>
  16115. <para>A <see cref="T:System.Web.UI.WebControls.ListItem" />
  16116. that contains the text specified by the <paramref name="text" /> parameter.</para>
  16117. </returns>
  16118. </member>
  16119. <member name="M:System.Web.UI.WebControls.ListItemCollection.FindByValue(System.String)">
  16120. <summary>
  16121. <para>Searches the collection for a <see cref="T:System.Web.UI.WebControls.ListItem" /> with a <see cref="P:System.Web.UI.WebControls.ListItem.Value" /> property that contains the specified value.</para>
  16122. </summary>
  16123. <param name="value">The value to search for.</param>
  16124. <returns>
  16125. <para>A <see cref="T:System.Web.UI.WebControls.ListItem" />
  16126. that contains the value specified by the <paramref name="value" /> parameter.</para>
  16127. </returns>
  16128. </member>
  16129. <member name="M:System.Web.UI.WebControls.ListItemCollection.GetEnumerator">
  16130. <summary>
  16131. <para>Returns a <see cref="T:System.Collections.IEnumerator" qualify="true" /> implemented object that contains
  16132. all <see cref="T:System.Web.UI.WebControls.ListItem" /> objects in the <see cref="T:System.Web.UI.WebControls.ListItemCollection" />.</para>
  16133. </summary>
  16134. <returns>
  16135. <para>A <see cref="T:System.Collections.IEnumerator" qualify="true" /> implemented object that contains
  16136. all <see cref="T:System.Web.UI.WebControls.ListItem" /> objects in the <see cref="T:System.Web.UI.WebControls.ListItemCollection" />.</para>
  16137. </returns>
  16138. </member>
  16139. <member name="M:System.Web.UI.WebControls.ListItemCollection.IndexOf(System.Web.UI.WebControls.ListItem)">
  16140. <summary>
  16141. <para> Determines the index value that represents the
  16142. position of the specified <see cref="T:System.Web.UI.WebControls.ListItem" /> in the collection.</para>
  16143. </summary>
  16144. <param name="item">A <see cref="T:System.Web.UI.WebControls.ListItem" /> to search for in the collection.</param>
  16145. <returns>
  16146. <para> The index position of the specified <see cref="T:System.Web.UI.WebControls.ListItem" /> in the
  16147. collection. </para>
  16148. </returns>
  16149. </member>
  16150. <member name="M:System.Web.UI.WebControls.ListItemCollection.Insert(System.Int32,System.String)">
  16151. <summary>
  16152. <para>Inserts a <see cref="T:System.Web.UI.WebControls.ListItem" /> which represents the specified string in the collection at the specified index
  16153. location.</para>
  16154. </summary>
  16155. <param name=" index">The location in the collection to insert the <see cref="T:System.Web.UI.WebControls.ListItem" />.</param>
  16156. <param name=" item">A <see cref="T:System.String" qualify="true" /> that represents the item to insert in the collection.</param>
  16157. </member>
  16158. <member name="M:System.Web.UI.WebControls.ListItemCollection.Insert(System.Int32,System.Web.UI.WebControls.ListItem)">
  16159. <summary>
  16160. <para>Inserts the specified <see cref="T:System.Web.UI.WebControls.ListItem" /> in the collection at the specified
  16161. index location.</para>
  16162. </summary>
  16163. <param name=" index">The location in the collection to insert the <see cref="T:System.Web.UI.WebControls.ListItem" />.</param>
  16164. <param name=" item">The <see cref="T:System.Web.UI.WebControls.ListItem" /> to add to the collection.</param>
  16165. </member>
  16166. <member name="M:System.Web.UI.WebControls.ListItemCollection.RemoveAt(System.Int32)">
  16167. <summary>
  16168. <para>Removes the <see cref="T:System.Web.UI.WebControls.ListItem" /> at the specified index from
  16169. the collection.</para>
  16170. </summary>
  16171. <param name="index"> The index of the <see cref="T:System.Web.UI.WebControls.ListItem" /> to remove.</param>
  16172. </member>
  16173. <member name="M:System.Web.UI.WebControls.ListItemCollection.Remove(System.String)">
  16174. <summary>
  16175. <para>Removes a <see cref="T:System.Web.UI.WebControls.ListItem" /> from the collection that represents the specified string.</para>
  16176. </summary>
  16177. <param name="item">A <see cref="T:System.String" qualify="true" /> that represents the item to remove from the collection.</param>
  16178. </member>
  16179. <member name="M:System.Web.UI.WebControls.ListItemCollection.Remove(System.Web.UI.WebControls.ListItem)">
  16180. <summary>
  16181. <para>Removes the specified <see cref="T:System.Web.UI.WebControls.ListItem" /> from the collection.</para>
  16182. </summary>
  16183. <param name="item">The <see cref="T:System.Web.UI.WebControls.ListItem" /> to remove from the collection.</param>
  16184. </member>
  16185. <member name="P:System.Web.UI.WebControls.ListItemCollection.Item(System.Int32)">
  16186. <summary>
  16187. <para>Gets a <see cref="T:System.Web.UI.WebControls.ListItem" /> at the specified index in
  16188. the collection.</para>
  16189. </summary>
  16190. <param name="index">The zero-based index of the <see cref="T:System.Web.UI.WebControls.ListItem" /> to retrieve from the collection.</param>
  16191. </member>
  16192. <member name="P:System.Web.UI.WebControls.ListItemCollection.Capacity">
  16193. <summary>
  16194. <para>Gets the or sets the maximum number of items that the
  16195. <see cref="T:System.Web.UI.WebControls.ListItemCollection" /> can store.</para>
  16196. </summary>
  16197. </member>
  16198. <member name="P:System.Web.UI.WebControls.ListItemCollection.Count">
  16199. <summary>
  16200. <para>Gets the number of <see cref="T:System.Web.UI.WebControls.ListItem" /> objects in the collection.</para>
  16201. </summary>
  16202. </member>
  16203. <member name="P:System.Web.UI.WebControls.ListItemCollection.IsReadOnly">
  16204. <summary>
  16205. <para>Gets a value indicating whether the <see cref="T:System.Web.UI.WebControls.ListItemCollection" /> is read-only.</para>
  16206. </summary>
  16207. </member>
  16208. <member name="P:System.Web.UI.WebControls.ListItemCollection.IsSynchronized">
  16209. <summary>
  16210. <para>Gets a value indicating whether access to the <see cref="T:System.Web.UI.WebControls.ListItemCollection" /> is synchronized
  16211. (thread-safe).</para>
  16212. </summary>
  16213. </member>
  16214. <member name="P:System.Web.UI.WebControls.ListItemCollection.SyncRoot">
  16215. <summary>
  16216. <para>Gets the object that can be used to synchronize access
  16217. to the <see cref="T:System.Web.UI.WebControls.ListItemCollection" />.</para>
  16218. </summary>
  16219. </member>
  16220. <member name="T:System.Web.UI.WebControls.ListItemType">
  16221. <summary>
  16222. <para>Specifies the type of an item in a list control.</para>
  16223. </summary>
  16224. </member>
  16225. <member name="F:System.Web.UI.WebControls.ListItemType.Header">
  16226. <summary>
  16227. <para> A header for the
  16228. list control. It is not data-bound.</para>
  16229. </summary>
  16230. </member>
  16231. <member name="F:System.Web.UI.WebControls.ListItemType.Footer">
  16232. <summary>
  16233. <para> A footer for the
  16234. list control. It is not data-bound.</para>
  16235. </summary>
  16236. </member>
  16237. <member name="F:System.Web.UI.WebControls.ListItemType.Item">
  16238. <summary>
  16239. <para>An item in the list control. It is data-bound.</para>
  16240. </summary>
  16241. </member>
  16242. <member name="F:System.Web.UI.WebControls.ListItemType.AlternatingItem">
  16243. <summary>
  16244. <para> An item
  16245. in
  16246. alternating (zero-based even-indexed) cells. It is data-bound.</para>
  16247. </summary>
  16248. </member>
  16249. <member name="F:System.Web.UI.WebControls.ListItemType.SelectedItem">
  16250. <summary>
  16251. <para> A selected item in
  16252. the list control. It is data-bound.</para>
  16253. </summary>
  16254. </member>
  16255. <member name="F:System.Web.UI.WebControls.ListItemType.EditItem">
  16256. <summary>
  16257. <para> An item in a list
  16258. control currently in edit mode. It is data-bound.</para>
  16259. </summary>
  16260. </member>
  16261. <member name="F:System.Web.UI.WebControls.ListItemType.Separator">
  16262. <summary>
  16263. <para> A separator between items in a list control. It is not data-bound.</para>
  16264. </summary>
  16265. </member>
  16266. <member name="F:System.Web.UI.WebControls.ListItemType.Pager">
  16267. <summary>
  16268. <para> A pager that displays the controls to navigate to different pages associated
  16269. with the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control. It is not
  16270. data-bound.</para>
  16271. </summary>
  16272. </member>
  16273. <member name="T:System.Web.UI.WebControls.ListSelectionMode">
  16274. <summary>
  16275. <para>Specifies the selection mode of the <see cref="T:System.Web.UI.WebControls.ListBox" /> control.</para>
  16276. </summary>
  16277. </member>
  16278. <member name="F:System.Web.UI.WebControls.ListSelectionMode.Single">
  16279. <summary>
  16280. <para> Single item selection mode.</para>
  16281. </summary>
  16282. </member>
  16283. <member name="F:System.Web.UI.WebControls.ListSelectionMode.Multiple">
  16284. <summary>
  16285. <para> Multiple item selection mode.</para>
  16286. </summary>
  16287. </member>
  16288. <member name="T:System.Web.UI.WebControls.LiteralControlBuilder">
  16289. <summary>
  16290. <para>Interacts with the parser to build a <see cref="T:System.Web.UI.WebControls.Literal" /> control.</para>
  16291. </summary>
  16292. </member>
  16293. <member name="M:System.Web.UI.WebControls.LiteralControlBuilder.AppendSubBuilder(System.Web.UI.ControlBuilder)">
  16294. <summary>
  16295. <para>Adds the builders of all child
  16296. controls associated with the <see cref="T:System.Web.UI.WebControls.Literal" /> control to the specified <see cref="T:System.Web.UI.ControlBuilder" qualify="true" />
  16297. object.</para>
  16298. </summary>
  16299. <param name="subBuilder">The <see cref="T:System.Web.UI.ControlBuilder" qualify="true" /> object to add the child control builders to. </param>
  16300. </member>
  16301. <member name="M:System.Web.UI.WebControls.LiteralControlBuilder.AllowWhitespaceLiterals">
  16302. <summary>
  16303. <para>Determines whether white spaces in the text associated
  16304. with the <see cref="T:System.Web.UI.WebControls.Literal" /> control
  16305. are represented by <see cref="T:System.Web.UI.LiteralControl" qualify="true" /> objects.</para>
  16306. </summary>
  16307. <returns>
  16308. <para>
  16309. <see langword="false" /> for all cases.</para>
  16310. </returns>
  16311. </member>
  16312. <member name="T:System.Web.UI.WebControls.Literal">
  16313. <summary>
  16314. <para>Reserves a location on the Web page to display static text.</para>
  16315. </summary>
  16316. </member>
  16317. <member name="P:System.Web.UI.WebControls.Literal.Text">
  16318. <summary>
  16319. <para>Gets or sets the caption displayed in the <see cref="T:System.Web.UI.WebControls.Literal" /> control.</para>
  16320. </summary>
  16321. </member>
  16322. <member name="T:System.Web.UI.WebControls.MonthChangedEventArgs">
  16323. <summary>
  16324. <para>Provides data for the <see cref="E:System.Web.UI.WebControls.Calendar.VisibleMonthChanged" />
  16325. event of a <see cref="T:System.Web.UI.WebControls.Calendar" />. This
  16326. class cannot be inherited.</para>
  16327. </summary>
  16328. </member>
  16329. <member name="M:System.Web.UI.WebControls.MonthChangedEventArgs.#ctor(System.DateTime,System.DateTime)">
  16330. <summary>
  16331. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.MonthChangedEventArgs" /> class.</para>
  16332. </summary>
  16333. <param name="newDate">
  16334. <para> The date that determines the month currently displayed by the <see cref="T:System.Web.UI.WebControls.Calendar" />.</para>
  16335. </param>
  16336. <param name="previousDate">
  16337. <para>The date that determines the month previously displayed by the <see cref="T:System.Web.UI.WebControls.Calendar" />.</para>
  16338. </param>
  16339. </member>
  16340. <member name="P:System.Web.UI.WebControls.MonthChangedEventArgs.NewDate">
  16341. <summary>
  16342. <para> Gets the date that determines the currently
  16343. displayed month in the <see cref="T:System.Web.UI.WebControls.Calendar" />.</para>
  16344. </summary>
  16345. </member>
  16346. <member name="P:System.Web.UI.WebControls.MonthChangedEventArgs.PreviousDate">
  16347. <summary>
  16348. <para> Gets the date that determined the previously displayed
  16349. month in the <see cref="T:System.Web.UI.WebControls.Calendar" />.</para>
  16350. </summary>
  16351. </member>
  16352. <member name="T:System.Web.UI.WebControls.MonthChangedEventHandler">
  16353. <summary>
  16354. <para> Represents the method that handles the <see cref="E:System.Web.UI.WebControls.Calendar.VisibleMonthChanged" /> event of a <see cref="T:System.Web.UI.WebControls.Calendar" />.</para>
  16355. </summary>
  16356. <param name="sender">The source of the event.</param>
  16357. <param name=" e">A <see cref="T:System.Web.UI.WebControls.MonthChangedEventArgs" /> that contains the event data.</param>
  16358. </member>
  16359. <member name="T:System.Web.UI.WebControls.NextPrevFormat">
  16360. <summary>
  16361. <para> Represents the display format for the
  16362. previous and next month navigation controls within the <see cref="T:System.Web.UI.WebControls.Calendar" />.</para>
  16363. </summary>
  16364. </member>
  16365. <member name="F:System.Web.UI.WebControls.NextPrevFormat.CustomText">
  16366. <summary>
  16367. <para> Custom text format for the month navigation controls
  16368. on the <see cref="T:System.Web.UI.WebControls.Calendar" />.</para>
  16369. </summary>
  16370. </member>
  16371. <member name="F:System.Web.UI.WebControls.NextPrevFormat.ShortMonth">
  16372. <summary>
  16373. <para>Abbreviated
  16374. month name
  16375. format for the month navigation controls on the <see cref="T:System.Web.UI.WebControls.Calendar" />. For example,
  16376. "Jan".</para>
  16377. </summary>
  16378. </member>
  16379. <member name="F:System.Web.UI.WebControls.NextPrevFormat.FullMonth">
  16380. <summary>
  16381. <para>Full month name format for the month navigation controls
  16382. on the <see cref="T:System.Web.UI.WebControls.Calendar" />. For
  16383. example, "January".</para>
  16384. </summary>
  16385. </member>
  16386. <member name="T:System.Web.UI.WebControls.PagedDataSource">
  16387. <summary>
  16388. <para>Encapsulates the properties of the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control
  16389. that allow
  16390. it to perform paging. This class cannot be inherited.</para>
  16391. </summary>
  16392. </member>
  16393. <member name="M:System.Web.UI.WebControls.PagedDataSource.#ctor">
  16394. <summary>
  16395. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.PagedDataSource" /> class.</para>
  16396. </summary>
  16397. </member>
  16398. <member name="M:System.Web.UI.WebControls.PagedDataSource.CopyTo(System.Array,System.Int32)">
  16399. <summary>
  16400. <para>Copies all the items from the data source to the
  16401. specified <see cref="T:System.Array" qualify="true" />, starting at the specified index in the <see cref="T:System.Array" qualify="true" />.</para>
  16402. </summary>
  16403. <param name=" array">A zero-based <see cref="T:System.Array" qualify="true" /> that receives the copied items from the data source.</param>
  16404. <param name=" index">The first position in the specified <see cref="T:System.Array" qualify="true" /> to receive the copied contents.</param>
  16405. </member>
  16406. <member name="M:System.Web.UI.WebControls.PagedDataSource.GetEnumerator">
  16407. <summary>
  16408. <para>Returns a <see cref="T:System.Collections.IEnumerator" qualify="true" /> implemented object that contains all items in the data source.</para>
  16409. </summary>
  16410. <returns>
  16411. <para>A <see cref="T:System.Collections.IEnumerator" qualify="true" /> implemented object that contains
  16412. all items in the data source.</para>
  16413. </returns>
  16414. </member>
  16415. <member name="M:System.Web.UI.WebControls.PagedDataSource.GetItemProperties(System.ComponentModel.PropertyDescriptor[])">
  16416. <summary>
  16417. <para>Returns the <see cref="T:System.ComponentModel.PropertyDescriptorCollection" qualify="true" />
  16418. that represents the properties on each item used to bind data.</para>
  16419. </summary>
  16420. <param name="listAccessors">An array of <see cref="T:System.ComponentModel.PropertyDescriptor" qualify="true" /> objects, which contains the list name returned. This can be a <see langword="null" /> reference.</param>
  16421. <returns>
  16422. <para> The <see cref="T:System.ComponentModel.PropertyDescriptorCollection" qualify="true" /> that
  16423. represents the properties on each item used to bind data.</para>
  16424. </returns>
  16425. </member>
  16426. <member name="M:System.Web.UI.WebControls.PagedDataSource.GetListName(System.ComponentModel.PropertyDescriptor[])">
  16427. <summary>
  16428. <para>Returns the name of the list. This method does not apply to this class.</para>
  16429. </summary>
  16430. <param name="listAccessors">An array of <see cref="T:System.ComponentModel.PropertyDescriptor" qualify="true" /> objects, that contains the list name returned. This can be a <see langword="null" /> reference.</param>
  16431. <returns>
  16432. <para>
  16433. <see cref="F:System.String.Empty" qualify="true" /> for all cases.</para>
  16434. </returns>
  16435. </member>
  16436. <member name="P:System.Web.UI.WebControls.PagedDataSource.AllowCustomPaging">
  16437. <summary>
  16438. <para> Gets or sets a
  16439. value indicating whether custom paging is enabled.</para>
  16440. </summary>
  16441. </member>
  16442. <member name="P:System.Web.UI.WebControls.PagedDataSource.AllowPaging">
  16443. <summary>
  16444. <para> Gets or sets a value indicating whether paging is enabled.</para>
  16445. </summary>
  16446. </member>
  16447. <member name="P:System.Web.UI.WebControls.PagedDataSource.Count">
  16448. <summary>
  16449. <para> Gets
  16450. the number of items to
  16451. be used from the data source.</para>
  16452. </summary>
  16453. </member>
  16454. <member name="P:System.Web.UI.WebControls.PagedDataSource.CurrentPageIndex">
  16455. <summary>
  16456. <para> Gets or sets the index of the current page.</para>
  16457. </summary>
  16458. </member>
  16459. <member name="P:System.Web.UI.WebControls.PagedDataSource.DataSource">
  16460. <summary>
  16461. <para> Gets or sets the data source.</para>
  16462. </summary>
  16463. </member>
  16464. <member name="P:System.Web.UI.WebControls.PagedDataSource.DataSourceCount">
  16465. <summary>
  16466. <para> Gets the number of items in the data source.</para>
  16467. </summary>
  16468. </member>
  16469. <member name="P:System.Web.UI.WebControls.PagedDataSource.FirstIndexInPage">
  16470. <summary>
  16471. <para>Gets the first index in the page.</para>
  16472. </summary>
  16473. </member>
  16474. <member name="P:System.Web.UI.WebControls.PagedDataSource.IsCustomPagingEnabled">
  16475. <summary>
  16476. <para>Gets a value indicating whether custom
  16477. paging is enabled.</para>
  16478. </summary>
  16479. </member>
  16480. <member name="P:System.Web.UI.WebControls.PagedDataSource.IsFirstPage">
  16481. <summary>
  16482. <para>Gets a value indicating whether the current page
  16483. is the first page.</para>
  16484. </summary>
  16485. </member>
  16486. <member name="P:System.Web.UI.WebControls.PagedDataSource.IsLastPage">
  16487. <summary>
  16488. <para>Gets a value indicating whether the current page is the last page.</para>
  16489. </summary>
  16490. </member>
  16491. <member name="P:System.Web.UI.WebControls.PagedDataSource.IsPagingEnabled">
  16492. <summary>
  16493. <para>Gets a value indicating whether paging is enabled.</para>
  16494. </summary>
  16495. </member>
  16496. <member name="P:System.Web.UI.WebControls.PagedDataSource.IsReadOnly">
  16497. <summary>
  16498. <para>Gets a value indicating whether the data source is read-only.</para>
  16499. </summary>
  16500. </member>
  16501. <member name="P:System.Web.UI.WebControls.PagedDataSource.IsSynchronized">
  16502. <summary>
  16503. <para>Gets a value indicating whether access to the data source is
  16504. synchronized (thread-safe).</para>
  16505. </summary>
  16506. </member>
  16507. <member name="P:System.Web.UI.WebControls.PagedDataSource.PageCount">
  16508. <summary>
  16509. <para>Gets the total number of pages necessary to display all
  16510. items in the data source.</para>
  16511. </summary>
  16512. </member>
  16513. <member name="P:System.Web.UI.WebControls.PagedDataSource.PageSize">
  16514. <summary>
  16515. <para>Gets or sets the number of items to display on a single page.</para>
  16516. </summary>
  16517. </member>
  16518. <member name="P:System.Web.UI.WebControls.PagedDataSource.SyncRoot">
  16519. <summary>
  16520. <para> Gets the object that can be
  16521. used to synchronize access to the collection.</para>
  16522. </summary>
  16523. </member>
  16524. <member name="P:System.Web.UI.WebControls.PagedDataSource.VirtualCount">
  16525. <summary>
  16526. <para>Gets or sets the virtual number of items in the data
  16527. source when custom paging is used.</para>
  16528. </summary>
  16529. </member>
  16530. <member name="T:System.Web.UI.WebControls.PagerMode">
  16531. <summary>
  16532. <para> Represents the mode of the pager for accessing various
  16533. pages within the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  16534. </summary>
  16535. </member>
  16536. <member name="F:System.Web.UI.WebControls.PagerMode.NextPrev">
  16537. <summary>
  16538. <para>A pager with <see langword="Previous" /> and
  16539. <see langword="Next" /> buttons to
  16540. access the next and previous pages.</para>
  16541. </summary>
  16542. </member>
  16543. <member name="F:System.Web.UI.WebControls.PagerMode.NumericPages">
  16544. <summary>
  16545. <para> A pager with numbered buttons to access pages directly.</para>
  16546. </summary>
  16547. </member>
  16548. <member name="T:System.Web.UI.WebControls.PagerPosition">
  16549. <summary>
  16550. <para> Specifies the position of the pager
  16551. for accessing various pages within the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
  16552. </summary>
  16553. </member>
  16554. <member name="F:System.Web.UI.WebControls.PagerPosition.Bottom">
  16555. <summary>
  16556. <para>A pager positioned at the bottom of the <see cref="T:System.Web.UI.WebControls.DataGrid" />.</para>
  16557. </summary>
  16558. </member>
  16559. <member name="F:System.Web.UI.WebControls.PagerPosition.Top">
  16560. <summary>
  16561. <para>A pager positioned at the top of the <see cref="T:System.Web.UI.WebControls.DataGrid" />.</para>
  16562. </summary>
  16563. </member>
  16564. <member name="F:System.Web.UI.WebControls.PagerPosition.TopAndBottom">
  16565. <summary>
  16566. <para> Pagers positioned at both the top and the bottom of the <see cref="T:System.Web.UI.WebControls.DataGrid" />.</para>
  16567. </summary>
  16568. </member>
  16569. <member name="T:System.Web.UI.WebControls.Panel">
  16570. <summary>
  16571. <para> Represents
  16572. a control that acts as a container for other controls.</para>
  16573. </summary>
  16574. </member>
  16575. <member name="M:System.Web.UI.WebControls.Panel.#ctor">
  16576. <summary>
  16577. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Panel" /> class.</para>
  16578. </summary>
  16579. </member>
  16580. <member name="P:System.Web.UI.WebControls.Panel.BackImageUrl">
  16581. <summary>
  16582. <para> Gets or sets the URL of the background image for the panel
  16583. control.</para>
  16584. </summary>
  16585. </member>
  16586. <member name="P:System.Web.UI.WebControls.Panel.HorizontalAlign">
  16587. <summary>
  16588. <para> Gets or sets the horizontal alignment of the contents within the panel.</para>
  16589. </summary>
  16590. </member>
  16591. <member name="P:System.Web.UI.WebControls.Panel.Wrap">
  16592. <summary>
  16593. <para>
  16594. Gets or sets a value
  16595. indicating whether the content wraps within the panel.</para>
  16596. </summary>
  16597. </member>
  16598. <member name="T:System.Web.UI.WebControls.PlaceHolderControlBuilder">
  16599. <summary>
  16600. <para>Interacts with the parser to build a <see cref="T:System.Web.UI.WebControls.PlaceHolder" /> control.</para>
  16601. </summary>
  16602. </member>
  16603. <member name="T:System.Web.UI.WebControls.PlaceHolder">
  16604. <summary>
  16605. <para>A container to store dynamically added server controls on the Web page.</para>
  16606. </summary>
  16607. </member>
  16608. <member name="T:System.Web.UI.WebControls.RadioButton">
  16609. <summary>
  16610. <para> Represents a radio button
  16611. control.</para>
  16612. </summary>
  16613. </member>
  16614. <member name="M:System.Web.UI.WebControls.RadioButton.#ctor">
  16615. <summary>
  16616. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.RadioButton" /> class.</para>
  16617. </summary>
  16618. </member>
  16619. <member name="P:System.Web.UI.WebControls.RadioButton.GroupName">
  16620. <summary>
  16621. <para> Gets
  16622. or sets the name of the group that the radio button belongs to.</para>
  16623. </summary>
  16624. </member>
  16625. <member name="T:System.Web.UI.WebControls.RadioButtonList">
  16626. <summary>
  16627. <para>Represents a list control that encapsulates a group of
  16628. radio button controls.</para>
  16629. </summary>
  16630. </member>
  16631. <member name="M:System.Web.UI.WebControls.RadioButtonList.#ctor">
  16632. <summary>
  16633. <para>Initializes a new instance of a <see cref="T:System.Web.UI.WebControls.RadioButtonList" /> class.</para>
  16634. </summary>
  16635. </member>
  16636. <member name="P:System.Web.UI.WebControls.RadioButtonList.CellPadding">
  16637. <summary>
  16638. <para>Gets or sets the distance (in pixels) between the border
  16639. and the
  16640. contents of the table cell.</para>
  16641. </summary>
  16642. </member>
  16643. <member name="P:System.Web.UI.WebControls.RadioButtonList.CellSpacing">
  16644. <summary>
  16645. <para>Gets or sets the distance (in
  16646. pixels) between adjacent table cells.</para>
  16647. </summary>
  16648. </member>
  16649. <member name="P:System.Web.UI.WebControls.RadioButtonList.RepeatColumns">
  16650. <summary>
  16651. <para>Gets or sets the number of columns to display
  16652. in the <see cref="T:System.Web.UI.WebControls.RadioButtonList" />
  16653. control.</para>
  16654. </summary>
  16655. </member>
  16656. <member name="P:System.Web.UI.WebControls.RadioButtonList.RepeatDirection">
  16657. <summary>
  16658. <para> Gets or sets the direction that the radio
  16659. buttons within the group are displayed.</para>
  16660. </summary>
  16661. </member>
  16662. <member name="P:System.Web.UI.WebControls.RadioButtonList.RepeatLayout">
  16663. <summary>
  16664. <para>Gets or sets the layout of radio buttons within the
  16665. group.</para>
  16666. </summary>
  16667. </member>
  16668. <member name="P:System.Web.UI.WebControls.RadioButtonList.TextAlign">
  16669. <summary>
  16670. <para> Gets
  16671. or sets the text alignment for the radio buttons within the group.</para>
  16672. </summary>
  16673. </member>
  16674. <member name="T:System.Web.UI.WebControls.RangeValidator">
  16675. <summary>
  16676. <para> Checks whether the value of an
  16677. input control is within a specified range of values.</para>
  16678. </summary>
  16679. </member>
  16680. <member name="P:System.Web.UI.WebControls.RangeValidator.MaximumValue">
  16681. <summary>
  16682. <para> Gets or sets the maximum value of the validation range.</para>
  16683. </summary>
  16684. </member>
  16685. <member name="P:System.Web.UI.WebControls.RangeValidator.MinimumValue">
  16686. <summary>
  16687. <para> Gets or sets the minimum value of the validation range.</para>
  16688. </summary>
  16689. </member>
  16690. <member name="T:System.Web.UI.WebControls.RegularExpressionValidator">
  16691. <summary>
  16692. <para>Validates whether the value of an associated input control matches the pattern
  16693. specified by a regular expression.</para>
  16694. </summary>
  16695. </member>
  16696. <member name="P:System.Web.UI.WebControls.RegularExpressionValidator.ValidationExpression">
  16697. <summary>
  16698. <para> Gets or sets the regular expression that determines the pattern used to validate a field.</para>
  16699. </summary>
  16700. </member>
  16701. <member name="T:System.Web.UI.WebControls.RepeatDirection">
  16702. <summary>
  16703. <para> Specifies the direction in which items of a list control are displayed.</para>
  16704. </summary>
  16705. </member>
  16706. <member name="F:System.Web.UI.WebControls.RepeatDirection.Horizontal">
  16707. <summary>
  16708. <para> Items of a list are displayed horizontally in rows from left to right, then top to bottom, until all items are rendered.</para>
  16709. </summary>
  16710. </member>
  16711. <member name="F:System.Web.UI.WebControls.RepeatDirection.Vertical">
  16712. <summary>
  16713. <para>Items of a list are displayed vertically in columns from top to bottom,
  16714. and then left to right, until all items are rendered.</para>
  16715. </summary>
  16716. </member>
  16717. <member name="T:System.Web.UI.WebControls.Repeater">
  16718. <summary>
  16719. <para> A data-bound list control that allows custom layout by repeating
  16720. a specified template for each item
  16721. displayed in the
  16722. list.</para>
  16723. </summary>
  16724. </member>
  16725. <member name="M:System.Web.UI.WebControls.Repeater.#ctor">
  16726. <summary>
  16727. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Repeater" /> class.</para>
  16728. </summary>
  16729. </member>
  16730. <member name="M:System.Web.UI.WebControls.Repeater.OnItemCommand(System.Web.UI.WebControls.RepeaterCommandEventArgs)">
  16731. <summary>
  16732. <para> Raises the <see cref="E:System.Web.UI.WebControls.Repeater.ItemCommand" /> event.</para>
  16733. </summary>
  16734. <param name="e">The <see cref="T:System.Web.UI.WebControls.RepeaterCommandEventArgs" /> that contains the event data.</param>
  16735. </member>
  16736. <member name="M:System.Web.UI.WebControls.Repeater.OnItemCreated(System.Web.UI.WebControls.RepeaterItemEventArgs)">
  16737. <summary>
  16738. <para> Raises the <see cref="E:System.Web.UI.WebControls.Repeater.ItemCreated" /> event.</para>
  16739. </summary>
  16740. <param name="e">The <see cref="T:System.Web.UI.WebControls.RepeaterItemEventArgs" /> that contains the event data.</param>
  16741. </member>
  16742. <member name="M:System.Web.UI.WebControls.Repeater.OnItemDataBound(System.Web.UI.WebControls.RepeaterItemEventArgs)">
  16743. <summary>
  16744. <para> Raises the <see cref="E:System.Web.UI.WebControls.Repeater.ItemDataBound" />
  16745. event.</para>
  16746. </summary>
  16747. <param name="e">The <see cref="T:System.Web.UI.WebControls.RepeaterItemEventArgs" /> that contains the event data.</param>
  16748. </member>
  16749. <member name="P:System.Web.UI.WebControls.Repeater.AlternatingItemTemplate">
  16750. <summary>
  16751. <para> Gets or sets the <see cref="T:System.Web.UI.ITemplate" qualify="true" /> that defines how alternating (zero-based odd-indexed) items
  16752. are rendered. </para>
  16753. </summary>
  16754. </member>
  16755. <member name="P:System.Web.UI.WebControls.Repeater.Controls">
  16756. <summary>
  16757. <para> Gets a <see cref="T:System.Web.UI.ControlCollection" qualify="true" /> that contains the
  16758. child controls of the <see cref="T:System.Web.UI.WebControls.Repeater" />.</para>
  16759. </summary>
  16760. </member>
  16761. <member name="P:System.Web.UI.WebControls.Repeater.DataMember">
  16762. <summary>
  16763. <para>Gets or sets the specific table in the <see cref="P:System.Web.UI.WebControls.Repeater.DataSource" /> to bind to the
  16764. control.</para>
  16765. </summary>
  16766. </member>
  16767. <member name="P:System.Web.UI.WebControls.Repeater.DataSource">
  16768. <summary>
  16769. <para> Gets or sets the data source that provides data for
  16770. populating the list.</para>
  16771. </summary>
  16772. </member>
  16773. <member name="P:System.Web.UI.WebControls.Repeater.FooterTemplate">
  16774. <summary>
  16775. <para>Gets or sets the <see cref="T:System.Web.UI.ITemplate" qualify="true" /> that defines how the control footer is
  16776. rendered. </para>
  16777. </summary>
  16778. </member>
  16779. <member name="P:System.Web.UI.WebControls.Repeater.HeaderTemplate">
  16780. <summary>
  16781. <para> Gets or sets the <see cref="T:System.Web.UI.ITemplate" qualify="true" /> that defines how the control header is rendered. </para>
  16782. </summary>
  16783. </member>
  16784. <member name="P:System.Web.UI.WebControls.Repeater.Items">
  16785. <summary>
  16786. <para> Gets a collection of <see cref="T:System.Web.UI.WebControls.RepeaterItem" /> objects in the <see cref="T:System.Web.UI.WebControls.Repeater" />.</para>
  16787. </summary>
  16788. </member>
  16789. <member name="P:System.Web.UI.WebControls.Repeater.ItemTemplate">
  16790. <summary>
  16791. <para> Gets or sets the <see cref="T:System.Web.UI.ITemplate" qualify="true" /> that defines how items are rendered. </para>
  16792. </summary>
  16793. </member>
  16794. <member name="P:System.Web.UI.WebControls.Repeater.SeparatorTemplate">
  16795. <summary>
  16796. <para> Gets or sets the <see cref="T:System.Web.UI.ITemplate" qualify="true" /> that defines how
  16797. separators between items are rendered.</para>
  16798. </summary>
  16799. </member>
  16800. <member name="E:System.Web.UI.WebControls.Repeater.ItemCommand">
  16801. <summary>
  16802. <para>Occurs when a button is clicked in the <see cref="T:System.Web.UI.WebControls.Repeater" /> control.</para>
  16803. </summary>
  16804. </member>
  16805. <member name="E:System.Web.UI.WebControls.Repeater.ItemCreated">
  16806. <summary>
  16807. <para> Occurs when an item is created in the <see cref="T:System.Web.UI.WebControls.Repeater" /> control.</para>
  16808. </summary>
  16809. </member>
  16810. <member name="E:System.Web.UI.WebControls.Repeater.ItemDataBound">
  16811. <summary>
  16812. <para>Occurs after an item in the <see cref="T:System.Web.UI.WebControls.Repeater" /> is data-bound but before it is
  16813. rendered on the page.</para>
  16814. </summary>
  16815. </member>
  16816. <member name="T:System.Web.UI.WebControls.RepeaterCommandEventArgs">
  16817. <summary>
  16818. <para>Provides data for the <see cref="E:System.Web.UI.WebControls.Repeater.ItemCommand" /> event of a <see cref="T:System.Web.UI.WebControls.Repeater" />. This class cannot be inherited.</para>
  16819. </summary>
  16820. </member>
  16821. <member name="M:System.Web.UI.WebControls.RepeaterCommandEventArgs.#ctor(System.Web.UI.WebControls.RepeaterItem,System.Object,System.Web.UI.WebControls.CommandEventArgs)">
  16822. <summary>
  16823. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.RepeaterCommandEventArgs" />
  16824. class.</para>
  16825. </summary>
  16826. <param name="item">A <see cref="T:System.Web.UI.WebControls.RepeaterItem" /> that represents an item in the <see cref="T:System.Web.UI.WebControls.Repeater" />. The <see cref="P:System.Web.UI.WebControls.RepeaterCommandEventArgs.Item" /> property is set to this value.</param>
  16827. <param name="commandSource">The command source. The <see cref="P:System.Web.UI.WebControls.RepeaterCommandEventArgs.CommandSource" /> property is set to this value.</param>
  16828. <param name="originalArgs">The original event arguments.</param>
  16829. </member>
  16830. <member name="P:System.Web.UI.WebControls.RepeaterCommandEventArgs.Item">
  16831. <summary>
  16832. <para> Gets the <see cref="T:System.Web.UI.WebControls.RepeaterItem" /> associated with the event. </para>
  16833. </summary>
  16834. </member>
  16835. <member name="P:System.Web.UI.WebControls.RepeaterCommandEventArgs.CommandSource">
  16836. <summary>
  16837. <para> Gets the source of the command. </para>
  16838. </summary>
  16839. </member>
  16840. <member name="T:System.Web.UI.WebControls.RepeaterCommandEventHandler">
  16841. <summary>
  16842. <para>Represents the method that will handle the <see cref="E:System.Web.UI.WebControls.Repeater.ItemCommand" /> event of a <see cref="T:System.Web.UI.WebControls.Repeater" />.</para>
  16843. </summary>
  16844. <param name="source">The source of the event.</param>
  16845. <param name=" e">A <see cref="T:System.Web.UI.WebControls.RepeaterCommandEventArgs" /> that contains the event data.</param>
  16846. </member>
  16847. <member name="T:System.Web.UI.WebControls.RepeaterItem">
  16848. <summary>
  16849. <para>Represents an item in the <see cref="T:System.Web.UI.WebControls.Repeater" /> control.</para>
  16850. </summary>
  16851. </member>
  16852. <member name="M:System.Web.UI.WebControls.RepeaterItem.#ctor(System.Int32,System.Web.UI.WebControls.ListItemType)">
  16853. <summary>
  16854. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.RepeaterItem" />
  16855. class.</para>
  16856. </summary>
  16857. <param name="itemIndex">The index of the item in the <see cref="T:System.Web.UI.WebControls.Repeater" /> control from the <see cref="P:System.Web.UI.WebControls.Repeater.Items" /> collection of the control. </param>
  16858. <param name=" itemType">One of the <see cref="T:System.Web.UI.WebControls.ListItemType" /> values.</param>
  16859. </member>
  16860. <member name="P:System.Web.UI.WebControls.RepeaterItem.DataItem">
  16861. <summary>
  16862. <para>Gets or sets a data item associated with the <see cref="T:System.Web.UI.WebControls.RepeaterItem" /> object in the <see cref="T:System.Web.UI.WebControls.Repeater" /> control.</para>
  16863. </summary>
  16864. </member>
  16865. <member name="P:System.Web.UI.WebControls.RepeaterItem.ItemIndex">
  16866. <summary>
  16867. <para>Gets the index of the item in the <see cref="T:System.Web.UI.WebControls.Repeater" /> control from the <see cref="P:System.Web.UI.WebControls.Repeater.Items" /> collection of the
  16868. control.</para>
  16869. </summary>
  16870. </member>
  16871. <member name="P:System.Web.UI.WebControls.RepeaterItem.ItemType">
  16872. <summary>
  16873. <para>Gets the type of the item in the <see cref="T:System.Web.UI.WebControls.Repeater" /> control.</para>
  16874. </summary>
  16875. </member>
  16876. <member name="T:System.Web.UI.WebControls.RepeaterItemCollection">
  16877. <summary>
  16878. <para>Represents a collection of <see cref="T:System.Web.UI.WebControls.RepeaterItem" /> objects in the
  16879. <see cref="T:System.Web.UI.WebControls.Repeater" /> control. This class cannot be
  16880. inherited.</para>
  16881. </summary>
  16882. </member>
  16883. <member name="M:System.Web.UI.WebControls.RepeaterItemCollection.#ctor(System.Collections.ArrayList)">
  16884. <summary>
  16885. <para>Initializes a new instance of
  16886. the <see cref="T:System.Web.UI.WebControls.RepeaterItemCollection" /> class.</para>
  16887. </summary>
  16888. <param name="items">A <see cref="T:System.Collections.ArrayList" qualify="true" /> object that contains the items with which to initialize the collection. </param>
  16889. </member>
  16890. <member name="M:System.Web.UI.WebControls.RepeaterItemCollection.CopyTo(System.Array,System.Int32)">
  16891. <summary>
  16892. <para>Copies all the items from this <see cref="T:System.Web.UI.WebControls.RepeaterItemCollection" /> to the specified <see cref="T:System.Array" qualify="true" /> object,
  16893. starting at the specified index in the <see cref="T:System.Array" qualify="true" />
  16894. object.</para>
  16895. </summary>
  16896. <param name=" array">A zero-based <see cref="T:System.Array" qualify="true" /> object that receives the copied items from the <see cref="T:System.Web.UI.WebControls.RepeaterItemCollection" />.</param>
  16897. <param name=" index">The first position in the specified <see cref="T:System.Array" qualify="true" /> object to receive the copied contents.</param>
  16898. </member>
  16899. <member name="M:System.Web.UI.WebControls.RepeaterItemCollection.GetEnumerator">
  16900. <summary>
  16901. <para>Returns a <see cref="T:System.Collections.IEnumerator" qualify="true" /> interface that contains all
  16902. <see cref="T:System.Web.UI.WebControls.RepeaterItem" /> objects in the <see cref="T:System.Web.UI.WebControls.RepeaterItemCollection" />.</para>
  16903. </summary>
  16904. <returns>
  16905. <para>A <see cref="T:System.Collections.IEnumerator" qualify="true" /> interface that contains all <see cref="T:System.Web.UI.WebControls.RepeaterItem" /> objects in the <see cref="T:System.Web.UI.WebControls.RepeaterItemCollection" />.</para>
  16906. </returns>
  16907. </member>
  16908. <member name="P:System.Web.UI.WebControls.RepeaterItemCollection.Count">
  16909. <summary>
  16910. <para>Gets the number of <see cref="T:System.Web.UI.WebControls.RepeaterItem" /> objects in the collection.</para>
  16911. </summary>
  16912. </member>
  16913. <member name="P:System.Web.UI.WebControls.RepeaterItemCollection.IsReadOnly">
  16914. <summary>
  16915. <para>Gets a value that indicates whether the <see cref="T:System.Web.UI.WebControls.RepeaterItem" /> objects in the <see cref="T:System.Web.UI.WebControls.RepeaterItemCollection" /> can be modified.</para>
  16916. </summary>
  16917. </member>
  16918. <member name="P:System.Web.UI.WebControls.RepeaterItemCollection.IsSynchronized">
  16919. <summary>
  16920. <para>Gets a value indicating whether access to the <see cref="T:System.Web.UI.WebControls.RepeaterItemCollection" /> is synchronized (thread-safe).</para>
  16921. </summary>
  16922. </member>
  16923. <member name="P:System.Web.UI.WebControls.RepeaterItemCollection.SyncRoot">
  16924. <summary>
  16925. <para>Gets the object that can be used to synchronize access
  16926. to the <see cref="T:System.Web.UI.WebControls.RepeaterItemCollection" />
  16927. collection.</para>
  16928. </summary>
  16929. </member>
  16930. <member name="P:System.Web.UI.WebControls.RepeaterItemCollection.Item(System.Int32)">
  16931. <summary>
  16932. <para>Gets the <see cref="T:System.Web.UI.WebControls.RepeaterItem" /> object at the specified index in
  16933. the collection.</para>
  16934. </summary>
  16935. <param name="index">The zero-based index of the <see cref="T:System.Web.UI.WebControls.RepeaterItem" /> object to retrieve in the collection.</param>
  16936. </member>
  16937. <member name="T:System.Web.UI.WebControls.RepeaterItemEventArgs">
  16938. <summary>
  16939. <para>Provides data for the <see cref="E:System.Web.UI.WebControls.Repeater.ItemCreated" /> and <see cref="E:System.Web.UI.WebControls.Repeater.ItemDataBound" /> events of a <see cref="T:System.Web.UI.WebControls.Repeater" />.</para>
  16940. </summary>
  16941. </member>
  16942. <member name="M:System.Web.UI.WebControls.RepeaterItemEventArgs.#ctor(System.Web.UI.WebControls.RepeaterItem)">
  16943. <summary>
  16944. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.RepeaterItemEventArgs" /> class.</para>
  16945. </summary>
  16946. <param name="item">The <see cref="T:System.Web.UI.WebControls.RepeaterItem" /> associated with the event. The <see cref="P:System.Web.UI.WebControls.RepeaterItemEventArgs.Item" /> property is set to this value.</param>
  16947. </member>
  16948. <member name="P:System.Web.UI.WebControls.RepeaterItemEventArgs.Item">
  16949. <summary>
  16950. <para> Gets the <see cref="T:System.Web.UI.WebControls.RepeaterItem" /> associated with the event.</para>
  16951. </summary>
  16952. </member>
  16953. <member name="T:System.Web.UI.WebControls.RepeaterItemEventHandler">
  16954. <summary>
  16955. <para>Represents the method that will handle the <see cref="E:System.Web.UI.WebControls.Repeater.ItemCreated" /> and <see cref="E:System.Web.UI.WebControls.Repeater.ItemDataBound" /> events of a <see cref="T:System.Web.UI.WebControls.Repeater" />.</para>
  16956. </summary>
  16957. <param name="sender">The source of the event.</param>
  16958. <param name=" e">A <see cref="T:System.Web.UI.WebControls.RepeaterItemEventArgs" /> that contains the event data.</param>
  16959. </member>
  16960. <member name="T:System.Web.UI.WebControls.RepeatInfo">
  16961. <summary>
  16962. <para>Encapsulates the information used to render a list control that repeats
  16963. a list of items.
  16964. This class cannot be inherited.</para>
  16965. </summary>
  16966. </member>
  16967. <member name="M:System.Web.UI.WebControls.RepeatInfo.#ctor">
  16968. <summary>
  16969. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.RepeatInfo" />
  16970. class.</para>
  16971. </summary>
  16972. </member>
  16973. <member name="M:System.Web.UI.WebControls.RepeatInfo.RenderRepeater(System.Web.UI.HtmlTextWriter,System.Web.UI.WebControls.IRepeatInfoUser,System.Web.UI.WebControls.Style,System.Web.UI.WebControls.WebControl)">
  16974. <summary>
  16975. <para>Renders a list control that repeats a list of
  16976. items, using the specified
  16977. information.</para>
  16978. </summary>
  16979. <param name="writer">The <see cref="T:System.Web.UI.HtmlTextWriter" qualify="true" /> that represents the output stream used to render HTML content on the client.</param>
  16980. <param name=" user">An <see cref="T:System.Web.UI.WebControls.IRepeatInfoUser" /> implemented object that represents the control to render.</param>
  16981. <param name=" controlStyle">A <see cref="T:System.Web.UI.WebControls.Style" /> that represents the style in which to display the items.</param>
  16982. <param name=" baseControl">The control from which to copy base attributes.</param>
  16983. </member>
  16984. <member name="P:System.Web.UI.WebControls.RepeatInfo.OuterTableImplied">
  16985. <summary>
  16986. <para>Gets or sets a value indicating whether items should be rendered as if they are contained
  16987. in a table.</para>
  16988. </summary>
  16989. </member>
  16990. <member name="P:System.Web.UI.WebControls.RepeatInfo.RepeatColumns">
  16991. <summary>
  16992. <para> Gets or sets the number of columns to render.</para>
  16993. </summary>
  16994. </member>
  16995. <member name="P:System.Web.UI.WebControls.RepeatInfo.RepeatDirection">
  16996. <summary>
  16997. <para>Gets or sets a value that specifies whether
  16998. the items are displayed vertically or horizontally.</para>
  16999. </summary>
  17000. </member>
  17001. <member name="P:System.Web.UI.WebControls.RepeatInfo.RepeatLayout">
  17002. <summary>
  17003. <para> Gets or sets a
  17004. value specifying whether items are displayed in a table.</para>
  17005. </summary>
  17006. </member>
  17007. <member name="T:System.Web.UI.WebControls.RepeatLayout">
  17008. <summary>
  17009. <para> Specifies the layout of items in a list control.</para>
  17010. </summary>
  17011. </member>
  17012. <member name="F:System.Web.UI.WebControls.RepeatLayout.Table">
  17013. <summary>
  17014. <para> Items are displayed in a table.</para>
  17015. </summary>
  17016. </member>
  17017. <member name="F:System.Web.UI.WebControls.RepeatLayout.Flow">
  17018. <summary>
  17019. <para> Items are displayed without a table structure.</para>
  17020. </summary>
  17021. </member>
  17022. <member name="T:System.Web.UI.WebControls.RequiredFieldValidator">
  17023. <summary>
  17024. <para> Makes the associated input control a required field.</para>
  17025. </summary>
  17026. </member>
  17027. <member name="P:System.Web.UI.WebControls.RequiredFieldValidator.InitialValue">
  17028. <summary>
  17029. <para>
  17030. Gets or sets the initial value of the associated input control. </para>
  17031. </summary>
  17032. </member>
  17033. <member name="T:System.Web.UI.WebControls.SelectedDatesCollection">
  17034. <summary>
  17035. <para>Encapsulates a collection of <see cref="T:System.DateTime" qualify="true" />
  17036. objects that represent the selected dates in a <see cref="T:System.Web.UI.WebControls.Calendar" /> control. This class cannot be
  17037. inherited.</para>
  17038. </summary>
  17039. </member>
  17040. <member name="M:System.Web.UI.WebControls.SelectedDatesCollection.#ctor(System.Collections.ArrayList)">
  17041. <summary>
  17042. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" /> class
  17043. with the specified date list.</para>
  17044. </summary>
  17045. <param name="dateList">A <see cref="T:System.Collections.ArrayList" qualify="true" /> that represents a collection of dates.</param>
  17046. </member>
  17047. <member name="M:System.Web.UI.WebControls.SelectedDatesCollection.Add(System.DateTime)">
  17048. <summary>
  17049. <para>Appends the specified <see cref="T:System.DateTime" qualify="true" /> to the end of the <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" />.</para>
  17050. </summary>
  17051. <param name="date">The <see cref="T:System.DateTime" qualify="true" /> to add to the collection.</param>
  17052. </member>
  17053. <member name="M:System.Web.UI.WebControls.SelectedDatesCollection.Clear">
  17054. <summary>
  17055. <para>Removes all <see cref="T:System.DateTime" qualify="true" /> objects from the collection.</para>
  17056. </summary>
  17057. </member>
  17058. <member name="M:System.Web.UI.WebControls.SelectedDatesCollection.Contains(System.DateTime)">
  17059. <summary>
  17060. <para>Returns a value indicating whether the
  17061. <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" /> contains the specified
  17062. <see cref="T:System.DateTime" qualify="true" /> object.</para>
  17063. </summary>
  17064. <param name="date">The <see cref="T:System.DateTime" qualify="true" /> object to search for in the <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" />.</param>
  17065. <returns>
  17066. <para>
  17067. <see langword="true" /> if the
  17068. <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" /> contains
  17069. the specified <see cref="T:System.DateTime" qualify="true" />;
  17070. otherwise, <see langword="false" />.</para>
  17071. </returns>
  17072. </member>
  17073. <member name="M:System.Web.UI.WebControls.SelectedDatesCollection.GetEnumerator">
  17074. <summary>
  17075. <para>Returns a <see cref="T:System.Collections.IEnumerator" qualify="true" /> that contains all <see cref="T:System.DateTime" qualify="true" /> objects within the <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" />.</para>
  17076. </summary>
  17077. <returns>
  17078. <para>A <see cref="T:System.Collections.IEnumerator" qualify="true" /> that contains all <see cref="T:System.DateTime" qualify="true" /> objects
  17079. within the <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" />.</para>
  17080. </returns>
  17081. </member>
  17082. <member name="M:System.Web.UI.WebControls.SelectedDatesCollection.CopyTo(System.Array,System.Int32)">
  17083. <summary>
  17084. <para>Copies the items from the <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" /> to the specified <see cref="T:System.Array" qualify="true" />, starting with the specified
  17085. index.</para>
  17086. </summary>
  17087. <param name=" array">A zero-based <see cref="T:System.Array" qualify="true" /> that receives the copied items from the <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" />.</param>
  17088. <param name=" index">The first index in the specified <see cref="T:System.Array" qualify="true" /> to receive the items.</param>
  17089. </member>
  17090. <member name="M:System.Web.UI.WebControls.SelectedDatesCollection.Remove(System.DateTime)">
  17091. <summary>
  17092. <para>Removes the specified <see cref="T:System.DateTime" qualify="true" /> object from the <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" />.</para>
  17093. </summary>
  17094. <param name=" date">The <see cref="T:System.DateTime" qualify="true" /> object to remove from the <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" />.</param>
  17095. </member>
  17096. <member name="M:System.Web.UI.WebControls.SelectedDatesCollection.SelectRange(System.DateTime,System.DateTime)">
  17097. <summary>
  17098. <para>Adds the specified range of dates to the <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" />.</para>
  17099. </summary>
  17100. <param name="fromDate">A <see cref="T:System.DateTime" qualify="true" /> object that specifies the initial date to add to the <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" />.</param>
  17101. <param name=" toDate">A <see cref="T:System.DateTime" qualify="true" /> object that specifies the end date to add to the <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" />.</param>
  17102. </member>
  17103. <member name="P:System.Web.UI.WebControls.SelectedDatesCollection.Count">
  17104. <summary>
  17105. <para>Gets the number of <see cref="T:System.DateTime" qualify="true" /> objects in the <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" />.</para>
  17106. </summary>
  17107. </member>
  17108. <member name="P:System.Web.UI.WebControls.SelectedDatesCollection.Item(System.Int32)">
  17109. <summary>
  17110. <para>Gets a <see cref="T:System.DateTime" qualify="true" /> at the specified index in the <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" />.</para>
  17111. </summary>
  17112. <param name=" index">An ordinal index value that specifies which <see cref="T:System.DateTime" qualify="true" /> to return.</param>
  17113. </member>
  17114. <member name="P:System.Web.UI.WebControls.SelectedDatesCollection.SyncRoot">
  17115. <summary>
  17116. <para>Gets the object that can be used to synchronize access
  17117. to the <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" />.</para>
  17118. </summary>
  17119. </member>
  17120. <member name="P:System.Web.UI.WebControls.SelectedDatesCollection.IsReadOnly">
  17121. <summary>
  17122. <para>Gets a value indicating whether the <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" /> is read-only.</para>
  17123. </summary>
  17124. </member>
  17125. <member name="P:System.Web.UI.WebControls.SelectedDatesCollection.IsSynchronized">
  17126. <summary>
  17127. <para>Gets a value indicating whether access to the <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" /> is synchronized
  17128. (thread-safe).</para>
  17129. </summary>
  17130. </member>
  17131. <member name="T:System.Web.UI.WebControls.ServerValidateEventArgs">
  17132. <summary>
  17133. <para>Provides data for the <see cref="E:System.Web.UI.WebControls.CustomValidator.ServerValidate" /> event of the <see cref="T:System.Web.UI.WebControls.CustomValidator" /> control. This class cannot be inherited.</para>
  17134. </summary>
  17135. </member>
  17136. <member name="M:System.Web.UI.WebControls.ServerValidateEventArgs.#ctor(System.String,System.Boolean)">
  17137. <summary>
  17138. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.ServerValidateEventArgs" /> class.</para>
  17139. </summary>
  17140. <param name="value">The value to validate.</param>
  17141. <param name=" isValid">
  17142. <see langword="true" /> to indicate that the value passes validation; otherwise, <see langword="false" />.</param>
  17143. </member>
  17144. <member name="P:System.Web.UI.WebControls.ServerValidateEventArgs.Value">
  17145. <summary>
  17146. <para>Gets the value to validate in the custom event
  17147. handler for the <see cref="E:System.Web.UI.WebControls.CustomValidator.ServerValidate" /> event.</para>
  17148. </summary>
  17149. </member>
  17150. <member name="P:System.Web.UI.WebControls.ServerValidateEventArgs.IsValid">
  17151. <summary>
  17152. <para> Gets or sets whether the value
  17153. specified by the <see cref="P:System.Web.UI.WebControls.ServerValidateEventArgs.Value" /> property passes validation.</para>
  17154. </summary>
  17155. </member>
  17156. <member name="T:System.Web.UI.WebControls.ServerValidateEventHandler">
  17157. <summary>
  17158. <para>Represents the method that will handle the <see cref="E:System.Web.UI.WebControls.CustomValidator.ServerValidate" /> event of a
  17159. <see cref="T:System.Web.UI.WebControls.CustomValidator" /> control.</para>
  17160. </summary>
  17161. <param name="source">The source of the event.</param>
  17162. <param name=" args">A <see cref="T:System.Web.UI.WebControls.ServerValidateEventArgs" /> that contains the event data.</param>
  17163. </member>
  17164. <member name="T:System.Web.UI.WebControls.TableCellControlBuilder">
  17165. <summary>
  17166. <para>Interacts with the parser to build a <see cref="T:System.Web.UI.WebControls.TableCell" /> control.</para>
  17167. </summary>
  17168. </member>
  17169. <member name="T:System.Web.UI.WebControls.TableCell">
  17170. <summary>
  17171. <para>Represents a cell in a <see cref="T:System.Web.UI.WebControls.Table" /> control.</para>
  17172. </summary>
  17173. </member>
  17174. <member name="M:System.Web.UI.WebControls.TableCell.#ctor">
  17175. <summary>
  17176. <para> Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.TableCell" /> class.
  17177. </para>
  17178. </summary>
  17179. </member>
  17180. <member name="P:System.Web.UI.WebControls.TableCell.ColumnSpan">
  17181. <summary>
  17182. <para>Gets or sets the number of columns in the <see cref="T:System.Web.UI.WebControls.Table" />
  17183. control that the cell spans.</para>
  17184. </summary>
  17185. </member>
  17186. <member name="P:System.Web.UI.WebControls.TableCell.HorizontalAlign">
  17187. <summary>
  17188. <para>Gets or sets
  17189. the horizontal alignment of the contents in the cell.</para>
  17190. </summary>
  17191. </member>
  17192. <member name="P:System.Web.UI.WebControls.TableCell.RowSpan">
  17193. <summary>
  17194. <para>Gets or sets the number of rows in the <see cref="T:System.Web.UI.WebControls.Table" />
  17195. control that the cell spans.</para>
  17196. </summary>
  17197. </member>
  17198. <member name="P:System.Web.UI.WebControls.TableCell.Text">
  17199. <summary>
  17200. <para> Gets or sets the text contents of the cell.</para>
  17201. </summary>
  17202. </member>
  17203. <member name="P:System.Web.UI.WebControls.TableCell.VerticalAlign">
  17204. <summary>
  17205. <para>Gets or sets the vertical alignment of the contents in the cell.</para>
  17206. </summary>
  17207. </member>
  17208. <member name="P:System.Web.UI.WebControls.TableCell.Wrap">
  17209. <summary>
  17210. <para> Gets or sets a value that indicates whether the
  17211. content of the cell wrap in the cell.
  17212. </para>
  17213. </summary>
  17214. </member>
  17215. <member name="T:System.Web.UI.WebControls.TableCellCollection">
  17216. <summary>
  17217. <para>Encapsulates a collection of <see cref="T:System.Web.UI.WebControls.TableHeaderCell" /> and <see cref="T:System.Web.UI.WebControls.TableCell" /> objects that make up a row in a
  17218. <see cref="T:System.Web.UI.WebControls.Table" /> control. This class cannot be
  17219. inherited.</para>
  17220. </summary>
  17221. </member>
  17222. <member name="M:System.Web.UI.WebControls.TableCellCollection.Add(System.Web.UI.WebControls.TableCell)">
  17223. <summary>
  17224. <para>Appends the specified <see cref="T:System.Web.UI.WebControls.TableCell" /> to the end of the <see cref="T:System.Web.UI.WebControls.TableCellCollection" />.</para>
  17225. </summary>
  17226. <param name="cell">The <see cref="T:System.Web.UI.WebControls.TableCell" /> to add to the collection.</param>
  17227. <returns>
  17228. <para>The index number of the <see cref="T:System.Web.UI.WebControls.TableCell" />.</para>
  17229. </returns>
  17230. </member>
  17231. <member name="M:System.Web.UI.WebControls.TableCellCollection.AddAt(System.Int32,System.Web.UI.WebControls.TableCell)">
  17232. <summary>
  17233. <para>Adds the specified <see cref="T:System.Web.UI.WebControls.TableCell" /> to the <see cref="T:System.Web.UI.WebControls.TableCellCollection" /> at the specified
  17234. index location.</para>
  17235. </summary>
  17236. <param name="index">The location in the <see cref="T:System.Web.UI.WebControls.TableCellCollection" /> at which to add the <see cref="T:System.Web.UI.WebControls.TableCell" />.</param>
  17237. <param name=" cell">The <see cref="T:System.Web.UI.WebControls.TableCell" /> to add to the <see cref="T:System.Web.UI.WebControls.TableCellCollection" />.</param>
  17238. </member>
  17239. <member name="M:System.Web.UI.WebControls.TableCellCollection.AddRange(System.Web.UI.WebControls.TableCell[])">
  17240. <summary>
  17241. <para>Appends the <see cref="T:System.Web.UI.WebControls.TableCell" /> objects from the specifed array to
  17242. the end of the collection.</para>
  17243. </summary>
  17244. <param name="cells">The array containing the <see cref="T:System.Web.UI.WebControls.TableCell" /> objects to add to the collection.</param>
  17245. </member>
  17246. <member name="M:System.Web.UI.WebControls.TableCellCollection.Clear">
  17247. <summary>
  17248. <para>Removes all <see cref="T:System.Web.UI.WebControls.TableCell" /> objects from the <see cref="T:System.Web.UI.WebControls.TableCellCollection" />.</para>
  17249. </summary>
  17250. </member>
  17251. <member name="M:System.Web.UI.WebControls.TableCellCollection.GetCellIndex(System.Web.UI.WebControls.TableCell)">
  17252. <summary>
  17253. <para> Returns a value that represents the index of the
  17254. specified <see cref="T:System.Web.UI.WebControls.TableCell" /> from the <see cref="T:System.Web.UI.WebControls.TableCellCollection" />.</para>
  17255. </summary>
  17256. <param name="cell">The <see cref="T:System.Web.UI.WebControls.TableCell" /> to get the index of in the <see cref="T:System.Web.UI.WebControls.TableCellCollection" />.</param>
  17257. <returns>
  17258. <para> The index of the specified <see cref="T:System.Web.UI.WebControls.TableCell" /> within the <see cref="T:System.Web.UI.WebControls.TableCellCollection" />. The
  17259. default is -1, which indicates that a match has not been
  17260. found.</para>
  17261. </returns>
  17262. </member>
  17263. <member name="M:System.Web.UI.WebControls.TableCellCollection.GetEnumerator">
  17264. <summary>
  17265. <para>Returns a <see cref="T:System.Collections.IEnumerator" qualify="true" /> that contains all <see cref="T:System.Web.UI.WebControls.TableCell" /> objects in the <see cref="T:System.Web.UI.WebControls.TableCellCollection" />.</para>
  17266. </summary>
  17267. <returns>
  17268. <para> A <see cref="T:System.Collections.IEnumerator" qualify="true" /> that contains all <see cref="T:System.Web.UI.WebControls.TableCell" /> objects within the <see cref="T:System.Web.UI.WebControls.TableCellCollection" />.</para>
  17269. </returns>
  17270. </member>
  17271. <member name="M:System.Web.UI.WebControls.TableCellCollection.CopyTo(System.Array,System.Int32)">
  17272. <summary>
  17273. <para>Copies the items from the <see cref="T:System.Web.UI.WebControls.TableCellCollection" /> to the specified <see cref="T:System.Array" qualify="true" />, starting with the specified
  17274. index in the <see cref="T:System.Array" qualify="true" />.</para>
  17275. </summary>
  17276. <param name="array">A zero-based <see cref="T:System.Array" qualify="true" /> that receives the copied items from the <see cref="T:System.Web.UI.WebControls.TableCellCollection" />.</param>
  17277. <param name=" index">The first index in the specified <see cref="T:System.Array" qualify="true" /> to receive the items.</param>
  17278. </member>
  17279. <member name="M:System.Web.UI.WebControls.TableCellCollection.Remove(System.Web.UI.WebControls.TableCell)">
  17280. <summary>
  17281. <para>Removes the specified <see cref="T:System.Web.UI.WebControls.TableCell" /> from the <see cref="T:System.Web.UI.WebControls.TableCellCollection" />.</para>
  17282. </summary>
  17283. <param name="cell">The <see cref="T:System.Web.UI.WebControls.TableCell" /> to remove from the <see cref="T:System.Web.UI.WebControls.TableCellCollection" />.</param>
  17284. </member>
  17285. <member name="M:System.Web.UI.WebControls.TableCellCollection.RemoveAt(System.Int32)">
  17286. <summary>
  17287. <para>Removes a <see cref="T:System.Web.UI.WebControls.TableCell" /> from the <see cref="T:System.Web.UI.WebControls.TableCellCollection" /> at
  17288. the specified index.</para>
  17289. </summary>
  17290. <param name="index">The index of the <see cref="T:System.Web.UI.WebControls.TableCell" /> to remove from the <see cref="T:System.Web.UI.WebControls.TableCellCollection" />.</param>
  17291. </member>
  17292. <member name="P:System.Web.UI.WebControls.TableCellCollection.Count">
  17293. <summary>
  17294. <para>Gets the number of <see cref="T:System.Web.UI.WebControls.TableCell" /> objects in the <see cref="T:System.Web.UI.WebControls.TableCellCollection" />.</para>
  17295. </summary>
  17296. </member>
  17297. <member name="P:System.Web.UI.WebControls.TableCellCollection.Item(System.Int32)">
  17298. <summary>
  17299. <para>Gets a <see cref="T:System.Web.UI.WebControls.TableCell" /> from the
  17300. <see cref="T:System.Web.UI.WebControls.TableCellCollection" /> at the
  17301. specified index.</para>
  17302. </summary>
  17303. <param name="index">An ordinal index value that specifies the <see cref="T:System.Web.UI.WebControls.TableCell" /> to return.</param>
  17304. </member>
  17305. <member name="P:System.Web.UI.WebControls.TableCellCollection.SyncRoot">
  17306. <summary>
  17307. <para>Gets the object that can be used to synchronize access
  17308. to the <see cref="T:System.Web.UI.WebControls.TableCellCollection" />.</para>
  17309. </summary>
  17310. </member>
  17311. <member name="P:System.Web.UI.WebControls.TableCellCollection.IsReadOnly">
  17312. <summary>
  17313. <para>Gets a value indicating whether the <see cref="T:System.Web.UI.WebControls.TableCellCollection" /> is read-only.</para>
  17314. </summary>
  17315. </member>
  17316. <member name="P:System.Web.UI.WebControls.TableCellCollection.IsSynchronized">
  17317. <summary>
  17318. <para>Gets a value indicating whether access to
  17319. the <see cref="T:System.Web.UI.WebControls.TableCellCollection" /> is synchronized
  17320. (thread-safe).</para>
  17321. </summary>
  17322. </member>
  17323. <member name="T:System.Web.UI.WebControls.TableHeaderCell">
  17324. <summary>
  17325. <para> Represents a heading cell within a <see cref="T:System.Web.UI.WebControls.Table" />
  17326. control.</para>
  17327. </summary>
  17328. </member>
  17329. <member name="M:System.Web.UI.WebControls.TableHeaderCell.#ctor">
  17330. <summary>
  17331. <para> Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.TableHeaderCell" /> class.
  17332. </para>
  17333. </summary>
  17334. </member>
  17335. <member name="T:System.Web.UI.WebControls.TableRowCollection">
  17336. <summary>
  17337. <para>Encapsulates a collection of <see cref="T:System.Web.UI.WebControls.TableRow" /> objects that represent a single row in a <see cref="T:System.Web.UI.WebControls.Table" /> control. This class cannot be
  17338. inherited.</para>
  17339. </summary>
  17340. </member>
  17341. <member name="M:System.Web.UI.WebControls.TableRowCollection.Add(System.Web.UI.WebControls.TableRow)">
  17342. <summary>
  17343. <para>Appends the specified <see cref="T:System.Web.UI.WebControls.TableRow" /> to the end of the <see cref="T:System.Web.UI.WebControls.TableRowCollection" />.</para>
  17344. </summary>
  17345. <param name="row">The <see cref="T:System.Web.UI.WebControls.TableRow" /> to add to the <see cref="T:System.Web.UI.WebControls.TableRowCollection" />.</param>
  17346. <returns>
  17347. <para>The index of the <see cref="T:System.Web.UI.WebControls.TableRow" />.</para>
  17348. </returns>
  17349. </member>
  17350. <member name="M:System.Web.UI.WebControls.TableRowCollection.AddAt(System.Int32,System.Web.UI.WebControls.TableRow)">
  17351. <summary>
  17352. <para>Adds the specified <see cref="T:System.Web.UI.WebControls.TableRow" /> to the <see cref="T:System.Web.UI.WebControls.TableRowCollection" /> at the specified
  17353. index location.</para>
  17354. </summary>
  17355. <param name="index">The location in the <see cref="T:System.Web.UI.WebControls.TableRowCollection" /> at which to add the <see cref="T:System.Web.UI.WebControls.TableRow" />.</param>
  17356. <param name=" row">The <see cref="T:System.Web.UI.WebControls.TableRow" /> to add to the <see cref="T:System.Web.UI.WebControls.TableRowCollection" />.</param>
  17357. </member>
  17358. <member name="M:System.Web.UI.WebControls.TableRowCollection.AddRange(System.Web.UI.WebControls.TableRow[])">
  17359. <summary>
  17360. <para>Appends the <see cref="T:System.Web.UI.WebControls.TableRow" /> objects from the specifed array to
  17361. the end of the collection.</para>
  17362. </summary>
  17363. <param name="rows">The array containing the <see cref="T:System.Web.UI.WebControls.TableRow" /> objects to add to the collection.</param>
  17364. </member>
  17365. <member name="M:System.Web.UI.WebControls.TableRowCollection.Clear">
  17366. <summary>
  17367. <para>Removes all <see cref="T:System.Web.UI.WebControls.TableRow" /> controls from the <see cref="T:System.Web.UI.WebControls.TableRowCollection" />.</para>
  17368. </summary>
  17369. </member>
  17370. <member name="M:System.Web.UI.WebControls.TableRowCollection.GetRowIndex(System.Web.UI.WebControls.TableRow)">
  17371. <summary>
  17372. <para> Returns a value that represents the index of the specified
  17373. <see cref="T:System.Web.UI.WebControls.TableRow" /> from
  17374. the <see cref="T:System.Web.UI.WebControls.TableRowCollection" />. </para>
  17375. </summary>
  17376. <param name="row">The <see cref="T:System.Web.UI.WebControls.TableRow" /> to search for in the <see cref="T:System.Web.UI.WebControls.TableRowCollection" />.</param>
  17377. <returns>
  17378. <para>The ordinal index position of the specified <see cref="T:System.Web.UI.WebControls.TableRow" /> within
  17379. the collection. The default is -1, which indicates that the specified <see cref="T:System.Web.UI.WebControls.TableRow" /> has
  17380. not been found.</para>
  17381. </returns>
  17382. </member>
  17383. <member name="M:System.Web.UI.WebControls.TableRowCollection.GetEnumerator">
  17384. <summary>
  17385. <para>Returns an <see cref="T:System.Collections.IEnumerator" qualify="true" /> that contains all <see cref="T:System.Web.UI.WebControls.TableRow" /> objects within the <see cref="T:System.Web.UI.WebControls.TableRowCollection" />.</para>
  17386. </summary>
  17387. <returns>
  17388. <para> A
  17389. <see cref="T:System.Collections.IEnumerator" qualify="true" /> that contains all <see cref="T:System.Web.UI.WebControls.TableRow" /> objects within the <see cref="T:System.Web.UI.WebControls.TableRowCollection" />.</para>
  17390. </returns>
  17391. </member>
  17392. <member name="M:System.Web.UI.WebControls.TableRowCollection.CopyTo(System.Array,System.Int32)">
  17393. <summary>
  17394. <para>Copies the items from the <see cref="T:System.Web.UI.WebControls.TableRowCollection" /> to the specified <see cref="T:System.Array" qualify="true" />, starting with
  17395. the specified index in the <see cref="T:System.Array" qualify="true" />.</para>
  17396. </summary>
  17397. <param name="array">A zero-based <see cref="T:System.Array" qualify="true" /> that receives the copied items from the <see cref="T:System.Web.UI.WebControls.TableRowCollection" />.</param>
  17398. <param name=" index">The first position in the specified <see cref="T:System.Array" qualify="true" /> to receive copied contents.</param>
  17399. </member>
  17400. <member name="M:System.Web.UI.WebControls.TableRowCollection.Remove(System.Web.UI.WebControls.TableRow)">
  17401. <summary>
  17402. <para>Removes the specified <see cref="T:System.Web.UI.WebControls.TableRow" /> from the <see cref="T:System.Web.UI.WebControls.TableRowCollection" />.</para>
  17403. </summary>
  17404. <param name="row">The <see cref="T:System.Web.UI.WebControls.TableRow" /> to remove from the <see cref="T:System.Web.UI.WebControls.TableRowCollection" />.</param>
  17405. </member>
  17406. <member name="M:System.Web.UI.WebControls.TableRowCollection.RemoveAt(System.Int32)">
  17407. <summary>
  17408. <para>Removes a <see cref="T:System.Web.UI.WebControls.TableRow" /> from the <see cref="T:System.Web.UI.WebControls.TableRowCollection" /> at the
  17409. specified index.</para>
  17410. </summary>
  17411. <param name="index">The index of the <see cref="T:System.Web.UI.WebControls.TableRow" /> to remove from the <see cref="T:System.Web.UI.WebControls.TableRowCollection" />.</param>
  17412. </member>
  17413. <member name="P:System.Web.UI.WebControls.TableRowCollection.Count">
  17414. <summary>
  17415. <para>Gets
  17416. the number of <see cref="T:System.Web.UI.WebControls.TableRow" /> objects in the <see cref="T:System.Web.UI.WebControls.TableRowCollection" />.</para>
  17417. </summary>
  17418. </member>
  17419. <member name="P:System.Web.UI.WebControls.TableRowCollection.Item(System.Int32)">
  17420. <summary>
  17421. <para>Gets a <see cref="T:System.Web.UI.WebControls.TableRow" /> from the
  17422. <see cref="T:System.Web.UI.WebControls.TableRowCollection" /> at the
  17423. specified index.</para>
  17424. </summary>
  17425. <param name="index">An ordinal index value that specifies which <see cref="T:System.Web.UI.WebControls.TableRow" /> to return.</param>
  17426. </member>
  17427. <member name="P:System.Web.UI.WebControls.TableRowCollection.SyncRoot">
  17428. <summary>
  17429. <para>Gets the object that can be used to synchronize access to
  17430. the <see cref="T:System.Web.UI.WebControls.TableRowCollection" />.</para>
  17431. </summary>
  17432. </member>
  17433. <member name="P:System.Web.UI.WebControls.TableRowCollection.IsReadOnly">
  17434. <summary>
  17435. <para>Gets a value indicating whether the <see cref="T:System.Web.UI.WebControls.TableRowCollection" /> is read-only.</para>
  17436. </summary>
  17437. </member>
  17438. <member name="P:System.Web.UI.WebControls.TableRowCollection.IsSynchronized">
  17439. <summary>
  17440. <para>Gets a value indicating whether access to the <see cref="T:System.Web.UI.WebControls.TableRowCollection" /> is synchronized
  17441. (thread-safe).</para>
  17442. </summary>
  17443. </member>
  17444. <member name="T:System.Web.UI.WebControls.TableStyle">
  17445. <summary>
  17446. <para>Represents the style for a table control. This class is primarily used by control developers.</para>
  17447. </summary>
  17448. </member>
  17449. <member name="M:System.Web.UI.WebControls.TableStyle.#ctor">
  17450. <summary>
  17451. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.TableStyle" /> class using default values.</para>
  17452. </summary>
  17453. </member>
  17454. <member name="M:System.Web.UI.WebControls.TableStyle.#ctor(System.Web.UI.StateBag)">
  17455. <summary>
  17456. <para> Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.TableStyle" /> class with the
  17457. specified state bag information.
  17458. </para>
  17459. </summary>
  17460. <param name="bag">A <see cref="T:System.Web.UI.StateBag" qualify="true" /> that represents the state bag in which to store style information.</param>
  17461. </member>
  17462. <member name="P:System.Web.UI.WebControls.TableStyle.BackImageUrl">
  17463. <summary>
  17464. <para> Gets or sets the URL
  17465. of an image to display in the background of a table control.</para>
  17466. </summary>
  17467. </member>
  17468. <member name="P:System.Web.UI.WebControls.TableStyle.CellPadding">
  17469. <summary>
  17470. <para>Gets or sets the amount of space between the contents of the
  17471. cell and the cell's border.</para>
  17472. </summary>
  17473. </member>
  17474. <member name="P:System.Web.UI.WebControls.TableStyle.CellSpacing">
  17475. <summary>
  17476. <para>Gets or sets the distance between table cells.</para>
  17477. </summary>
  17478. </member>
  17479. <member name="P:System.Web.UI.WebControls.TableStyle.GridLines">
  17480. <summary>
  17481. <para> Gets or sets a value that specifies whether
  17482. the border between the cells of the table control is displayed.</para>
  17483. </summary>
  17484. </member>
  17485. <member name="P:System.Web.UI.WebControls.TableStyle.HorizontalAlign">
  17486. <summary>
  17487. <para>Gets or sets the horizontal alignment of the table within its container.</para>
  17488. </summary>
  17489. </member>
  17490. <member name="T:System.Web.UI.WebControls.TargetConverter">
  17491. <summary>
  17492. <para> Converts a value representing the location (target) to
  17493. display the content resulting from a Web navigation to a string. It also
  17494. converts a string to a target value.</para>
  17495. </summary>
  17496. </member>
  17497. <member name="T:System.Web.UI.WebControls.TemplateColumn">
  17498. <summary>
  17499. <para>Represents a column type for the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control that allows you
  17500. to customize the layout of controls in the column.</para>
  17501. </summary>
  17502. </member>
  17503. <member name="M:System.Web.UI.WebControls.TemplateColumn.#ctor">
  17504. <summary>
  17505. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.TemplateColumn" /> class.</para>
  17506. </summary>
  17507. </member>
  17508. <member name="P:System.Web.UI.WebControls.TemplateColumn.EditItemTemplate">
  17509. <summary>
  17510. <para>Gets or sets the template for displaying the item
  17511. selected for editing in a <see cref="T:System.Web.UI.WebControls.TemplateColumn" />. </para>
  17512. </summary>
  17513. </member>
  17514. <member name="P:System.Web.UI.WebControls.TemplateColumn.FooterTemplate">
  17515. <summary>
  17516. <para> Gets or sets the
  17517. template for displaying the footer section of the <see cref="T:System.Web.UI.WebControls.TemplateColumn" />. </para>
  17518. </summary>
  17519. </member>
  17520. <member name="P:System.Web.UI.WebControls.TemplateColumn.HeaderTemplate">
  17521. <summary>
  17522. <para> Gets or sets
  17523. the template for displaying the heading section of the <see cref="T:System.Web.UI.WebControls.TemplateColumn" />. </para>
  17524. </summary>
  17525. </member>
  17526. <member name="P:System.Web.UI.WebControls.TemplateColumn.ItemTemplate">
  17527. <summary>
  17528. <para> Gets or sets the template
  17529. for displaying a data item in a <see cref="T:System.Web.UI.WebControls.TemplateColumn" />. </para>
  17530. </summary>
  17531. </member>
  17532. <member name="T:System.Web.UI.WebControls.TextAlign">
  17533. <summary>
  17534. <para> Specifies whether the text associated with a check box or radio button
  17535. control appears to the left or to the right of the control.</para>
  17536. </summary>
  17537. </member>
  17538. <member name="F:System.Web.UI.WebControls.TextAlign.Left">
  17539. <summary>
  17540. <para> Text associated with a check box or radio button control appears to the left of the control.</para>
  17541. </summary>
  17542. </member>
  17543. <member name="F:System.Web.UI.WebControls.TextAlign.Right">
  17544. <summary>
  17545. <para> Text associated with a check box or radio button control appears to
  17546. the right of the control.</para>
  17547. </summary>
  17548. </member>
  17549. <member name="T:System.Web.UI.WebControls.TextBoxControlBuilder">
  17550. <summary>
  17551. <para>Interacts with the parser to build a <see cref="T:System.Web.UI.WebControls.TextBox" /> control.</para>
  17552. </summary>
  17553. </member>
  17554. <member name="M:System.Web.UI.WebControls.TextBoxControlBuilder.HtmlDecodeLiterals">
  17555. <summary>
  17556. <para>Checks whether the literal string of the <see cref="T:System.Web.UI.WebControls.TextBox" /> control must be HTML decoded.</para>
  17557. </summary>
  17558. <returns>
  17559. <para>
  17560. <see langword="true" /> for all cases.</para>
  17561. </returns>
  17562. </member>
  17563. <member name="T:System.Web.UI.WebControls.TextBox">
  17564. <summary>
  17565. <para>Constructs a text box and defines its properties.</para>
  17566. </summary>
  17567. </member>
  17568. <member name="M:System.Web.UI.WebControls.TextBox.#ctor">
  17569. <summary>
  17570. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.TextBox" /> class.</para>
  17571. </summary>
  17572. </member>
  17573. <member name="M:System.Web.UI.WebControls.TextBox.OnTextChanged(System.EventArgs)">
  17574. <summary>
  17575. <para> Raises the <see cref="E:System.Web.UI.WebControls.TextBox.TextChanged" /> event.</para>
  17576. </summary>
  17577. <param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains event information.</param>
  17578. </member>
  17579. <member name="P:System.Web.UI.WebControls.TextBox.AutoPostBack">
  17580. <summary>
  17581. <para>Gets or sets a value indicating whether an automatic
  17582. postback to the server will occur whenever the user changes the
  17583. content of the text box.</para>
  17584. </summary>
  17585. </member>
  17586. <member name="P:System.Web.UI.WebControls.TextBox.Columns">
  17587. <summary>
  17588. <para>Gets or sets the display
  17589. width of the text box in characters.</para>
  17590. </summary>
  17591. </member>
  17592. <member name="P:System.Web.UI.WebControls.TextBox.MaxLength">
  17593. <summary>
  17594. <para>Gets or sets the maximum number of characters allowed in the text box.</para>
  17595. </summary>
  17596. </member>
  17597. <member name="P:System.Web.UI.WebControls.TextBox.TextMode">
  17598. <summary>
  17599. <para> Gets or sets the behavior mode of the text box.</para>
  17600. </summary>
  17601. </member>
  17602. <member name="P:System.Web.UI.WebControls.TextBox.ReadOnly">
  17603. <summary>
  17604. <para>Gets or sets a value indicating whether the contents of
  17605. the <see cref="T:System.Web.UI.WebControls.TextBox" /> control can be changed.</para>
  17606. </summary>
  17607. </member>
  17608. <member name="P:System.Web.UI.WebControls.TextBox.Rows">
  17609. <summary>
  17610. <para> Gets or sets the display height of a multiline text box.</para>
  17611. </summary>
  17612. </member>
  17613. <member name="P:System.Web.UI.WebControls.TextBox.Text">
  17614. <summary>
  17615. <para> Gets
  17616. or sets the text content of the text box.</para>
  17617. </summary>
  17618. </member>
  17619. <member name="P:System.Web.UI.WebControls.TextBox.Wrap">
  17620. <summary>
  17621. <para>Gets or sets a value indicating whether the
  17622. text content wraps within the text box.</para>
  17623. </summary>
  17624. </member>
  17625. <member name="E:System.Web.UI.WebControls.TextBox.TextChanged">
  17626. <summary>
  17627. <para>Occurs when the content of the text box is
  17628. changed upon server postback.</para>
  17629. </summary>
  17630. </member>
  17631. <member name="T:System.Web.UI.WebControls.TextBoxMode">
  17632. <summary>
  17633. <para> Specifies the behavior mode of
  17634. the text box.</para>
  17635. </summary>
  17636. </member>
  17637. <member name="F:System.Web.UI.WebControls.TextBoxMode.SingleLine">
  17638. <summary>
  17639. <para>
  17640. Single-line entry mode.</para>
  17641. </summary>
  17642. </member>
  17643. <member name="F:System.Web.UI.WebControls.TextBoxMode.MultiLine">
  17644. <summary>
  17645. <para> Multi
  17646. line entry mode.</para>
  17647. </summary>
  17648. </member>
  17649. <member name="F:System.Web.UI.WebControls.TextBoxMode.Password">
  17650. <summary>
  17651. <para>
  17652. Password entry mode.</para>
  17653. </summary>
  17654. </member>
  17655. <member name="T:System.Web.UI.WebControls.TitleFormat">
  17656. <summary>
  17657. <para> Specifies the title format
  17658. for the displayed month in the <see cref="T:System.Web.UI.WebControls.Calendar" />
  17659. control.</para>
  17660. </summary>
  17661. </member>
  17662. <member name="F:System.Web.UI.WebControls.TitleFormat.Month">
  17663. <summary>
  17664. <para> Title displayed with only the
  17665. month but not the year. For example, "January".</para>
  17666. </summary>
  17667. </member>
  17668. <member name="F:System.Web.UI.WebControls.TitleFormat.MonthYear">
  17669. <summary>
  17670. <para> Title displayed with both the
  17671. month and the year. For example, "January 2000".</para>
  17672. </summary>
  17673. </member>
  17674. <member name="T:System.Web.UI.WebControls.Unit">
  17675. <summary>
  17676. <para> Represents a length
  17677. measurement.</para>
  17678. </summary>
  17679. </member>
  17680. <member name="F:System.Web.UI.WebControls.Unit.Empty">
  17681. <summary>
  17682. <para>Represents an empty <see cref="T:System.Web.UI.WebControls.Unit" />. This field is
  17683. read-only.</para>
  17684. </summary>
  17685. </member>
  17686. <member name="M:System.Web.UI.WebControls.Unit.#ctor(System.Int32)">
  17687. <summary>
  17688. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Unit" /> structure with the specified 32-bit signed integer.</para>
  17689. </summary>
  17690. <param name="value">A 32-bit signed integer that represents the length of the <see cref="T:System.Web.UI.WebControls.Unit" /> in pixels.</param>
  17691. </member>
  17692. <member name="M:System.Web.UI.WebControls.Unit.#ctor(System.Double)">
  17693. <summary>
  17694. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Unit" /> structure with the specified double precision floating point number.</para>
  17695. </summary>
  17696. <param name="value">A double precision floating point number that represents the length of the <see cref="T:System.Web.UI.WebControls.Unit" /> in pixels.</param>
  17697. </member>
  17698. <member name="M:System.Web.UI.WebControls.Unit.#ctor(System.Double,System.Web.UI.WebControls.UnitType)">
  17699. <summary>
  17700. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Unit" /> structure with the specified double
  17701. precision floating point number and <see cref="T:System.Web.UI.WebControls.UnitType" />.</para>
  17702. </summary>
  17703. <param name="value">A double precision floating point number that represents the length of the <see cref="T:System.Web.UI.WebControls.Unit" />.</param>
  17704. <param name=" type">One of the <see cref="T:System.Web.UI.WebControls.UnitType" /> enumeration values.</param>
  17705. </member>
  17706. <member name="M:System.Web.UI.WebControls.Unit.#ctor(System.String)">
  17707. <summary>
  17708. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Unit" /> structure with the specified text.</para>
  17709. </summary>
  17710. <param name="value">A <see cref="T:System.String" qualify="true" /> that represents the length of the <see cref="T:System.Web.UI.WebControls.Unit" /> in pixels.</param>
  17711. </member>
  17712. <member name="M:System.Web.UI.WebControls.Unit.#ctor(System.String,System.Globalization.CultureInfo)">
  17713. <summary>
  17714. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Unit" /> structure with the specified text and
  17715. <see cref="T:System.Globalization.CultureInfo" qualify="true" />.</para>
  17716. </summary>
  17717. <param name="value">A <see cref="T:System.String" qualify="true" /> that represents the length of the <see cref="T:System.Web.UI.WebControls.Unit" /> in pixels.</param>
  17718. <param name=" culture">A <see cref="T:System.Globalization.CultureInfo" qualify="true" /> that represents the culture.</param>
  17719. </member>
  17720. <member name="M:System.Web.UI.WebControls.Unit.Equals(System.Object)">
  17721. <summary>
  17722. <para>Compares this <see cref="T:System.Web.UI.WebControls.Unit" /> with the specified object.</para>
  17723. </summary>
  17724. <param name="obj">The specified object for comparison.</param>
  17725. <returns>
  17726. <para>
  17727. <see langword="true" /> if the <see cref="T:System.Web.UI.WebControls.Unit" /> that this
  17728. method is called from is equal to the specified object; otherwise,
  17729. <see langword="false" />.</para>
  17730. </returns>
  17731. </member>
  17732. <member name="M:System.Web.UI.WebControls.Unit.op_Equality(System.Web.UI.WebControls.Unit,System.Web.UI.WebControls.Unit)">
  17733. <summary>
  17734. <para>Compares two <see cref="T:System.Web.UI.WebControls.Unit" /> objects to determine whether they are equal.</para>
  17735. </summary>
  17736. <param name="left">The <see cref="T:System.Web.UI.WebControls.Unit" /> on the left side of the operator.</param>
  17737. <param name=" right">The <see cref="T:System.Web.UI.WebControls.Unit" /> on the right side of the operator.</param>
  17738. <returns>
  17739. <para>
  17740. <see langword="true" /> if both <see cref="T:System.Web.UI.WebControls.Unit" /> objects are equal;
  17741. otherwise, <see langword="false" />.</para>
  17742. </returns>
  17743. </member>
  17744. <member name="M:System.Web.UI.WebControls.Unit.op_Inequality(System.Web.UI.WebControls.Unit,System.Web.UI.WebControls.Unit)">
  17745. <summary>
  17746. <para>Compares two <see cref="T:System.Web.UI.WebControls.Unit" /> objects to determine whether
  17747. they are not equal.</para>
  17748. </summary>
  17749. <param name=" left">The <see cref="T:System.Web.UI.WebControls.Unit" /> on the left side of the operator.</param>
  17750. <param name=" right">The <see cref="T:System.Web.UI.WebControls.Unit" /> on the right side of the operator.</param>
  17751. <returns>
  17752. <para>
  17753. <see langword="true" /> if the <see cref="T:System.Web.UI.WebControls.Unit" /> objects are not equal;
  17754. otherwise, <see langword="false" />.</para>
  17755. </returns>
  17756. </member>
  17757. <member name="M:System.Web.UI.WebControls.Unit.Parse(System.String)">
  17758. <summary>
  17759. <para>Converts the specified string to a <see cref="T:System.Web.UI.WebControls.Unit" />.</para>
  17760. </summary>
  17761. <param name="s">The string to convert.</param>
  17762. <returns>
  17763. <para>A <see cref="T:System.Web.UI.WebControls.Unit" />
  17764. that
  17765. represents the specified string.</para>
  17766. </returns>
  17767. </member>
  17768. <member name="M:System.Web.UI.WebControls.Unit.Parse(System.String,System.Globalization.CultureInfo)">
  17769. <summary>
  17770. <para>Converts the specified string and <see cref="T:System.Globalization.CultureInfo" qualify="true" /> to a <see cref="T:System.Web.UI.WebControls.Unit" />.</para>
  17771. </summary>
  17772. <param name="s">The string to convert.</param>
  17773. <param name=" culture">A <see cref="T:System.Globalization.CultureInfo" qualify="true" /> that represents the culture.</param>
  17774. <returns>
  17775. <para>A <see cref="T:System.Web.UI.WebControls.Unit" />
  17776. that
  17777. represents the specified string.</para>
  17778. </returns>
  17779. </member>
  17780. <member name="M:System.Web.UI.WebControls.Unit.Percentage(System.Double)">
  17781. <summary>
  17782. <para>Creates a <see cref="T:System.Web.UI.WebControls.Unit" /> of type <see langword="Percentage" /> from the specified double precision floating point number.</para>
  17783. </summary>
  17784. <param name="n">A double precision floating point number that represents the length of the <see cref="T:System.Web.UI.WebControls.Unit" />.</param>
  17785. <returns>
  17786. <para>A <see cref="T:System.Web.UI.WebControls.Unit" />
  17787. of type <see langword="Percentage" />
  17788. that represents the length specified by the double precision floating point number.</para>
  17789. </returns>
  17790. </member>
  17791. <member name="M:System.Web.UI.WebControls.Unit.Pixel(System.Int32)">
  17792. <summary>
  17793. <para>Creates a <see cref="T:System.Web.UI.WebControls.Unit" /> of type <see langword="Pixel" /> from the specified 32-bit signed integer.</para>
  17794. </summary>
  17795. <param name="n">A 32-bit signed integer that represents the length of the <see cref="T:System.Web.UI.WebControls.Unit" />.</param>
  17796. <returns>
  17797. <para>A <see cref="T:System.Web.UI.WebControls.Unit" />
  17798. of type <see langword="Pixel" /> that represents the length
  17799. specified by the <paramref name="n" />
  17800. parameter.</para>
  17801. </returns>
  17802. </member>
  17803. <member name="M:System.Web.UI.WebControls.Unit.Point(System.Int32)">
  17804. <summary>
  17805. <para>Creates a <see cref="T:System.Web.UI.WebControls.Unit" /> of type <see langword="Point" /> from the specified 32-bit signed integer.</para>
  17806. </summary>
  17807. <param name="n">A 32-bit signed integer that represents the length of the <see cref="T:System.Web.UI.WebControls.Unit" />.</param>
  17808. <returns>
  17809. <para>A <see cref="T:System.Web.UI.WebControls.Unit" />
  17810. of type <see langword="Point" />
  17811. that represents the length specified by the 32-bit signed integer.</para>
  17812. </returns>
  17813. </member>
  17814. <member name="M:System.Web.UI.WebControls.Unit.ToString(System.Globalization.CultureInfo)">
  17815. <summary>
  17816. <para>Converts a <see cref="T:System.Web.UI.WebControls.Unit" /> to a string equivalent in the
  17817. specified culture.</para>
  17818. </summary>
  17819. <param name="culture">A <see cref="T:System.Globalization.CultureInfo" qualify="true" /> that represents the culture.</param>
  17820. <returns>
  17821. <para>A <see cref="T:System.String" qualify="true" />
  17822. represents this <see cref="T:System.Web.UI.WebControls.Unit" /> in the culture specified by the
  17823. <paramref name="culture" /> parameter.</para>
  17824. </returns>
  17825. </member>
  17826. <member name="M:System.Web.UI.WebControls.Unit.op_Implicit(System.Int32)~System.Web.UI.WebControls.Unit">
  17827. <summary>
  17828. <para>Implicitly creates a <see cref="T:System.Web.UI.WebControls.Unit" /> of type <see langword="Pixel" /> from the specified 32-bit unsigned integer.</para>
  17829. </summary>
  17830. <param name="n">A 32-bit signed integer that represents the length of the <see cref="T:System.Web.UI.WebControls.Unit" />.</param>
  17831. <returns>
  17832. <para>A <see cref="T:System.Web.UI.WebControls.Unit" /> of type
  17833. <see langword="Pixel" /> that represents the 32-bit unsigned integer
  17834. specified by the <paramref name="n" /> parameter.</para>
  17835. </returns>
  17836. </member>
  17837. <member name="P:System.Web.UI.WebControls.Unit.IsEmpty">
  17838. <summary>
  17839. <para>Gets a value indicating whether the <see cref="T:System.Web.UI.WebControls.Unit" /> is empty.</para>
  17840. </summary>
  17841. </member>
  17842. <member name="P:System.Web.UI.WebControls.Unit.Type">
  17843. <summary>
  17844. <para> Gets the unit type of the <see cref="T:System.Web.UI.WebControls.Unit" />.</para>
  17845. </summary>
  17846. </member>
  17847. <member name="P:System.Web.UI.WebControls.Unit.Value">
  17848. <summary>
  17849. <para>Gets the length of the <see cref="T:System.Web.UI.WebControls.Unit" />.</para>
  17850. </summary>
  17851. </member>
  17852. <member name="T:System.Web.UI.WebControls.UnitConverter">
  17853. <summary>
  17854. <para> Converts a <see cref="T:System.Web.UI.WebControls.Unit" /> to an object of another data
  17855. type. It also converts an object of another data type to a <see cref="T:System.Web.UI.WebControls.Unit" />.</para>
  17856. </summary>
  17857. </member>
  17858. <member name="T:System.Web.UI.WebControls.UnitType">
  17859. <summary>
  17860. <para> Specifies the unit of measurement.</para>
  17861. </summary>
  17862. </member>
  17863. <member name="F:System.Web.UI.WebControls.UnitType.Pixel">
  17864. <summary>
  17865. <para> Measurement is in pixels.</para>
  17866. </summary>
  17867. </member>
  17868. <member name="F:System.Web.UI.WebControls.UnitType.Point">
  17869. <summary>
  17870. <para> Measurement is in points. A point represents
  17871. 1/72 of an inch.</para>
  17872. </summary>
  17873. </member>
  17874. <member name="F:System.Web.UI.WebControls.UnitType.Pica">
  17875. <summary>
  17876. <para> Measurement is in picas.
  17877. A pica represents 12 points.</para>
  17878. </summary>
  17879. </member>
  17880. <member name="F:System.Web.UI.WebControls.UnitType.Inch">
  17881. <summary>
  17882. <para> Measurement is in inches.</para>
  17883. </summary>
  17884. </member>
  17885. <member name="F:System.Web.UI.WebControls.UnitType.Mm">
  17886. <summary>
  17887. <para> Measurement is in millimeters.</para>
  17888. </summary>
  17889. </member>
  17890. <member name="F:System.Web.UI.WebControls.UnitType.Cm">
  17891. <summary>
  17892. <para> Measurement is in centimeters.</para>
  17893. </summary>
  17894. </member>
  17895. <member name="F:System.Web.UI.WebControls.UnitType.Percentage">
  17896. <summary>
  17897. <para> Measurement is a percentage relative to the parent element.</para>
  17898. </summary>
  17899. </member>
  17900. <member name="F:System.Web.UI.WebControls.UnitType.Em">
  17901. <summary>
  17902. <para> Measurement is relative to
  17903. the
  17904. height of
  17905. the parent element's font. </para>
  17906. </summary>
  17907. </member>
  17908. <member name="F:System.Web.UI.WebControls.UnitType.Ex">
  17909. <summary>
  17910. <para> Measurement is relative to the height of the lowercase
  17911. letter x of the parent
  17912. element's font. </para>
  17913. </summary>
  17914. </member>
  17915. <member name="T:System.Web.UI.WebControls.ValidatedControlConverter">
  17916. <summary>
  17917. <para> Converts a control on the Web Forms page
  17918. that can be validated with a validation control to a
  17919. string.</para>
  17920. </summary>
  17921. </member>
  17922. <member name="M:System.Web.UI.WebControls.ValidatedControlConverter.#ctor">
  17923. <summary>
  17924. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.ValidatedControlConverter" /> class.</para>
  17925. </summary>
  17926. </member>
  17927. <member name="T:System.Web.UI.WebControls.ValidationCompareOperator">
  17928. <summary>
  17929. <para> Specifies the validation comparison operators used by
  17930. the <see cref="T:System.Web.UI.WebControls.CompareValidator" />
  17931. control.</para>
  17932. </summary>
  17933. </member>
  17934. <member name="F:System.Web.UI.WebControls.ValidationCompareOperator.Equal">
  17935. <summary>
  17936. <para> A comparison for equality.</para>
  17937. </summary>
  17938. </member>
  17939. <member name="F:System.Web.UI.WebControls.ValidationCompareOperator.NotEqual">
  17940. <summary>
  17941. <para> A comparison for inequality.</para>
  17942. </summary>
  17943. </member>
  17944. <member name="F:System.Web.UI.WebControls.ValidationCompareOperator.GreaterThan">
  17945. <summary>
  17946. <para>A comparison for greater than.</para>
  17947. </summary>
  17948. </member>
  17949. <member name="F:System.Web.UI.WebControls.ValidationCompareOperator.GreaterThanEqual">
  17950. <summary>
  17951. <para>A comparison for greater than or equal to.</para>
  17952. </summary>
  17953. </member>
  17954. <member name="F:System.Web.UI.WebControls.ValidationCompareOperator.LessThan">
  17955. <summary>
  17956. <para> A comparison for less than.</para>
  17957. </summary>
  17958. </member>
  17959. <member name="F:System.Web.UI.WebControls.ValidationCompareOperator.LessThanEqual">
  17960. <summary>
  17961. <para>A comparison for less than or equal to.</para>
  17962. </summary>
  17963. </member>
  17964. <member name="F:System.Web.UI.WebControls.ValidationCompareOperator.DataTypeCheck">
  17965. <summary>
  17966. <para> A
  17967. comparison for data type only.</para>
  17968. <note type="note">
  17969. Unlike the other operators,
  17970. <see langword="DataTypeCheck" />
  17971. is a unary operation. Only the data type of the
  17972. input control being validated is checked. If the <see cref="P:System.Web.UI.WebControls.CompareValidator.ControlToCompare" /> or <see cref="P:System.Web.UI.WebControls.CompareValidator.ValueToCompare" /> properties are set
  17973. when this operation is used, those
  17974. values are not checked.
  17975. </note>
  17976. </summary>
  17977. </member>
  17978. <member name="T:System.Web.UI.WebControls.ValidationDataType">
  17979. <summary>
  17980. <para> Specifies the validation data types used by the
  17981. <see cref="T:System.Web.UI.WebControls.CompareValidator" /> and <see cref="T:System.Web.UI.WebControls.RangeValidator" />
  17982. controls.</para>
  17983. </summary>
  17984. </member>
  17985. <member name="F:System.Web.UI.WebControls.ValidationDataType.String">
  17986. <summary>
  17987. <para> A string data type. The value is treated as a <see cref="T:System.String" qualify="true" />.</para>
  17988. </summary>
  17989. </member>
  17990. <member name="F:System.Web.UI.WebControls.ValidationDataType.Integer">
  17991. <summary>
  17992. <para>A 32-bit signed integer data type. The
  17993. value is treated as a <see cref="T:System.Int32" qualify="true" />.</para>
  17994. </summary>
  17995. </member>
  17996. <member name="F:System.Web.UI.WebControls.ValidationDataType.Double">
  17997. <summary>
  17998. <para> A double precision floating point number data type. The
  17999. value is treated as a <see cref="T:System.Double" qualify="true" />.</para>
  18000. </summary>
  18001. </member>
  18002. <member name="F:System.Web.UI.WebControls.ValidationDataType.Date">
  18003. <summary>
  18004. <para> A date data type. Only numeric dates are allowed. The
  18005. time portion cannot be specified.</para>
  18006. </summary>
  18007. </member>
  18008. <member name="F:System.Web.UI.WebControls.ValidationDataType.Currency">
  18009. <summary>
  18010. <para> A monetary data type. The value is treated as a <see cref="T:System.Decimal" qualify="true" />. However, currency and
  18011. grouping symbols are still allowed.</para>
  18012. </summary>
  18013. </member>
  18014. <member name="T:System.Web.UI.WebControls.ValidationSummary">
  18015. <summary>
  18016. <para> Displays
  18017. a summary of all validation errors inline on a Web page,
  18018. in a message box, or both.</para>
  18019. </summary>
  18020. </member>
  18021. <member name="M:System.Web.UI.WebControls.ValidationSummary.#ctor">
  18022. <summary>
  18023. <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.ValidationSummary" /> class.</para>
  18024. </summary>
  18025. </member>
  18026. <member name="P:System.Web.UI.WebControls.ValidationSummary.DisplayMode">
  18027. <summary>
  18028. <para>Gets or sets the display mode of the validation summary.</para>
  18029. </summary>
  18030. </member>
  18031. <member name="P:System.Web.UI.WebControls.ValidationSummary.EnableClientScript">
  18032. <summary>
  18033. <para>Gets or sets a value indicating whether the <see cref="T:System.Web.UI.WebControls.ValidationSummary" /> control updates itself using client-side
  18034. script.</para>
  18035. </summary>
  18036. </member>
  18037. <member name="P:System.Web.UI.WebControls.ValidationSummary.ForeColor">
  18038. <summary>
  18039. <para>
  18040. Gets or sets the fore color of the control.</para>
  18041. </summary>
  18042. </member>
  18043. <member name="P:System.Web.UI.WebControls.ValidationSummary.HeaderText">
  18044. <summary>
  18045. <para> Gets or sets the header text displayed at the top
  18046. of the summary.</para>
  18047. </summary>
  18048. </member>
  18049. <member name="P:System.Web.UI.WebControls.ValidationSummary.ShowMessageBox">
  18050. <summary>
  18051. <para> Gets or sets a value indicating
  18052. whether the validation summary is displayed in a message box.</para>
  18053. </summary>
  18054. </member>
  18055. <member name="P:System.Web.UI.WebControls.ValidationSummary.ShowSummary">
  18056. <summary>
  18057. <para> Gets or sets a value indicating whether
  18058. the validation summary is displayed inline.</para>
  18059. </summary>
  18060. </member>
  18061. <member name="T:System.Web.UI.WebControls.ValidationSummaryDisplayMode">
  18062. <summary>
  18063. <para> Specifies the validation summary display mode
  18064. used by the <see cref="T:System.Web.UI.WebControls.ValidationSummary" /> control.</para>
  18065. </summary>
  18066. </member>
  18067. <member name="F:System.Web.UI.WebControls.ValidationSummaryDisplayMode.List">
  18068. <summary>
  18069. <para>
  18070. Validation
  18071. summary displayed in a list.</para>
  18072. </summary>
  18073. </member>
  18074. <member name="F:System.Web.UI.WebControls.ValidationSummaryDisplayMode.BulletList">
  18075. <summary>
  18076. <para>
  18077. Validation
  18078. summary displayed in a bulleted list.</para>
  18079. </summary>
  18080. </member>
  18081. <member name="F:System.Web.UI.WebControls.ValidationSummaryDisplayMode.SingleParagraph">
  18082. <summary>
  18083. <para>Validation summary displayed in a single paragraph.</para>
  18084. </summary>
  18085. </member>
  18086. <member name="T:System.Web.UI.WebControls.ValidatorDisplay">
  18087. <summary>
  18088. <para>Specifies the display behavior of error messages in validation controls.</para>
  18089. </summary>
  18090. </member>
  18091. <member name="F:System.Web.UI.WebControls.ValidatorDisplay.None">
  18092. <summary>
  18093. <para> Validator content never displayed
  18094. inline.</para>
  18095. </summary>
  18096. </member>
  18097. <member name="F:System.Web.UI.WebControls.ValidatorDisplay.Static">
  18098. <summary>
  18099. <para>
  18100. Validator content physically part of the page layout.</para>
  18101. </summary>
  18102. </member>
  18103. <member name="F:System.Web.UI.WebControls.ValidatorDisplay.Dynamic">
  18104. <summary>
  18105. <para>
  18106. Validator
  18107. content
  18108. dynamically added to the page when validation
  18109. fails.</para>
  18110. </summary>
  18111. </member>
  18112. <member name="T:System.Web.UI.WebControls.VerticalAlign">
  18113. <summary>
  18114. <para>Specifies the vertical alignment of an object or text in a control.</para>
  18115. </summary>
  18116. </member>
  18117. <member name="F:System.Web.UI.WebControls.VerticalAlign.NotSet">
  18118. <summary>
  18119. <para> Vertical alignment is not set.</para>
  18120. </summary>
  18121. </member>
  18122. <member name="F:System.Web.UI.WebControls.VerticalAlign.Top">
  18123. <summary>
  18124. <para> Text or object is aligned with the top of the
  18125. enclosing control.</para>
  18126. </summary>
  18127. </member>
  18128. <member name="F:System.Web.UI.WebControls.VerticalAlign.Middle">
  18129. <summary>
  18130. <para>
  18131. Text or object is aligned with the center of the enclosing control.</para>
  18132. </summary>
  18133. </member>
  18134. <member name="F:System.Web.UI.WebControls.VerticalAlign.Bottom">
  18135. <summary>
  18136. <para> Text or object is aligned with the bottom of the enclosing
  18137. control.</para>
  18138. </summary>
  18139. </member>
  18140. <member name="T:System.Web.UI.WebControls.WebColorConverter">
  18141. <summary>
  18142. <para>Converts a predefine color name or an RGB color value to and from a <see cref="T:System.Drawing.Color" qualify="true" />.</para>
  18143. </summary>
  18144. </member>
  18145. <member name="T:System.Web.UI.WebControls.Xml">
  18146. <summary>
  18147. <para> Displays an XML document without formatting or
  18148. using Extensible Stylesheet Language Transformations (XSLT).</para>
  18149. </summary>
  18150. </member>
  18151. <member name="P:System.Web.UI.WebControls.Xml.DocumentContent">
  18152. <summary>
  18153. <para> Sets a string that contains the XML document to
  18154. display in the <see cref="T:System.Web.UI.WebControls.Xml" /> control.</para>
  18155. </summary>
  18156. </member>
  18157. <member name="P:System.Web.UI.WebControls.Xml.DocumentSource">
  18158. <summary>
  18159. <para>Gets or sets the path to an XML document to display in the <see cref="T:System.Web.UI.WebControls.Xml" /> control.</para>
  18160. </summary>
  18161. </member>
  18162. <member name="P:System.Web.UI.WebControls.Xml.TransformSource">
  18163. <summary>
  18164. <para> Gets or sets the path to an Extensible Stylesheet Language Transformation (XSLT) style sheet that
  18165. formats the XML
  18166. document before it is written to the output stream.</para>
  18167. </summary>
  18168. </member>
  18169. <member name="P:System.Web.UI.WebControls.Xml.Document">
  18170. <summary>
  18171. <para>Gets or sets the <see cref="T:System.Xml.XmlDocument" qualify="true" /> to display in the <see cref="T:System.Web.UI.WebControls.Xml" /> control.</para>
  18172. </summary>
  18173. </member>
  18174. <member name="P:System.Web.UI.WebControls.Xml.Transform">
  18175. <summary>
  18176. <para>Gets or sets the <see cref="T:System.Xml.Xsl.XslTransform" qualify="true" /> object that formats the XML document before it is written to
  18177. the output stream.</para>
  18178. </summary>
  18179. </member>
  18180. <member name="P:System.Web.UI.WebControls.Xml.TransformArgumentList">
  18181. <summary>
  18182. <para> Gets or sets a <see cref="T:System.Xml.Xsl.XsltArgumentList" qualify="true" /> that contains a list of
  18183. optional arguments passed
  18184. to the style sheet and used during the Extensible Stylesheet Language Transformation (XSLT).</para>
  18185. </summary>
  18186. </member>
  18187. <member name="P:System.Web.Util.Counter.Value">
  18188. </member>
  18189. <member name="P:System.Web.Util.Counter.Frequency">
  18190. </member>
  18191. <member name="T:System.Web.Mail.SmtpMail">
  18192. <summary>
  18193. <para>Provides properties and methods for sending messages using the Collaboration Data Objects for Windows
  18194. 2000 (CDOSYS) message component.</para>
  18195. </summary>
  18196. </member>
  18197. <member name="M:System.Web.Mail.SmtpMail.Send(System.String,System.String,System.String,System.String)">
  18198. <summary>
  18199. <para>Sends an e-mail message using the specified destination
  18200. parameters.</para>
  18201. </summary>
  18202. <param name="from">The address of the e-mail sender.</param>
  18203. <param name=" to">The address of the e-mail recipient.</param>
  18204. <param name=" subject">The subject line of the e-mail message.</param>
  18205. <param name=" messageText">The body of the e-mail message.</param>
  18206. </member>
  18207. <member name="M:System.Web.Mail.SmtpMail.Send(System.Web.Mail.MailMessage)">
  18208. <summary>
  18209. <para>Sends an e-mail message using arguments supplied in the
  18210. properties of the <see cref="T:System.Web.Mail.MailMessage" />
  18211. class.</para>
  18212. </summary>
  18213. <param name="message">The <see cref="T:System.Web.Mail.MailMessage" /> to send.</param>
  18214. </member>
  18215. <member name="P:System.Web.Mail.SmtpMail.SmtpServer">
  18216. <summary>
  18217. <para>Gets or
  18218. sets the name of the SMTP mail server to use to send all e-mail
  18219. messages.
  18220. </para>
  18221. </summary>
  18222. </member>
  18223. <member name="T:System.Web.Mail.MailFormat">
  18224. <summary>
  18225. <para>Provides enumerated values for e-mail format.</para>
  18226. </summary>
  18227. </member>
  18228. <member name="F:System.Web.Mail.MailFormat.Text">
  18229. <summary>
  18230. <para>Specifies that the e-mail format is plain text.</para>
  18231. </summary>
  18232. </member>
  18233. <member name="F:System.Web.Mail.MailFormat.Html">
  18234. <summary>
  18235. <para>Specifies that the e-mail format is HTML.</para>
  18236. </summary>
  18237. </member>
  18238. <member name="T:System.Web.Mail.MailPriority">
  18239. <summary>
  18240. <para> Specifies the priority level for the e-mail message.</para>
  18241. </summary>
  18242. </member>
  18243. <member name="F:System.Web.Mail.MailPriority.Normal">
  18244. <summary>
  18245. <para>Specifies that the e-mail message has normal priority.</para>
  18246. </summary>
  18247. </member>
  18248. <member name="F:System.Web.Mail.MailPriority.Low">
  18249. <summary>
  18250. <para>Specifies that the e-mail message has low priority.</para>
  18251. </summary>
  18252. </member>
  18253. <member name="F:System.Web.Mail.MailPriority.High">
  18254. <summary>
  18255. <para>Specifies that the e-mail message has high priority.</para>
  18256. </summary>
  18257. </member>
  18258. <member name="T:System.Web.Mail.MailEncoding">
  18259. <summary>
  18260. <para>Provides enumered values for e-mail encoding.</para>
  18261. </summary>
  18262. </member>
  18263. <member name="F:System.Web.Mail.MailEncoding.UUEncode">
  18264. <summary>
  18265. <para>Specifies that the e-mail message uses UUEncode encoding.</para>
  18266. </summary>
  18267. </member>
  18268. <member name="F:System.Web.Mail.MailEncoding.Base64">
  18269. <summary>
  18270. <para>Specifies that the e-mail message uses Base64 encoding.</para>
  18271. </summary>
  18272. </member>
  18273. <member name="T:System.Web.Mail.MailAttachment">
  18274. <summary>
  18275. <para> Provides properties and methods
  18276. for constructing an e-mail attachment.</para>
  18277. </summary>
  18278. </member>
  18279. <member name="M:System.Web.Mail.MailAttachment.#ctor(System.String)">
  18280. <summary>
  18281. <para>Initializes a new instance of the <see cref="T:System.Web.Mail.MailAttachment" />
  18282. class with
  18283. the specified file name for the attachment. Sets the <see cref="T:System.Text.Encoding" />
  18284. property to UUEncode by default.</para>
  18285. </summary>
  18286. <param name="filename">The name of the attachment file.</param>
  18287. </member>
  18288. <member name="M:System.Web.Mail.MailAttachment.#ctor(System.String,System.Web.Mail.MailEncoding)">
  18289. <summary>
  18290. <para>Initializes a new instance of the <see cref="T:System.Web.Mail.MailAttachment" /> class with the specified file name and encoding
  18291. type for the attachment.</para>
  18292. </summary>
  18293. <param name="filename">The name of the attachment file.</param>
  18294. <param name=" encoding">The type of <see cref="T:System.Web.Mail.MailEncoding" /> for the attachment.</param>
  18295. </member>
  18296. <member name="P:System.Web.Mail.MailAttachment.Filename">
  18297. <summary>
  18298. <para> Gets the name of the attachment file.</para>
  18299. </summary>
  18300. </member>
  18301. <member name="P:System.Web.Mail.MailAttachment.Encoding">
  18302. <summary>
  18303. <para> Gets the type of encoding for the e-mail attachment.</para>
  18304. </summary>
  18305. </member>
  18306. <member name="T:System.Web.Mail.MailMessage">
  18307. <summary>
  18308. <para> Provides properties and methods for constructing an e-mail message.</para>
  18309. </summary>
  18310. </member>
  18311. <member name="P:System.Web.Mail.MailMessage.From">
  18312. <summary>
  18313. <para>Gets or sets the e-mail address of the sender.</para>
  18314. </summary>
  18315. </member>
  18316. <member name="P:System.Web.Mail.MailMessage.To">
  18317. <summary>
  18318. <para>Gets or sets the e-mail
  18319. address of the recipient.
  18320. </para>
  18321. </summary>
  18322. </member>
  18323. <member name="P:System.Web.Mail.MailMessage.Cc">
  18324. <summary>
  18325. <para>Gets or sets a semicolon-delimited list
  18326. of e-mail addresses that receive a carbon copy (CC) of the e-mail
  18327. message.
  18328. </para>
  18329. </summary>
  18330. </member>
  18331. <member name="P:System.Web.Mail.MailMessage.Bcc">
  18332. <summary>
  18333. <para> Gets or sets
  18334. a semicolon-delimited list of email addresses that receive a
  18335. blind carbon copy (BCC) of the e-mail message.</para>
  18336. </summary>
  18337. </member>
  18338. <member name="P:System.Web.Mail.MailMessage.Subject">
  18339. <summary>
  18340. <para>Gets or sets the
  18341. subject line of the e-mail message.
  18342. </para>
  18343. </summary>
  18344. </member>
  18345. <member name="P:System.Web.Mail.MailMessage.Priority">
  18346. <summary>
  18347. <para>Gets or sets the
  18348. priority of the e-mail message.
  18349. </para>
  18350. </summary>
  18351. </member>
  18352. <member name="P:System.Web.Mail.MailMessage.UrlContentBase">
  18353. <summary>
  18354. <para> Gets or sets the
  18355. <see langword="Content-Base" /> HTTP header, the
  18356. URL
  18357. base of
  18358. all relative URLs used within the HTML-encoded body of the e-mail
  18359. message.
  18360. </para>
  18361. </summary>
  18362. </member>
  18363. <member name="P:System.Web.Mail.MailMessage.UrlContentLocation">
  18364. <summary>
  18365. <para> Gets or sets the <see langword="Content-Location" /> HTTP header for the e-mail message.</para>
  18366. </summary>
  18367. </member>
  18368. <member name="P:System.Web.Mail.MailMessage.Body">
  18369. <summary>
  18370. <para>Gets or sets the body of the e-mail message.</para>
  18371. </summary>
  18372. </member>
  18373. <member name="P:System.Web.Mail.MailMessage.BodyFormat">
  18374. <summary>
  18375. <para>Gets or sets the content type of the
  18376. body of the e-mail message.
  18377. </para>
  18378. </summary>
  18379. </member>
  18380. <member name="P:System.Web.Mail.MailMessage.BodyEncoding">
  18381. <summary>
  18382. <para>Gets or sets the encoding type of the
  18383. body of the e-mail message.
  18384. </para>
  18385. </summary>
  18386. </member>
  18387. <member name="P:System.Web.Mail.MailMessage.Headers">
  18388. <summary>
  18389. <para>Specifies the custom
  18390. headers that are transmitted with the e-mail message.
  18391. </para>
  18392. </summary>
  18393. </member>
  18394. <member name="P:System.Web.Mail.MailMessage.Attachments">
  18395. <summary>
  18396. <para>Specifies the list of the attachments that are transmitted
  18397. with the message.</para>
  18398. </summary>
  18399. </member>
  18400. <member name="F:System.Web.Util.SymbolEqualComparer.Default">
  18401. <summary>
  18402. <para>[To be supplied.]</para>
  18403. </summary>
  18404. </member>
  18405. <member name="F:System.Web.Util.SymbolHashCodeProvider.Default">
  18406. <summary>
  18407. <para>[To be supplied.]</para>
  18408. </summary>
  18409. </member>
  18410. </members>
  18411. </doc>