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.
 
 
 
 
 
 

18428 lines
883 KiB

<?xml version="1.0"?>
<doc>
<assembly>
<name>System.Web</name>
</assembly>
<members>
<member name="M:System.Web.SRDescriptionAttribute.#ctor(System.String)">
<summary>
Constructs a new sys description.
</summary>
<param name="description">
description text.
</param>
</member>
<member name="P:System.Web.SRDescriptionAttribute.Description">
<summary>
Retrieves the description text.
</summary>
<returns>
description
</returns>
</member>
<member name="T:System.Web.BeginEventHandler">
<summary>
<para> Represents the method
that handles asynchronous events such as application events. This delegate is called at the
start of an asynchronous operation.</para>
</summary>
<param name="sender">The source of the event.</param>
<param name=" e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
<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>
<param name=" extraData">Any additional data needed to process the request.</param>
<returns>
<para>The <see cref="T:System.IAsyncResult" /> that represents the result of
the <see langword="BeginEventHandler" /> operation.</para>
</returns>
</member>
<member name="T:System.Web.EndEventHandler">
<summary>
<para>Represents the method that handles asynchronous events
such as application events. This delegate is called by the event source when
completion of the asynchronous operation is signaled by a callback to the
<see cref="T:System.Web.BeginEventHandler" />
delegate.</para>
</summary>
<param name="ar">The <see cref="T:System.IAsyncResult" /> that is the result of the <see cref="T:System.Web.BeginEventHandler" /> operation.</param>
</member>
<member name="T:System.Web.HttpApplication">
<summary>
<para> Defines the methods, properties, and events common to all
application objects within an ASP.NET application. This class is the
base class for applications defined
by the user in the global.asax file.</para>
</summary>
</member>
<member name="T:System.Web.IHttpAsyncHandler">
<summary>
<para>When implemented by a class, defines the contract that HTTP asynchronous handler objects must
implement.</para>
</summary>
</member>
<member name="T:System.Web.IHttpHandler">
<summary>
<para> Defines the contract that ASP.NET implements to synchronously process HTTP
Web requests using custom HTTP handlers.</para>
</summary>
</member>
<member name="M:System.Web.IHttpHandler.ProcessRequest(System.Web.HttpContext)">
<summary>
<para> Enables processing of HTTP Web requests by a custom
<see langword="HttpHandler " />
that implements the <see cref="T:System.Web.IHttpHandler" /> interface.
</para>
</summary>
<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>
</member>
<member name="P:System.Web.IHttpHandler.IsReusable">
<summary>
<para> Gets a value indicating whether another request can use
the <see cref="T:System.Web.IHttpHandler" />
instance.</para>
</summary>
</member>
<member name="M:System.Web.IHttpAsyncHandler.BeginProcessRequest(System.Web.HttpContext,System.AsyncCallback,System.Object)">
<summary>
<para>Initiates an asynchronous call to the HTTP handler.</para>
</summary>
<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>
<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>
<param name=" extraData">Any extra data needed to process the request.</param>
<returns>
<para>An <see cref="T:System.IAsyncResult" />that contains information about the status of the process.</para>
</returns>
</member>
<member name="M:System.Web.IHttpAsyncHandler.EndProcessRequest(System.IAsyncResult)">
<summary>
<para> Executes clean-up code when the process ends.</para>
</summary>
<param name="result">An <see cref="T:System.IAsyncResult" /> that contains information about the status of the process. </param>
</member>
<member name="M:System.Web.HttpApplication.CompleteRequest">
<summary>
<para>Causes ASP.NET to bypass all events in the HTTP pipeline chain of
execution and directly execute <see cref="E:System.Web.HttpApplication.EndRequest" />.
</para>
</summary>
</member>
<member name="M:System.Web.HttpApplication.AddOnBeginRequestAsync(System.Web.BeginEventHandler,System.Web.EndEventHandler)">
<summary>
<para>Adds the specified <see cref="E:System.Web.HttpApplication.BeginRequest" /> event to the collection of asynchronous
<see langword="BeginRequest" /> event handlers for the current request.</para>
</summary>
<param name="bh">The <see cref="T:System.Web.BeginEventHandler" /> delegate that starts asynchronous processing of the event.</param>
<param name=" eh">The <see cref="T:System.Web.EndEventHandler" /> delegate that ends asynchronous processing of the event.</param>
</member>
<member name="M:System.Web.HttpApplication.AddOnAuthenticateRequestAsync(System.Web.BeginEventHandler,System.Web.EndEventHandler)">
<summary>
<para>Adds the specified <see cref="E:System.Web.HttpApplication.AuthenticateRequest" /> event to
the collection of asynchronous <see langword="AuthenticateRequest" />
event handlers for the current request.</para>
</summary>
<param name="bh">The <see cref="T:System.Web.BeginEventHandler" /> delegate that starts asynchronous processing of the event.</param>
<param name=" eh">The <see cref="T:System.Web.EndEventHandler" /> delegate that ends asynchronous processing of the event.</param>
</member>
<member name="M:System.Web.HttpApplication.AddOnAuthorizeRequestAsync(System.Web.BeginEventHandler,System.Web.EndEventHandler)">
<summary>
<para>Adds the specified <see cref="E:System.Web.HttpApplication.AuthorizeRequest" /> event to the collection of asynchronous
<see langword="AuthorizeRequest" /> event handlers for the current request.</para>
</summary>
<param name="bh">The <see cref="T:System.Web.BeginEventHandler" /> delegate that starts asynchronous processing of the event.</param>
<param name=" eh">The <see cref="T:System.Web.EndEventHandler" /> delegate that ends asynchronous processing of the event.</param>
</member>
<member name="M:System.Web.HttpApplication.AddOnResolveRequestCacheAsync(System.Web.BeginEventHandler,System.Web.EndEventHandler)">
<summary>
<para>Adds the specified <see cref="E:System.Web.HttpApplication.ResolveRequestCache" /> event handler to the collection of asynchronous
<see langword="ResolveRequestCache" /> event handlers for the current request.</para>
</summary>
<param name="bh">The <see cref="T:System.Web.BeginEventHandler" /> delegate that starts asynchronous processing of the event.</param>
<param name=" eh">The <see cref="T:System.Web.EndEventHandler" /> delegate that ends asynchronous processing of the event.</param>
</member>
<member name="M:System.Web.HttpApplication.AddOnAcquireRequestStateAsync(System.Web.BeginEventHandler,System.Web.EndEventHandler)">
<summary>
<para>Adds the specified <see cref="E:System.Web.HttpApplication.AcquireRequestState" /> event to
the collection of <see langword="AcquireRequestState" /> event
handlers for the current request.</para>
</summary>
<param name="bh">The <see cref="T:System.Web.BeginEventHandler" /> delegate that starts asynchronous processing of the event.</param>
<param name=" eh">The <see cref="T:System.Web.EndEventHandler" /> delegate that ends asynchronous processing of the event.</param>
</member>
<member name="M:System.Web.HttpApplication.AddOnPreRequestHandlerExecuteAsync(System.Web.BeginEventHandler,System.Web.EndEventHandler)">
<summary>
<para>Adds the specified <see cref="E:System.Web.HttpApplication.PreRequestHandlerExecute" /> event to the collection of asynchronous
<see langword="PreRequestHandlerExecute" /> event handlers for the current request.</para>
</summary>
<param name="bh">The <see cref="T:System.Web.BeginEventHandler" /> delegate that starts asynchronous processing of the event.</param>
<param name=" eh">The <see cref="T:System.Web.EndEventHandler" /> delegate that ends asynchronous processing of the event.</param>
</member>
<member name="M:System.Web.HttpApplication.AddOnPostRequestHandlerExecuteAsync(System.Web.BeginEventHandler,System.Web.EndEventHandler)">
<summary>
<para>Adds the specified <see cref="E:System.Web.HttpApplication.PostRequestHandlerExecute" /> event to the
collection of asynchronous <see langword="PostRequestHandlerExecute" />
event handlers for the current request.</para>
</summary>
<param name="bh">The <see cref="T:System.Web.BeginEventHandler" /> delegate that starts asynchronous processing of the event.</param>
<param name=" eh">
<para>The <see cref="T:System.Web.EndEventHandler" /> delegate that ends asynchronous processing of the event.</para>
</param>
</member>
<member name="M:System.Web.HttpApplication.AddOnReleaseRequestStateAsync(System.Web.BeginEventHandler,System.Web.EndEventHandler)">
<summary>
<para>Adds the specified <see cref="E:System.Web.HttpApplication.ReleaseRequestState" /> event to the collection of asynchronous
<see langword="ReleaseRequestState" /> event handlers for the current request.</para>
</summary>
<param name="bh">The <see cref="T:System.Web.BeginEventHandler" /> delegate that starts asynchronous processing of the event.</param>
<param name=" eh">The <see cref="T:System.Web.EndEventHandler" /> delegate that ends asynchronous processing of the event.</param>
</member>
<member name="M:System.Web.HttpApplication.AddOnUpdateRequestCacheAsync(System.Web.BeginEventHandler,System.Web.EndEventHandler)">
<summary>
<para>Adds the specified <see cref="E:System.Web.HttpApplication.UpdateRequestCache" /> event to the collection of asynchronous
<see langword="UpdateRequestCache" /> event handlers for the current request.</para>
</summary>
<param name="bh">The <see cref="T:System.Web.BeginEventHandler" /> delegate that starts asynchronous processing of the event.</param>
<param name=" eh">The <see cref="T:System.Web.EndEventHandler" /> delegate that ends asynchronous processing of the event.</param>
</member>
<member name="M:System.Web.HttpApplication.AddOnEndRequestAsync(System.Web.BeginEventHandler,System.Web.EndEventHandler)">
<summary>
<para>Adds the specified <see cref="E:System.Web.HttpApplication.EndRequest" /> event to the collection of asynchronous
<see langword="EndRequest" /> event handlers for the current request.</para>
</summary>
<param name="bh">The <see cref="T:System.Web.BeginEventHandler" /> delegate that starts asynchronous processing of the event.</param>
<param name=" eh">The <see cref="T:System.Web.EndEventHandler" /> delegate that ends asynchronous processing of the event.</param>
</member>
<member name="M:System.Web.HttpApplication.Init">
<summary>
<para>
Executes custom
initialization code after all event-handler modules
have been added.</para>
</summary>
</member>
<member name="M:System.Web.HttpApplication.Dispose">
<summary>
<para> Cleans up the instance variables of a
module.
</para>
</summary>
</member>
<member name="M:System.Web.HttpApplication.GetVaryByCustomString(System.Web.HttpContext,System.String)">
<summary>
<para>Provides an application-wide implementation of the <see cref="P:System.Web.UI.PartialCachingAttribute.VaryByCustom" /> property.</para>
</summary>
<param name="context">An <see cref="T:System.Web.HttpContext" /> that contains information about the current Web request</param>
<param name=" custom">The custom string that specifies which cached response is used to response to the current request.</param>
<returns>
<para> If
the value of the <paramref name="custom" /> parameter is "browser", the browser's
<see cref="P:System.Web.HttpBrowserCapabilities.Type" /> ; otherwise,
<see langword="null" /> .</para>
</returns>
</member>
<member name="P:System.Web.HttpApplication.Context">
<summary>
<para>
Gets HTTP-specific information about the current instance
of the application.
</para>
</summary>
</member>
<member name="E:System.Web.HttpApplication.Disposed">
<summary>
<para> Occurs when ASP.NET completes the chain of execution
when responding to a request.</para>
</summary>
</member>
<member name="P:System.Web.HttpApplication.Events">
<summary>
<para>Gets the list of event handler delegates that process all
application events.</para>
</summary>
</member>
<member name="P:System.Web.HttpApplication.Request">
<summary>
<para>Gets the intrinsic request<see langword=" " /> object
for the current request.</para>
</summary>
</member>
<member name="P:System.Web.HttpApplication.Response">
<summary>
<para>Gets the intrinsic response<see langword=" " />
object for the current
request.</para>
</summary>
</member>
<member name="P:System.Web.HttpApplication.Session">
<summary>
<para> Gets the intrinsic session<see langword=" " /> object that provides access to session data.
</para>
</summary>
</member>
<member name="P:System.Web.HttpApplication.Application">
<summary>
<para>Gets the state (a collection of all files, pages,
handlers, modules, and code) for the current request.</para>
</summary>
</member>
<member name="P:System.Web.HttpApplication.Server">
<summary>
Gets the intrinsic server<see langword=" " />object for the current request.
</summary>
</member>
<member name="P:System.Web.HttpApplication.User">
<summary>
<para>Gets the intrinsic user object for the current request.</para>
</summary>
</member>
<member name="P:System.Web.HttpApplication.Modules">
<summary>
<para> Gets the collection of modules for the current application.</para>
</summary>
</member>
<member name="E:System.Web.HttpApplication.AcquireRequestState">
<summary>
<para> Occurs when ASP.NET acquires the current state (for
example, session state) associated with the current request.</para>
</summary>
</member>
<member name="E:System.Web.HttpApplication.AuthenticateRequest">
<summary>
<para> Occurs when a security module has established the identity of the user.</para>
</summary>
</member>
<member name="E:System.Web.HttpApplication.AuthorizeRequest">
<summary>
<para> Occurs when a security module has verified user authorization.</para>
</summary>
</member>
<member name="E:System.Web.HttpApplication.BeginRequest">
<summary>
<para>Occurs as the first event in the HTTP pipeline
chain of execution when ASP.NET responds to a request.</para>
</summary>
</member>
<member name="E:System.Web.HttpApplication.EndRequest">
<summary>
<para> Occurs as the last event to in the HTTP pipeline chain of execution
when ASP.NET responds to a request.</para>
</summary>
</member>
<member name="E:System.Web.HttpApplication.Error">
<summary>
<para> Occurs when an unhandled exception is
thrown.</para>
</summary>
</member>
<member name="E:System.Web.HttpApplication.PreSendRequestHeaders">
<summary>
<para> Occurs just before ASP.NET sends HTTP headers
to the client.</para>
</summary>
</member>
<member name="E:System.Web.HttpApplication.PreSendRequestContent">
<summary>
<para> Occurs just before ASP.NET sends content to the client.</para>
</summary>
</member>
<member name="E:System.Web.HttpApplication.PreRequestHandlerExecute">
<summary>
<para> Occurs just before ASP.NET begins executing a handler such as
a page or XML Web service.</para>
</summary>
</member>
<member name="E:System.Web.HttpApplication.PostRequestHandlerExecute">
<summary>
<para> Occurs when the ASP.NET handler (page,
XML Web service) finishes execution.</para>
</summary>
</member>
<member name="E:System.Web.HttpApplication.ReleaseRequestState">
<summary>
<para> Occurs after ASP.NET finishes executing all request
handlers. This event causes state
modules to save the current state data.</para>
</summary>
</member>
<member name="E:System.Web.HttpApplication.ResolveRequestCache">
<summary>
<para> Occurs when ASP.NET completes an authorization event to let
the caching modules serve requests from the cache, bypassing execution of the handler
(the page or Web service, for example).</para>
</summary>
</member>
<member name="E:System.Web.HttpApplication.UpdateRequestCache">
<summary>
<para> Occurs when ASP.NET finishes executing a handler in order
to let caching modules store responses that will be used to serve
subsequent requests from the cache.</para>
</summary>
</member>
<member name="P:System.Web.HttpApplication.Site">
<summary>
<para>Provides a site interface for an <see cref="T:System.ComponentModel.IComponent" /> implementation.</para>
</summary>
</member>
<member name="T:System.Web.HttpApplicationState">
<summary>
<para> Enables sharing of global information across multiple sessions
and requests within an ASP.NET application.</para>
</summary>
</member>
<member name="M:System.Web.HttpApplicationState.Add(System.String,System.Object)">
<summary>
<para>Adds a new object to the <see cref="T:System.Web.HttpApplicationState" />
collection.</para>
</summary>
<param name="name">The name of the object to be added to the collection.</param>
<param name=" value">The value of the object.</param>
</member>
<member name="M:System.Web.HttpApplicationState.Set(System.String,System.Object)">
<summary>
<para>Updates the value of an object
in an <see cref="T:System.Web.HttpApplicationState" /> collection.</para>
</summary>
<param name="name">The name of the object to be updated.</param>
<param name=" value">The updated value of the object.</param>
</member>
<member name="M:System.Web.HttpApplicationState.Remove(System.String)">
<summary>
<para>Removes the named object from an <see cref="T:System.Web.HttpApplicationState" />
collection.</para>
</summary>
<param name="name">The name of the object to be removed from the collection.</param>
</member>
<member name="M:System.Web.HttpApplicationState.RemoveAt(System.Int32)">
<summary>
<para>Removes an object from an <see cref="T:System.Web.HttpApplicationState" />
collection by index.</para>
</summary>
<param name="index">The position in the collection of the item to be removed.</param>
</member>
<member name="M:System.Web.HttpApplicationState.Clear">
<summary>
<para>Removes all objects from an <see cref="T:System.Web.HttpApplicationState" />
collection.</para>
</summary>
</member>
<member name="M:System.Web.HttpApplicationState.RemoveAll">
<summary>
<para>Removes all objects from an <see cref="T:System.Web.HttpApplicationState" />
collection.</para>
</summary>
</member>
<member name="M:System.Web.HttpApplicationState.Get(System.String)">
<summary>
<para> Gets an <see cref="T:System.Web.HttpApplicationState" /> object by name.</para>
</summary>
<param name="name">The name of the object.</param>
<returns>
<para>The object referenced by <paramref name="name" />.</para>
</returns>
</member>
<member name="M:System.Web.HttpApplicationState.Get(System.Int32)">
<summary>
<para> Gets an <see cref="T:System.Web.HttpApplicationState" />
object by numerical index.</para>
</summary>
<param name="index">The index of the application state object.</param>
<returns>
<para> The object referenced by <paramref name="index" /> .</para>
</returns>
</member>
<member name="M:System.Web.HttpApplicationState.GetKey(System.Int32)">
<summary>
<para> Gets an <see cref="T:System.Web.HttpApplicationState" /> object name by index.</para>
</summary>
<param name="index">The index of the application state object.</param>
<returns>
<para>The name under which the application state object was saved.</para>
</returns>
</member>
<member name="M:System.Web.HttpApplicationState.Lock">
<summary>
<para>Locks access to an <see cref="T:System.Web.HttpApplicationState" />
variable to facilitate access
synchronization.</para>
</summary>
</member>
<member name="M:System.Web.HttpApplicationState.UnLock">
<summary>
<para>Unlocks access to an <see cref="T:System.Web.HttpApplicationState" /> variable to facilitate access
synchronization.</para>
</summary>
</member>
<member name="P:System.Web.HttpApplicationState.Count">
<summary>
<para> Gets the number of objects in the <see cref="T:System.Web.HttpApplicationState" />
collection.</para>
</summary>
</member>
<member name="P:System.Web.HttpApplicationState.Item(System.String)">
<summary>
<para> Gets the value of a single <see cref="T:System.Web.HttpApplicationState" /> object by name.</para>
</summary>
<param name="name">The name of the object in the collection.</param>
</member>
<member name="P:System.Web.HttpApplicationState.Item(System.Int32)">
<summary>
<para> Gets a single <see cref="T:System.Web.HttpApplicationState" />
object by index.</para>
</summary>
<param name="index">The numerical index of the object in the collection.</param>
</member>
<member name="P:System.Web.HttpApplicationState.AllKeys">
<summary>
<para> Gets the access keys in the <see cref="T:System.Web.HttpApplicationState" />
collection.</para>
</summary>
</member>
<member name="P:System.Web.HttpApplicationState.Contents">
<summary>
<para> Gets a reference to the <see cref="T:System.Web.HttpApplicationState" /> object.</para>
</summary>
</member>
<member name="P:System.Web.HttpApplicationState.StaticObjects">
<summary>
<para>Gets all objects declared by an &lt;object&gt; tag where the scope is set to
"Application" within the ASP.NET application.</para>
</summary>
</member>
<member name="T:System.Web.HttpBrowserCapabilities">
<summary>
<para> Enables the server to gather information on
the capabilities of the browser that is running on the client.</para>
</summary>
</member>
<member name="T:System.Web.Configuration.HttpCapabilitiesBase">
<summary>
<para>Defines the base class for client user-agent capabilities.</para>
</summary>
</member>
<member name="M:System.Web.Configuration.HttpCapabilitiesBase.GetConfigCapabilities(System.String,System.Web.HttpRequest)">
<summary>
<para>Returns individual browser capabilities for the current request.</para>
</summary>
<param name="configKey">The name of the configuration section of the capability.</param>
<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>
<returns>
<para>An <see cref="T:System.Web.Configuration.HttpCapabilitiesBase" /> that provides access to individual user-agent
capabilities.</para>
</returns>
</member>
<member name="P:System.Web.Configuration.HttpCapabilitiesBase.Item(System.String)">
<summary>
<para>Gets the value of the specified browser capability.</para>
</summary>
<param name="key">The name of the browser capability to retrieve.</param>
</member>
<member name="P:System.Web.HttpBrowserCapabilities.ClrVersion">
<summary>
<para> Gets the version number of the
.NET common language runtime installed on the client.</para>
</summary>
</member>
<member name="P:System.Web.HttpBrowserCapabilities.Type">
<summary>
Gets the name and major (that is, integer) version
number of the client browser.
</summary>
</member>
<member name="P:System.Web.HttpBrowserCapabilities.Browser">
<summary>
<para> Gets the browser string (if any) that was
transmitted in the <see langword="User-Agent " /> header.</para>
</summary>
</member>
<member name="P:System.Web.HttpBrowserCapabilities.Version">
<summary>
<para> Gets the full (integer and
decimal) version number of the client browser.</para>
</summary>
</member>
<member name="P:System.Web.HttpBrowserCapabilities.MajorVersion">
<summary>
<para>Gets the major (that is, integer) version number of the client browser.</para>
</summary>
</member>
<member name="P:System.Web.HttpBrowserCapabilities.MinorVersion">
<summary>
<para>Gets the minor (that is, decimal) version number of the client browser.</para>
</summary>
</member>
<member name="P:System.Web.HttpBrowserCapabilities.Platform">
<summary>
<para>Gets the name of the platform that the client uses.</para>
</summary>
</member>
<member name="P:System.Web.HttpBrowserCapabilities.EcmaScriptVersion">
<summary>
<para>Gets the version number of ECMA script that the client browser supports.</para>
</summary>
</member>
<member name="P:System.Web.HttpBrowserCapabilities.MSDomVersion">
<summary>
<para>Gets the version of Microsoft HTML (MSHTML) Document Object Model (DOM)
that the client browser supports.</para>
</summary>
</member>
<member name="P:System.Web.HttpBrowserCapabilities.W3CDomVersion">
<summary>
<para>Gets the version of the World Wide Web Consortium (W3C) XML
Document Object Model (DOM) that the client browser supports.</para>
</summary>
</member>
<member name="P:System.Web.HttpBrowserCapabilities.Beta">
<summary>
<para>Gets a value indicating whether the browser is a beta release.</para>
</summary>
</member>
<member name="P:System.Web.HttpBrowserCapabilities.Crawler">
<summary>
<para>Gets a value indicating whether the client browser is a Web crawler search engine.</para>
</summary>
</member>
<member name="P:System.Web.HttpBrowserCapabilities.AOL">
<summary>
<para> Gets a value indicating whether the client is an America Online (AOL) browser.</para>
</summary>
</member>
<member name="P:System.Web.HttpBrowserCapabilities.Win16">
<summary>
<para>Gets a value indicating whether the client is a Win16-based computer.</para>
</summary>
</member>
<member name="P:System.Web.HttpBrowserCapabilities.Win32">
<summary>
<para>Gets a value indicating whether the client is a Win32-based computer.</para>
</summary>
</member>
<member name="P:System.Web.HttpBrowserCapabilities.Frames">
<summary>
<para>Gets a value indicating whether the client browser supports HTML frames.</para>
</summary>
</member>
<member name="P:System.Web.HttpBrowserCapabilities.Tables">
<summary>
<para>Gets a value indicating whether the client browser supports HTML tables.</para>
</summary>
</member>
<member name="P:System.Web.HttpBrowserCapabilities.Cookies">
<summary>
<para>Gets a value indicating whether the client browser supports cookies.</para>
</summary>
</member>
<member name="P:System.Web.HttpBrowserCapabilities.VBScript">
<summary>
<para>Gets a value indicating whether the client browser supports VBScript.</para>
</summary>
</member>
<member name="P:System.Web.HttpBrowserCapabilities.JavaScript">
<summary>
<para>Gets a value indicating whether the client browser supports JavaScript.</para>
</summary>
</member>
<member name="P:System.Web.HttpBrowserCapabilities.JavaApplets">
<summary>
<para>Gets a value indicating whether the client browser supports Java applets.</para>
</summary>
</member>
<member name="P:System.Web.HttpBrowserCapabilities.ActiveXControls">
<summary>
<para>Gets a value indicating whether the client browser supports ActiveX controls.</para>
</summary>
</member>
<member name="P:System.Web.HttpBrowserCapabilities.BackgroundSounds">
<summary>
<para>Gets a value indicating whether the client browser supports background sounds.</para>
</summary>
</member>
<member name="P:System.Web.HttpBrowserCapabilities.CDF">
<summary>
<para>Gets a value indicating whether the client browser supports Channel Definition Format (CDF) for webcasting.</para>
</summary>
</member>
<member name="T:System.Web.HttpCacheVaryByParams">
<summary>
<para> Provides a type-safe way to set the <see cref="P:System.Web.HttpCachePolicy.VaryByParams" /> property that identifies the HTTP
<see langword="Get" /> or <see langword="Post" />
parameters that ASP.NET uses to choose a response from multiple cached
responses.</para>
</summary>
</member>
<member name="P:System.Web.HttpCacheVaryByParams.Item(System.String)">
<summary>
<para>Gets or sets the name of the HTTP <see langword="Get" />
or <see langword="Post" /> parameter that is used to select one of several different cached responses.</para>
</summary>
<param name="header">The name of the custom header.</param>
</member>
<member name="P:System.Web.HttpCacheVaryByParams.IgnoreParams">
<summary>
<para> Gets or sets a value indicating whether HTTP header cache-control parameters are
ignored.</para>
</summary>
</member>
<member name="T:System.Web.HttpCacheability">
<summary>
<para> Provides enumerated values that are used to set
the <see langword="Cache-Control " /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpCacheability.NoCache">
<summary>
<para>Sets the <see langword="Cache-Control: no-cache " /> header. Without
a field name, the directive applies to the entire request and a shared
(proxy server) cache must force a successful revalidation with the origin Web server before
satisfying the request. With a field name, the directive applies only
to the named field;the rest of the response may be supplied from a
shared cache.</para>
<para>For more information, refer to RFC 2616: Hypertext Transfer Protocol --
HTTP/1.1, available on the World Wide Web Consortium's site at
http://www.w3c.org. See section 14.9 "Cache-Control" and section 13, "Caching in
HTTP" for complete details.</para>
<para>Note: <see langword="NoCache " />
does not send the common HTTP 1.0 request directive
<see langword="Pragma: no-cache" />.</para>
</summary>
</member>
<member name="F:System.Web.HttpCacheability.Private">
<summary>
<para>Default value. Sets <see langword="Cache-Control: private " /> to specify that the response is cacheable only on the client and not by
shared (proxy server) caches.</para>
</summary>
</member>
<member name="F:System.Web.HttpCacheability.Server">
<summary>
<para> Specifies that the response is cached only at the origin
server. Similar to the <see langword="NoCache " />option. Clients receive a
<see langword="Cache-Control: no-cache " />directive but the document is cached on
the origin
server.</para>
</summary>
</member>
<member name="F:System.Web.HttpCacheability.Public">
<summary>
<para>Sets <see langword="Cache-Control: public " /> to specify that the response is cacheable by clients and shared (proxy) caches.</para>
</summary>
</member>
<member name="T:System.Web.HttpCacheRevalidation">
<summary>
<para> Provides enumerated values that are used to set revalidation-specific <see langword=" Cache-Control " /> HTTP
headers.</para>
</summary>
</member>
<member name="F:System.Web.HttpCacheRevalidation.AllCaches">
<summary>
<para>Sets the <see langword="Cache-Control: must-revalidate " /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpCacheRevalidation.ProxyCaches">
<summary>
<para>Sets the <see langword="Cache-Control: proxy-revalidate " /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpCacheRevalidation.None">
<summary>
<para> Default value. If this value is set,
no cache-revalidation directive is sent.</para>
</summary>
</member>
<member name="T:System.Web.HttpValidationStatus">
<summary>
<para>Provides enumerated values that indicate cache validation status.</para>
</summary>
</member>
<member name="F:System.Web.HttpValidationStatus.Invalid">
<summary>
<para> Indicates that the cache is invalid. The item is evicted
from the cache and the request is handled as a cache
miss.</para>
</summary>
</member>
<member name="F:System.Web.HttpValidationStatus.IgnoreThisRequest">
<summary>
<para>Indicates that the request is treated as a cache miss
and the page is executed. The cache is not invalidated.</para>
</summary>
</member>
<member name="F:System.Web.HttpValidationStatus.Valid">
<summary>
<para> Indicates that the cache is
valid.</para>
</summary>
</member>
<member name="T:System.Web.HttpCacheValidateHandler">
<summary>
<para>Delegate method that is called when a cached item is validated. Cache items
invalidated within the method are treated as cache misses.</para>
</summary>
<param name="context">The <see cref="T:System.Web.HttpContext" /> object containing information about the current request.</param>
<param name=" data">User-supplied data used to validate the cached item.</param>
<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>
</member>
<member name="P:System.Web.HttpCachePolicySettings.NoServerCaching">
</member>
<member name="T:System.Web.HttpCachePolicy">
<summary>
<para> Contains methods for setting
cache-specific HTTP headers and for controlling the ASP.NET page output cache.</para>
</summary>
</member>
<member name="M:System.Web.HttpCachePolicy.SetNoServerCaching">
<summary>
<para> Stops all origin-server caching for the current response. </para>
</summary>
</member>
<member name="M:System.Web.HttpCachePolicy.SetVaryByCustom(System.String)">
<summary>
<para>Sets the <see langword="Vary " />HTTP
header to the specified text string.</para>
</summary>
<param name="custom">The text to set the <see langword="Vary" /> header to.</param>
</member>
<member name="M:System.Web.HttpCachePolicy.AppendCacheExtension(System.String)">
<summary>
<para>Appends the specified text to
the <see langword="Cache-Control " /> HTTP
header.</para>
</summary>
<param name="extension">The text to append to the <see langword="Cache-Control" /> header.</param>
</member>
<member name="M:System.Web.HttpCachePolicy.SetNoTransforms">
<summary>
<para>Sets the <see langword="CacheControl: no-transform " />
directive.</para>
</summary>
</member>
<member name="M:System.Web.HttpCachePolicy.SetCacheability(System.Web.HttpCacheability)">
<summary>
<para>Sets the <see langword="Cache-Control " /> header to one of the values of
<see cref="T:System.Web.HttpCacheability" />
.</para>
</summary>
<param name="cacheability">An <see cref="T:System.Web.HttpCacheability" /> enumeration value.</param>
</member>
<member name="M:System.Web.HttpCachePolicy.SetCacheability(System.Web.HttpCacheability,System.String)">
<summary>
<para> Sets the <see langword="Cache-Control " /> header to one of the values of <see cref="T:System.Web.HttpCacheability" /> and
appends an extension to the directive.</para>
</summary>
<param name="cacheability">The <see cref="T:System.Web.HttpCacheability" /> enumeration value to set the header to.</param>
<param name=" field">The cache control extension to add to the header.</param>
</member>
<member name="M:System.Web.HttpCachePolicy.SetNoStore">
<summary>
<para>
Sets the <see langword="Cache-Control: no-store " />
directive.</para>
</summary>
</member>
<member name="M:System.Web.HttpCachePolicy.SetExpires(System.DateTime)">
<summary>
<para> Sets the <see langword="Expires " /> HTTP header to an absolute date and time.</para>
</summary>
<param name="date">The absolute <see cref="T:System.DateTime" /> value to set the <see langword="Expires" />header to.</param>
</member>
<member name="M:System.Web.HttpCachePolicy.SetMaxAge(System.TimeSpan)">
<summary>
<para>Sets the <see langword="Cache-Control: max-age " />HTTP header based on the specified time span.</para>
</summary>
<param name="delta">The time span used to set the <see langword="Cache" />-<see langword="Control: max-age" /> header.</param>
</member>
<member name="M:System.Web.HttpCachePolicy.SetProxyMaxAge(System.TimeSpan)">
<summary>
<para>Sets the <see langword="Cache-Control: s-maxage " /> HTTP header based on the specified time span.</para>
</summary>
<param name="delta">The time span used to set the <see langword="Cache-Control: s-maxage" /> header.</param>
</member>
<member name="M:System.Web.HttpCachePolicy.SetSlidingExpiration(System.Boolean)">
<summary>
<para>
Sets cache expiration to sliding.</para>
</summary>
<param name="slide">
<see langword="true" /> or <see langword="false" /> .</param>
</member>
<member name="M:System.Web.HttpCachePolicy.SetValidUntilExpires(System.Boolean)">
<summary>
<para>Specifies whether the ASP.NET cache should ignore
HTTP <see langword="Cache-Control" /> headers sent by the client that
invalidate the cache.</para>
</summary>
<param name="validUntilExpires">
<see langword="true" /> if the cache ignores <see langword="Cache-Control" /> invalidation headers; otherwise, <see langword="false" />.</param>
</member>
<member name="M:System.Web.HttpCachePolicy.SetRevalidation(System.Web.HttpCacheRevalidation)">
<summary>
<para>Sets the <see langword="Cache-Control " />HTTP header
to either the <see langword="must-revalidate " />or the
<see langword="proxy-revalidate " />directives based on the supplied enumeration
value.</para>
</summary>
<param name="revalidation">The <see cref="T:System.Web.HttpCacheRevalidation" /> enumeration value to set the <see langword="Cache-Control" /> header to.</param>
</member>
<member name="M:System.Web.HttpCachePolicy.SetETag(System.String)">
<summary>
<para>Sets the <see langword="ETag " /> HTTP header to the specified string.</para>
</summary>
<param name="etag">The text to use for the <see langword="ETag" /> header.</param>
</member>
<member name="M:System.Web.HttpCachePolicy.SetLastModified(System.DateTime)">
<summary>
<para>Sets the <see langword="Last-Modified " />HTTP header to the <see cref="T:System.DateTime" /> value supplied.</para>
</summary>
<param name="date">The new <see cref="T:System.DateTime" /> value for the <see langword="Last-Modified" /> header.</param>
</member>
<member name="M:System.Web.HttpCachePolicy.SetLastModifiedFromFileDependencies">
<summary>
<para>Sets the <see langword="Last-Modified " />HTTP header based on the time stamps
of the handler's file dependencies.</para>
</summary>
</member>
<member name="M:System.Web.HttpCachePolicy.SetETagFromFileDependencies">
<summary>
<para>Sets the <see langword="ETag" /> HTTP header based on the time stamps of
the handler's file dependencies.</para>
</summary>
</member>
<member name="M:System.Web.HttpCachePolicy.AddValidationCallback(System.Web.HttpCacheValidateHandler,System.Object)">
<summary>
<para>Registers a validation callback for the current response.</para>
</summary>
<param name="handler">The <see cref="T:System.Web.HttpCacheValidateHandler" /> value.</param>
<param name="data">The arbitrary user-supplied data that is passed back to the <see langword="AddValidationCallback" /> delegate.</param>
</member>
<member name="P:System.Web.HttpCachePolicy.VaryByHeaders">
<summary>
<para> Gets the list of all HTTP headers that will be
used to vary cache output.</para>
</summary>
</member>
<member name="P:System.Web.HttpCachePolicy.VaryByParams">
<summary>
<para>Gets the list of parameters received by a <see langword="GET " />(querystring) or <see langword="POST " />(in the body of the HTTP
request) that affect
caching.</para>
</summary>
</member>
<member name="T:System.Web.HttpCacheVaryByHeaders">
<summary>
<para> Provides a type-safe way to set the <see cref="P:System.Web.HttpCachePolicy.VaryByHeaders" /> property that identifies the request
headers that ASP.NET adds to the <see langword="Vary" />
HTTP header sent to the
client.</para>
</summary>
</member>
<member name="M:System.Web.HttpCacheVaryByHeaders.VaryByUnspecifiedParameters">
<summary>
<para>Causes ASP.NET to set the <see langword="Vary" /> HTTP
header to the value * (an asterisk) and causes
all other <see langword="Vary" />
header information to be dropped.</para>
</summary>
</member>
<member name="P:System.Web.HttpCacheVaryByHeaders.AcceptTypes">
<summary>
<para> Gets or sets a value indicating whether the origin server
adds the <see langword="Accept" /> field to the
<see langword="Vary" />
HTTP header.</para>
</summary>
</member>
<member name="P:System.Web.HttpCacheVaryByHeaders.UserLanguage">
<summary>
<para> Gets or sets a value indicating whether the origin
server adds the <see langword="Accept-Language" /> field to the
<see langword="Vary" />
HTTP header.</para>
</summary>
</member>
<member name="P:System.Web.HttpCacheVaryByHeaders.UserAgent">
<summary>
Gets or sets a value indicating whether
the origin server adds the <see langword="User-Agent" /> header to the
<see langword="Vary" /> HTTP header.
</summary>
</member>
<member name="P:System.Web.HttpCacheVaryByHeaders.UserCharSet">
<summary>
<para> Gets or sets a value indicating whether the
origin server adds the <see langword="Accept-Charset" /> field
to the
<see langword="Vary" />
HTTP header.</para>
</summary>
</member>
<member name="P:System.Web.HttpCacheVaryByHeaders.Item(System.String)">
<summary>
<para> Gets or sets a custom header field that the origin server
adds to the <see langword="Vary" /> HTTP
header.</para>
</summary>
<param name="header">The name of the custom header.</param>
</member>
<member name="T:System.Web.HttpClientCertificate">
<summary>
<para> Provides the client certificate fields issued by the client in response to the server's request for the client's identity.</para>
</summary>
</member>
<member name="M:System.Web.HttpClientCertificate.Get(System.String)">
<summary>
<para>Returns individual client certificate fields by name.</para>
</summary>
<param name="field">The item in the collection to retrieve.</param>
<returns>
<para>The value of the item specified by <paramref name="field." /></para>
</returns>
</member>
<member name="P:System.Web.HttpClientCertificate.Cookie">
<summary>
<para>Gets the unique ID for the client certificate, if provided.</para>
</summary>
</member>
<member name="P:System.Web.HttpClientCertificate.Certificate">
<summary>
<para>Gets a string containing the binary stream of the entire certificate content, in ASN.1 format.</para>
</summary>
</member>
<member name="P:System.Web.HttpClientCertificate.Flags">
<summary>
<para>A set of flags that provide additional client certificate information. </para>
</summary>
</member>
<member name="P:System.Web.HttpClientCertificate.KeySize">
<summary>
<para> Gets the number of bits in the digital certificate key size.
For example, 128. </para>
</summary>
</member>
<member name="P:System.Web.HttpClientCertificate.SecretKeySize">
<summary>
<para>Gets the number of bits in the server certificate
private key. For example, 1024.</para>
</summary>
</member>
<member name="P:System.Web.HttpClientCertificate.Issuer">
<summary>
<para> A string that contains a list of subfield values containing
information about the certificate issuer.</para>
</summary>
</member>
<member name="P:System.Web.HttpClientCertificate.ServerIssuer">
<summary>
<para>Gets the issuer field of the server certificate.</para>
</summary>
</member>
<member name="P:System.Web.HttpClientCertificate.Subject">
<summary>
<para>Gets the subject field of the client certificate.</para>
</summary>
</member>
<member name="P:System.Web.HttpClientCertificate.ServerSubject">
<summary>
<para>Gets the subject field of the server certificate.</para>
</summary>
</member>
<member name="P:System.Web.HttpClientCertificate.SerialNumber">
<summary>
<para> Provides the certificate serial number as an
ASCII representation of hexadecimal bytes separated by hyphens. For example,
04-67-F3-02.</para>
</summary>
</member>
<member name="P:System.Web.HttpClientCertificate.ValidFrom">
<summary>
<para> Gets the date when the certificate becomes valid. The date varies with
international settings. </para>
</summary>
</member>
<member name="P:System.Web.HttpClientCertificate.ValidUntil">
<summary>
<para> Gets the certificate expiration date.</para>
</summary>
</member>
<member name="P:System.Web.HttpClientCertificate.CertEncoding">
<summary>
<para> Gets the encoding of the certificate.</para>
</summary>
</member>
<member name="P:System.Web.HttpClientCertificate.PublicKey">
<summary>
<para>Gets the public key binary value from the certificate.</para>
</summary>
</member>
<member name="P:System.Web.HttpClientCertificate.BinaryIssuer">
<summary>
<para>Gets or sets the certificate issuer, in binary format.</para>
</summary>
</member>
<member name="P:System.Web.HttpClientCertificate.IsPresent">
<summary>
<para>Gets a value that indicates whether the client certificate is present.</para>
</summary>
</member>
<member name="P:System.Web.HttpClientCertificate.IsValid">
<summary>
<para>Gets a value that indicates whether the client
certificate is valid.</para>
</summary>
</member>
<member name="T:System.Web.HttpContext">
<summary>
<para> Encapsulates all HTTP-specific information about an individual HTTP request.</para>
</summary>
</member>
<member name="M:System.Web.HttpContext.#ctor(System.Web.HttpRequest,System.Web.HttpResponse)">
<summary>
<para> Initializes a new instance of the <see cref="T:System.Web.HttpContext" /> class.
</para>
</summary>
<param name="request">The <see cref="T:System.Web.HttpRequest" /> object for the current HTTP request. </param>
<param name=" response">The <see cref="T:System.Web.HttpResponse" /> object for the current HTTP request. </param>
</member>
<member name="M:System.Web.HttpContext.#ctor(System.Web.HttpWorkerRequest)">
<summary>
<para> Initializes a new instance of the <see cref="T:System.Web.HttpContext" /> class.
</para>
</summary>
<param name="wr">The <see cref="T:System.Web.HttpWorkerRequest" /> object for the current HTTP request. </param>
</member>
<member name="M:System.Web.HttpContext.AddError(System.Exception)">
<summary>
<para> Adds an exception to the exception collection for the current HTTP request.
</para>
</summary>
<param name="errorInfo">The <see cref="T:System.Exception" /> object to add to the exception collection. </param>
</member>
<member name="M:System.Web.HttpContext.ClearError">
<summary>
<para> Clears all errors for the current HTTP request.
</para>
</summary>
</member>
<member name="M:System.Web.HttpContext.GetConfig(System.String)">
<summary>
<para>Returns requested configuration information for the current HTTP
request.</para>
</summary>
<param name="name">The configuration tag that information is requested for.</param>
<returns>
<para>The object containing the requested configuration information.</para>
</returns>
</member>
<member name="M:System.Web.HttpContext.GetAppConfig(System.String)">
<summary>
<para>Returns requested configuration information for the
current application</para>
</summary>
<param name="name">The application configuration tag that information is requested for.</param>
<returns>
<para>An object containing configuration information.</para>
</returns>
</member>
<member name="M:System.Web.HttpContext.RewritePath(System.String)">
<summary>
<para> Assigns an internal rewrite path.</para>
</summary>
<param name="path">The internal rewrite path.</param>
</member>
<member name="P:System.Web.HttpContext.Current">
<summary>
<para> Gets the <see cref="T:System.Web.HttpContext" /> object for the current HTTP request.</para>
</summary>
</member>
<member name="P:System.Web.HttpContext.ApplicationInstance">
<summary>
<para> Gets or sets the <see cref="T:System.Web.HttpApplication" /><see langword=" " /> object for the current HTTP request.</para>
</summary>
</member>
<member name="P:System.Web.HttpContext.Application">
<summary>
<para> Gets the <see cref="T:System.Web.HttpApplicationState" /> object for the current
HTTP request.
</para>
</summary>
</member>
<member name="P:System.Web.HttpContext.Handler">
<summary>
<para> Gets or sets the <see cref="T:System.Web.IHttpHandler" /> object
for the current HTTP request.</para>
</summary>
</member>
<member name="P:System.Web.HttpContext.Request">
<summary>
<para> Gets the <see cref="T:System.Web.HttpRequest" /> object
for the current HTTP request.</para>
</summary>
</member>
<member name="P:System.Web.HttpContext.Response">
<summary>
<para> Gets the <see cref="T:System.Web.HttpResponse" /> object
for the current HTTP response.</para>
</summary>
</member>
<member name="P:System.Web.HttpContext.Trace">
<summary>
<para> Gets the <see cref="T:System.Web.TraceContext" /> object for the current HTTP
response.</para>
</summary>
</member>
<member name="P:System.Web.HttpContext.Items">
<summary>
<para> Gets a key-value collection that can be
used to organize and share data between an <see cref="T:System.Web.IHttpModule" /> and an <see cref="T:System.Web.IHttpHandler" /> during
an HTTP
request.
</para>
</summary>
</member>
<member name="P:System.Web.HttpContext.Session">
<summary>
<para> Gets the <see cref="T:System.Web.SessionState.HttpSessionState" /> instance for the current HTTP request.
</para>
</summary>
</member>
<member name="P:System.Web.HttpContext.Server">
<summary>
<para> Gets the <see cref="T:System.Web.HttpServerUtility" /> object
that provides methods used
in processing Web
requests.</para>
</summary>
</member>
<member name="P:System.Web.HttpContext.Error">
<summary>
<para> Gets the first
error (if any) accumulated during HTTP request processing.
</para>
</summary>
</member>
<member name="P:System.Web.HttpContext.AllErrors">
<summary>
<para> Gets an array of errors accumulated while processing an HTTP
request.
</para>
</summary>
</member>
<member name="P:System.Web.HttpContext.User">
<summary>
<para> Gets or sets security information for the current HTTP request.
</para>
</summary>
</member>
<member name="P:System.Web.HttpContext.SkipAuthorization">
<summary>
<para>Gets or sets a value that specifies whether the
URLAuthorization module will skip the authorization check for the
current request. </para>
</summary>
</member>
<member name="P:System.Web.HttpContext.IsDebuggingEnabled">
<summary>
<para> Gets a value indicating whether the current HTTP request is in debug mode.
</para>
</summary>
</member>
<member name="P:System.Web.HttpContext.IsCustomErrorEnabled">
<summary>
<para> Gets a value indicating whether custom errors are enabled for the current HTTP request.
</para>
</summary>
</member>
<member name="P:System.Web.HttpContext.Timestamp">
<summary>
<para>Gets the initial timestamp of the current HTTP request.</para>
</summary>
</member>
<member name="P:System.Web.HttpContext.Cache">
<summary>
<para> Gets the <see cref="T:System.Web.Caching.Cache" /> object for the current HTTP request.
</para>
</summary>
</member>
<member name="T:System.Web.HttpCookie">
<summary>
<para> Provides a type-safe way to
create and manipulate individual HTTP cookies.</para>
</summary>
</member>
<member name="M:System.Web.HttpCookie.#ctor(System.String)">
<summary>
<para> Creates and names a new
cookie.</para>
</summary>
<param name="name">The name of the new cookie.</param>
</member>
<member name="M:System.Web.HttpCookie.#ctor(System.String,System.String)">
<summary>
<para>
Creates, names, and assigns a value to a new
cookie.</para>
</summary>
<param name="name">The name of the new cookie.</param>
<param name=" value">The value of the new cookie.</param>
</member>
<member name="P:System.Web.HttpCookie.Name">
<summary>
<para>Gets or
sets the name of a cookie.</para>
</summary>
</member>
<member name="P:System.Web.HttpCookie.Path">
<summary>
<para>Gets or sets the virtual path to transmit with the
current cookie.</para>
</summary>
</member>
<member name="P:System.Web.HttpCookie.Secure">
<summary>
<para>Gets or sets a value indicating whether to transmit the cookie securely (that is, over HTTPS only).</para>
</summary>
</member>
<member name="P:System.Web.HttpCookie.Domain">
<summary>
<para> Gets or sets the domain to associate the cookie with.</para>
</summary>
</member>
<member name="P:System.Web.HttpCookie.Expires">
<summary>
<para>Gets or sets the expiration date and time for the cookie.</para>
</summary>
</member>
<member name="P:System.Web.HttpCookie.Value">
<summary>
<para>Gets
or
sets an individual cookie value.</para>
</summary>
</member>
<member name="P:System.Web.HttpCookie.HasKeys">
<summary>
<para> Gets
a value indicating whether a cookie has subkeys.</para>
</summary>
</member>
<member name="P:System.Web.HttpCookie.Values">
<summary>
<para>Gets a collection of key-and-value value pairs that are contained within a single cookie object.</para>
</summary>
</member>
<member name="P:System.Web.HttpCookie.Item(System.String)">
<summary>
<para>Shortcut for
<see langword="HttpCookie.Values[" />key<see langword="]. " /> This property
is provided for compatibility with previous versions of ASP.</para>
</summary>
<param name="key">Key (index) of cookie value.</param>
</member>
<member name="T:System.Web.HttpCookieCollection">
<summary>
<para>
Provides a type-safe
way to manipulate HTTP cookies.
</para>
</summary>
</member>
<member name="M:System.Web.HttpCookieCollection.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.HttpCookieCollection" />
class.</para>
</summary>
</member>
<member name="M:System.Web.HttpCookieCollection.Add(System.Web.HttpCookie)">
<summary>
<para>Adds the specified cookie to the cookie collection.</para>
</summary>
<param name="cookie">The <see cref="T:System.Web.HttpCookie" /> to add to the collection.</param>
</member>
<member name="M:System.Web.HttpCookieCollection.CopyTo(System.Array,System.Int32)">
<summary>
<para>Copies members of the cookie collection to an
<see cref="T:System.Array" /> beginning at the
specified index of the array.</para>
</summary>
<param name="dest">The destination <see cref="T:System.Array" />.</param>
<param name=" index">The index of the destination array where copying starts.</param>
</member>
<member name="M:System.Web.HttpCookieCollection.Set(System.Web.HttpCookie)">
<summary>
<para> Updates the value of an existing cookie in a cookie collection.</para>
</summary>
<param name="cookie">The <see cref="T:System.Web.HttpCookie" /> object to update.</param>
</member>
<member name="M:System.Web.HttpCookieCollection.Remove(System.String)">
<summary>
<para>Removes the cookie with the specified name from the collection.</para>
</summary>
<param name="name">The name of the cookie to remove from the collection.</param>
</member>
<member name="M:System.Web.HttpCookieCollection.Clear">
<summary>
<para>Clears all cookies from the cookie collection.</para>
</summary>
</member>
<member name="M:System.Web.HttpCookieCollection.GetKey(System.Int32)">
<summary>
<para>Returns the key (name) of the cookie at the specified numerical index.</para>
</summary>
<param name="index">The index of the key to retrieve from the collection.</param>
<returns>
<para>The name of the cookie specified by <paramref name="index" />.</para>
</returns>
</member>
<member name="P:System.Web.HttpCookieCollection.Item(System.String)">
<summary>
<para> Gets the cookie with the specified name from the cookie collection.</para>
</summary>
<param name="name">Name of cookie to retrieve.</param>
</member>
<member name="P:System.Web.HttpCookieCollection.Item(System.Int32)">
<summary>
<para> Gets the
cookie
with the specified numerical index from the cookie collection.</para>
</summary>
<param name="index">The index of the cookie to retrieve from the collection.</param>
</member>
<member name="P:System.Web.HttpCookieCollection.AllKeys">
<summary>
<para>Gets a string array containing all the keys (cookie names) in the cookie collection.</para>
</summary>
</member>
<member name="M:System.Web.HttpDebugHandler.ProcessRequest(System.Web.HttpContext)">
<summary>
<para>Drives web processing execution.</para>
</summary>
<param name="context">HttpContext object.</param>
</member>
<member name="P:System.Web.HttpDebugHandler.IsReusable">
<summary>
<para>Indicates whether an HttpDebugHandler instance can be recycled and used for
another request.</para>
</summary>
<returns>
<para>Always returns <see langword="true " />for
HttpDebugHandler<see langword="." /></para>
</returns>
</member>
<member name="T:System.Web.HttpException">
<summary>
<para> Provides a means of generating HTTP exceptions.</para>
</summary>
</member>
<member name="M:System.Web.HttpException.CreateFromLastError(System.String)">
<summary>
<para>Creates a new <see cref="T:System.Exception" /> based on the error code returned from the Win32 API
<see langword="GetLastError()" /> method. </para>
</summary>
<param name="message">The message to be displayed to the client when the exception is thrown. </param>
<returns>
<para>An <see langword="Exception" /> based
on the error code that is returned from a
call to the Win32 API <see langword="GetLastError()" /> method.</para>
</returns>
</member>
<member name="M:System.Web.HttpException.#ctor">
<summary>
<para>Constructs an empty <see langword="Exception " />
object.</para>
</summary>
</member>
<member name="M:System.Web.HttpException.#ctor(System.String)">
<summary>
<para> Constructs an <see cref="T:System.Exception" /> using a supplied error message.
</para>
</summary>
<param name="message"> The message displayed to the client when the exception is thrown. </param>
</member>
<member name="M:System.Web.HttpException.#ctor(System.String,System.Int32)">
<summary>
<para>Constructs an <see cref="T:System.Exception" /> using error message and an exception code.</para>
</summary>
<param name="message"> The error message displayed to the client when the exception is thrown. </param>
<param name=" hr">The exception code that defines the error.</param>
</member>
<member name="M:System.Web.HttpException.#ctor(System.String,System.Exception)">
<summary>
<para>Constructs an <see cref="T:System.Exception" /> using an error message and the
<see cref="P:System.Exception.InnerException" /> property.</para>
</summary>
<param name="message">The message displayed to the client when the exception is thrown. </param>
<param name=" innerException">The <see cref="P:System.Exception.InnerException" />, if any, that threw the current exception.</param>
</member>
<member name="M:System.Web.HttpException.#ctor(System.Int32,System.String,System.Exception)">
<summary>
<para>Constructs an <see cref="T:System.Exception" /> using an HTTP error code, an error message,
and the <see cref="P:System.Exception.InnerException" />
property.
</para>
</summary>
<param name="httpCode">The HTTP error code displayed to the client. </param>
<param name=" message">The message displayed to the client. </param>
<param name=" innerException">The <see cref="P:System.Exception.InnerException" /> , if any, that threw the current exception.</param>
</member>
<member name="M:System.Web.HttpException.#ctor(System.Int32,System.String)">
<summary>
<para>Constructs an <see cref="T:System.Exception" /> using
an HTTP error code and an error message.</para>
</summary>
<param name="httpCode"> The HTTP error code displayed on the client. </param>
<param name=" message">The message displayed to the client when the exception is thrown.</param>
</member>
<member name="M:System.Web.HttpException.#ctor(System.Int32,System.String,System.Int32)">
<summary>
<para> Constructs an <see cref="T:System.Exception" /> using HTTP error code, an error message, and an exception
code.</para>
</summary>
<param name="httpCode">The HTTP error code displayed on the client.</param>
<param name=" message">The error message displayed to the client. </param>
<param name=" hr">The error code that defines the error.</param>
</member>
<member name="M:System.Web.HttpException.GetHttpCode">
<summary>
<para>Returns the HTTP error code to send back to the client.
If there is a nonzero HTTP code, it is returned. Otherwise, the <see cref="P:System.Exception.InnerException" />
code is returned. If neither an <see cref="P:System.Exception.InnerException" /> code nor a
nonzero HTTP code is available,
the HTTP error code 500 is returned.</para>
</summary>
<returns>
<para>The HTTP code representing the exception.</para>
</returns>
</member>
<member name="M:System.Web.HttpException.GetHtmlErrorMessage">
<summary>
<para>Returns the HTML error message to send back to the
client.</para>
</summary>
<returns>
<para>The HTML error message.</para>
</returns>
</member>
<member name="T:System.Web.HttpCompileException">
<summary>
<para>The exception that is thrown when a compiler error occurs.</para>
</summary>
</member>
<member name="P:System.Web.HttpCompileException.Results">
<summary>
<para>Gets compiler output and error information for
the exception. </para>
</summary>
</member>
<member name="P:System.Web.HttpCompileException.SourceCode">
<summary>
<para>Gets a string containing the
source code being compiled when the error occurs. </para>
</summary>
</member>
<member name="T:System.Web.HttpParseException">
<summary>
<para>The exception that is thrown when a parse error occurs.</para>
</summary>
</member>
<member name="P:System.Web.HttpParseException.FileName">
<summary>
<para>Gets the name of the file being parsed when the error occurs.</para>
</summary>
</member>
<member name="P:System.Web.HttpParseException.Line">
<summary>
<para>Gets the number of the line being parsed when the error occurs.</para>
</summary>
</member>
<member name="T:System.Web.HttpFileCollection">
<summary>
<para> Provides access to and organizes files uploaded by a
client.</para>
</summary>
</member>
<member name="M:System.Web.HttpFileCollection.CopyTo(System.Array,System.Int32)">
<summary>
<para> Copies members of the file collection to an
<see cref="T:System.Array" /> beginning at the specified index of the array.</para>
</summary>
<param name="dest">The destination <see cref="T:System.Array" />.</param>
<param name=" index">The index of the destination array where copying starts.</param>
</member>
<member name="M:System.Web.HttpFileCollection.GetKey(System.Int32)">
<summary>
<para>Returns the name of the <see cref="T:System.Web.HttpFileCollection" /> member with
the specified numerical index.</para>
</summary>
<param name="index">The index of the object name to be returned.</param>
<returns>
<para>The name of the <see langword="HttpFileCollection" /> member specified by
<paramref name="index." /></para>
</returns>
</member>
<member name="P:System.Web.HttpFileCollection.Item(System.String)">
<summary>
<para>Gets the object with the specified name from the file collection.</para>
</summary>
<param name="name">Name of item to be returned.</param>
</member>
<member name="P:System.Web.HttpFileCollection.Item(System.Int32)">
<summary>
<para>Gets the object with the specified numerical index from
the <see cref="T:System.Web.HttpFileCollection" />
. </para>
</summary>
<param name="index">The index of the item to get from the file collection.</param>
</member>
<member name="P:System.Web.HttpFileCollection.AllKeys">
<summary>
<para>Gets a string array containing the keys (names) of all members in the file collection.</para>
</summary>
</member>
<member name="T:System.Web.HttpModuleCollection">
<summary>
<para>Provides a means of indexing and retrieving a collection
of <see cref="T:System.Web.IHttpModule" />
objects.</para>
</summary>
</member>
<member name="M:System.Web.HttpModuleCollection.CopyTo(System.Array,System.Int32)">
<summary>
<para>Copies members of the module collection to an
<see cref="T:System.Array" /> beginning
at the specified index of the array.</para>
</summary>
<param name="dest">The destination <see langword="Array" />.</param>
<param name=" index">The index of the destination <see langword="Array" /> where copying starts.</param>
</member>
<member name="M:System.Web.HttpModuleCollection.Get(System.String)">
<summary>
<para>Returns the <see cref="T:System.Web.IHttpModule" /> object with the specified name
from the <see cref="T:System.Web.HttpModuleCollection" />
.</para>
</summary>
<param name="name">Key of the item to be retrieved.</param>
<returns>
<para>The <see langword="IHttpModule" /> member specified by <paramref name="name" />.</para>
</returns>
</member>
<member name="M:System.Web.HttpModuleCollection.Get(System.Int32)">
<summary>
<para>Returns the <see cref="T:System.Web.IHttpModule" />object with the specified index from
the <see cref="T:System.Web.HttpModuleCollection" />
.</para>
</summary>
<param name="index">Index of the <see cref="T:System.Web.IHttpModule" /> object to return from the collection.</param>
<returns>
<para>The <see langword="IHttpModule" /> member specified by <paramref name="index" />.</para>
</returns>
</member>
<member name="M:System.Web.HttpModuleCollection.GetKey(System.Int32)">
<summary>
<para>Returns the key (name) of the <see cref="T:System.Web.IHttpModule" /> object
at the specified numerical index..</para>
</summary>
<param name="index">Index of the key to retrieve from the collection.</param>
<returns>
<para>The name of the <see langword="IHttpModule" /> member specified by <paramref name="index" />.</para>
</returns>
</member>
<member name="P:System.Web.HttpModuleCollection.Item(System.String)">
<summary>
<para>Gets the <see cref="T:System.Web.IHttpModule" /><see langword=" " />object with the
specified name from the <see cref="T:System.Web.HttpModuleCollection" />
.</para>
</summary>
<param name="name">Key of the item to be retrieved.</param>
</member>
<member name="P:System.Web.HttpModuleCollection.Item(System.Int32)">
<summary>
<para>Gets the <see cref="T:System.Web.IHttpModule" /> object with the specified numerical
index from the <see cref="T:System.Web.HttpModuleCollection" />
.</para>
</summary>
<param name="index">The index of the <see cref="T:System.Web.IHttpModule" /> object to retrieve from the collection. </param>
</member>
<member name="P:System.Web.HttpModuleCollection.AllKeys">
<summary>
<para>Gets a string array containing all the keys (module
names) in the <see cref="T:System.Web.HttpModuleCollection" />.
</para>
</summary>
</member>
<member name="M:System.Web.HttpNotFoundHandler.ProcessRequest(System.Web.HttpContext)">
<summary>
<para>Drives web processing execution.</para>
</summary>
<param name="context">HttpContext object.</param>
</member>
<member name="P:System.Web.HttpNotFoundHandler.IsReusable">
<summary>
<para>Indicates whether an HttpNotFoundHandler instance can be recycled and used
for another request.</para>
</summary>
<returns>
<para>Always returns <see langword="true" /> for
HttpNotFoundHandler.</para>
</returns>
</member>
<member name="M:System.Web.HttpForbiddenHandler.ProcessRequest(System.Web.HttpContext)">
</member>
<member name="P:System.Web.HttpForbiddenHandler.IsReusable">
</member>
<member name="M:System.Web.HttpMethodNotAllowedHandler.ProcessRequest(System.Web.HttpContext)">
<summary>
<para> Drives
web processing execution.</para>
</summary>
<param name="context">HttpContext object</param>
</member>
<member name="P:System.Web.HttpMethodNotAllowedHandler.IsReusable">
<summary>
<para>Indicates whether an HttpForbiddenHandler instance can be recycled and used
for another request.</para>
</summary>
<returns>
<para>Always returns <see langword="true" /> for HttpForbiddenHandler.</para>
</returns>
</member>
<member name="M:System.Web.HttpNotImplementedHandler.ProcessRequest(System.Web.HttpContext)">
<summary>
<para>Drives web processing execution.</para>
</summary>
<param name="context">HttpContext object</param>
</member>
<member name="P:System.Web.HttpNotImplementedHandler.IsReusable">
<summary>
<para>Indicates whether an HttpNotImplementedHandler instance can be recycled and
used for another request.</para>
</summary>
<returns>
<para>Always returns <see langword="true" /> for HttpForbiddenHandler.</para>
</returns>
</member>
<member name="T:System.Web.HttpPostedFile">
<summary>
<para>Provides a way to access individual files that
have been uploaded by a client.</para>
</summary>
</member>
<member name="M:System.Web.HttpPostedFile.SaveAs(System.String)">
<summary>
<para> Saves an uploaded MIME message body to a file on the server.</para>
</summary>
<param name="filename">The name of the file.</param>
</member>
<member name="P:System.Web.HttpPostedFile.FileName">
<summary>
<para> Gets the fully-qualified name of the file on the client's computer (for
example "C:\MyFiles\Test.txt").</para>
</summary>
</member>
<member name="P:System.Web.HttpPostedFile.ContentType">
<summary>
<para> Gets the MIME content type of a file sent by a client.</para>
</summary>
</member>
<member name="P:System.Web.HttpPostedFile.ContentLength">
<summary>
<para>Gets the size in bytes of an uploaded file.</para>
</summary>
</member>
<member name="P:System.Web.HttpPostedFile.InputStream">
<summary>
<para> Gets a <see cref="T:System.IO.Stream" /> object which points to an uploaded file to prepare for
reading the contents of the file.</para>
</summary>
</member>
<member name="T:System.Web.HttpRequest">
<summary>
<para> Enables ASP.NET to read the HTTP values sent by
a client during a Web request.</para>
</summary>
</member>
<member name="M:System.Web.HttpRequest.BinaryRead(System.Int32)">
<summary>
<para>Performs a binary read of a specified number of bytes from the current input
stream.</para>
</summary>
<param name="count">Number of bytes to read.</param>
<returns>
<para>A <see langword="byte" /> array.</para>
</returns>
</member>
<member name="M:System.Web.HttpRequest.MapImageCoordinates(System.String)">
<summary>
<para> Maps an incoming image-field form parameter to appropriate x/y
coordinate values.</para>
</summary>
<param name="imageFieldName">A string reference to a form image map.</param>
<returns>
<para>A two-dimensional array of <see langword="integers" />.</para>
</returns>
</member>
<member name="M:System.Web.HttpRequest.SaveAs(System.String,System.Boolean)">
<summary>
<para>Saves an HTTP request to disk.</para>
</summary>
<param name="filename">A string reference to a physical drive path.</param>
<param name="includeHeaders">A <see langword="Boolean" /> value specifying whether an HTTP header should be saved to disk.</param>
</member>
<member name="M:System.Web.HttpRequest.MapPath(System.String)">
<summary>
<para>Maps the specified virtual path to a physical path.</para>
</summary>
<param name="virtualPath">The virtual path (absolute or relative) for the current request.</param>
<returns>
<para>The physical path on the server specified by <paramref name="virtualPath" />.</para>
</returns>
</member>
<member name="M:System.Web.HttpRequest.MapPath(System.String,System.String,System.Boolean)">
<summary>
<para>Maps the specified virtual path to a physical path.</para>
</summary>
<param name="virtualPath">The virtual path (absolute or relative) for the current request.</param>
<param name="baseVirtualDir">The virtual base directory path used for relative resolution.</param>
<param name="allowCrossAppMapping">If <see langword="true" />, the <paramref name="virtualPath " /> may belong to another application.</param>
<returns>
<para>The physical path on the server.</para>
</returns>
</member>
<member name="P:System.Web.HttpRequest.HttpMethod">
<summary>
<para> Gets the HTTP data transfer method (such as
<see langword="GET" />, <see langword="POST" />, or <see langword="HEAD" /> ) used by the client.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.RequestType">
<summary>
<para>Gets or sets the HTTP data transfer method
(<see langword="GET" /> or <see langword="POST" /> ) used by
the client.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.ContentType">
<summary>
<para> Gets the MIME content type of the incoming request.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.ContentLength">
<summary>
<para>Specifies the length, in bytes, of content sent by the client.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.ContentEncoding">
<summary>
<para> Gets the character set of the entity-body.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.AcceptTypes">
<summary>
<para> Gets a string array of client-supported MIME accept types.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.IsAuthenticated">
<summary>
<para>
Gets a
value indicating whether the user has been authenticated.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.IsSecureConnection">
<summary>
<para> Gets a value indicting whether the HTTP connection uses secure sockets (that is, HTTPS).</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.Path">
<summary>
<para> Gets
the virtual
path of the current request.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.FilePath">
<summary>
<para> Gets the virtual path of the current request.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.CurrentExecutionFilePath">
<summary>
<para>Gets the virtual path of the current request.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.PathInfo">
<summary>
<para>Gets additional path information for a resource with a
URL extension.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.PhysicalPath">
<summary>
<para> Gets the physical
file
system path corresponding to the requested URL.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.ApplicationPath">
<summary>
<para> Gets the ASP.NET
application's virtual application root path on the server.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.PhysicalApplicationPath">
<summary>
<para> Gets the physical file system path
of the currently executing server application's root directory.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.UserAgent">
<summary>
<para> Gets the raw user agent
string of the client browser.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.UserLanguages">
<summary>
<para> Gets a sorted
string array of client language preferences.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.Browser">
<summary>
<para> Gets information about the requesting client's browser
capabilities.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.UserHostName">
<summary>
<para> Gets the DNS
name of the remote client.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.UserHostAddress">
<summary>
<para> Gets the IP
host address of the remote client.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.RawUrl">
<summary>
<para> Gets the raw URL of the current request.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.Url">
<summary>
<para> Gets Information about the URL of the current request.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.UrlReferrer">
<summary>
<para> Gets information about the URL of the client's
previous request that linked to the current URL.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.Params">
<summary>
<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" />
items.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.QueryString">
<summary>
<para>Gets the collection of HTTP query string variables.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.Form">
<summary>
<para> Gets a collection of form variables.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.Headers">
<summary>
<para> Gets a collection of HTTP headers.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.ServerVariables">
<summary>
<para> Gets a collection of Web server variables.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.Cookies">
<summary>
<para> Gets a collection of cookies sent by the client.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.Files">
<summary>
<para> Gets
the collection of client-uploaded files (Multipart MIME format).</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.InputStream">
<summary>
<para> Gets the contents of the incoming HTTP entity
body.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.TotalBytes">
<summary>
<para> Gets
the number of bytes in the current input stream.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.Filter">
<summary>
<para>Gets or sets the filter to use when reading the current input stream.</para>
</summary>
</member>
<member name="P:System.Web.HttpRequest.ClientCertificate">
<summary>
<para> Gets the current request's client security certificate.</para>
</summary>
</member>
<member name="T:System.Web.HttpResponse">
<summary>
<para> Encapsulates HTTP response
information from an ASP.NET operation .</para>
</summary>
</member>
<member name="M:System.Web.HttpResponse.#ctor(System.IO.TextWriter)">
<summary>
<para>Initializes a new instance of the <see langword="HttpResponse" /> class.</para>
</summary>
<param name="writer">A <see langword="TextWriter" /> object enabling custom HTTP output.</param>
</member>
<member name="M:System.Web.HttpResponse.AddFileDependency(System.String)">
<summary>
<para>Adds a single file name to the collection of file names on which the current response is dependent.</para>
</summary>
<param name="filename"> The name of the file to add.</param>
</member>
<member name="M:System.Web.HttpResponse.AddFileDependencies(System.Collections.ArrayList)">
<summary>
<para>Adds a group of file names to the collection of file names on which the current response is dependent.</para>
</summary>
<param name="filenames">The collection of files to add.</param>
</member>
<member name="M:System.Web.HttpResponse.AddCacheItemDependency(System.String)">
<summary>
<para>Makes the validity of a cached item dependent
on another item in the cache.</para>
</summary>
<param name="cacheKey">The key of the item that the cached response is dependent upon.</param>
</member>
<member name="M:System.Web.HttpResponse.AddCacheItemDependencies(System.Collections.ArrayList)">
<summary>
<para>Makes the validity of a cached item dependent
on other items in the cache.</para>
</summary>
<param name="cacheKeys">The <see cref="T:System.Collections.ArrayList" /> containing the keys of the items the current cached response is dependent upon.</param>
</member>
<member name="M:System.Web.HttpResponse.RemoveOutputCacheItem(System.String)">
<summary>
<para>Static method removes from the cache all cached
items associated with the specified path.</para>
</summary>
<param name="path">The physical path to the items that are removed from the cache.</param>
</member>
<member name="M:System.Web.HttpResponse.Close">
<summary>
<para>Closes the socket connection to a client.</para>
</summary>
</member>
<member name="M:System.Web.HttpResponse.BinaryWrite(System.Byte[])">
<summary>
<para>Writes a string of binary characters to the HTTP output stream.</para>
</summary>
<param name="buffer"> The bytes to write to the output stream.</param>
</member>
<member name="M:System.Web.HttpResponse.Pics(System.String)">
<summary>
<para> Appends a <see langword="PICS-Label " /> HTTP header to the output stream.</para>
</summary>
<param name="value">The string to add to the <see langword="PICS-Label" /> header.</param>
</member>
<member name="M:System.Web.HttpResponse.AppendHeader(System.String,System.String)">
<summary>
<para>Adds an HTTP
header to the output stream.</para>
</summary>
<param name="name">The name of the HTTP header to add to the output stream.</param>
<param name="value">The string to append to the header.</param>
</member>
<member name="M:System.Web.HttpResponse.ClearHeaders">
<summary>
<para>Clears all headers from the buffer stream.</para>
</summary>
</member>
<member name="M:System.Web.HttpResponse.ClearContent">
<summary>
<para>Clears all content output from the buffer stream.</para>
</summary>
</member>
<member name="M:System.Web.HttpResponse.Clear">
<summary>
<para> Clears all content output from the buffer stream.</para>
</summary>
</member>
<member name="M:System.Web.HttpResponse.Flush">
<summary>
<para>Sends all currently buffered output to the client.</para>
</summary>
</member>
<member name="M:System.Web.HttpResponse.AppendToLog(System.String)">
<summary>
<para>Adds custom log information to the IIS log file.</para>
</summary>
<param name="param">The text to add to the log file.</param>
</member>
<member name="M:System.Web.HttpResponse.Redirect(System.String)">
<summary>
<para>Redirects a client to a new URL and specifies the new URL.</para>
</summary>
<param name="url">The target location.</param>
</member>
<member name="M:System.Web.HttpResponse.Redirect(System.String,System.Boolean)">
<summary>
<para> Redirects a client to a new URL. Specifies the new URL
and whether execution of the current page should terminate.</para>
</summary>
<param name="url">The target location.</param>
<param name=" endResponse">Indicates whether execution of the current page should terminate. </param>
</member>
<member name="M:System.Web.HttpResponse.Write(System.String)">
<summary>
<para>Writes a string to an HTTP output content stream.</para>
</summary>
<param name="s">The string to write to the HTTP output stream.</param>
</member>
<member name="M:System.Web.HttpResponse.Write(System.Object)">
<summary>
<para>Writes an <see langword="Object" /> to an HTTP output content stream.</para>
</summary>
<param name="obj">The <see langword="Object" /> to write to the HTTP output stream.</param>
</member>
<member name="M:System.Web.HttpResponse.Write(System.Char)">
<summary>
<para>Writes a character to an HTTP output content stream.</para>
</summary>
<param name="ch">The character to write to the HTTP output stream.</param>
</member>
<member name="M:System.Web.HttpResponse.Write(System.Char[],System.Int32,System.Int32)">
<summary>
<para> Writes an array of characters to an
HTTP output content stream.</para>
</summary>
<param name="buffer"> The character array to write.</param>
<param name=" index">The position in the character array where writing starts.</param>
<param name=" count">The number of characters to write, beginning at <paramref name="index" />.</param>
</member>
<member name="M:System.Web.HttpResponse.WriteFile(System.String)">
<summary>
<para>Writes
the specified file directly to an HTTP content output stream.</para>
</summary>
<param name="filename"> The name of the file to write to the HTTP output.</param>
</member>
<member name="M:System.Web.HttpResponse.WriteFile(System.String,System.Boolean)">
<summary>
<para> Writes the contents of the specified file into a memory block.</para>
</summary>
<param name="filename"> The name of the file to write into a memory block.</param>
<param name="readIntoMemory">Indicates whether the file will be written into a memory block.</param>
</member>
<member name="M:System.Web.HttpResponse.WriteFile(System.String,System.Int64,System.Int64)">
<summary>
<para>Writes the specified file directly to an HTTP content output stream.</para>
</summary>
<param name=" filename">The name of the file to write to the HTTP output stream.</param>
<param name="offset">The byte position in the file where writing will start.</param>
<param name=" size"> The number of bytes to write to the output stream.</param>
</member>
<member name="M:System.Web.HttpResponse.WriteFile(System.IntPtr,System.Int64,System.Int64)">
<summary>
<para>Writes the specified file directly to an HTTP content output stream.</para>
</summary>
<param name="fileHandle">The file handle of the file to write to the HTTP output stream.</param>
<param name=" offset">The byte position in the file where writing will start.</param>
<param name=" size">The number of bytes to write to the output stream.</param>
</member>
<member name="M:System.Web.HttpResponse.AddHeader(System.String,System.String)">
<summary>
<para> Adds an HTTP header to the output stream.</para>
<para>
<see langword="AddHeader" /> is provided
for compatibility with previous versions of ASP.</para>
</summary>
<param name="name">The name of the HTTP header to add <paramref name="value " /> to.</param>
<param name=" value">The string to add to the header.</param>
</member>
<member name="M:System.Web.HttpResponse.End">
<summary>
<para> Sends all currently buffered output to the client,
stops execution of the page, and raises the <see langword="Application_EndRequest " />
event.</para>
</summary>
</member>
<member name="M:System.Web.HttpResponse.ApplyAppPathModifier(System.String)">
<summary>
<para>Adds a session ID to the virtual path and returns the
combined path.</para>
</summary>
<param name="virtualPath">The virtual path to a resource.</param>
<returns>
<para>The <paramref name="virtualPath" /> with the session ID appended.</para>
</returns>
</member>
<member name="P:System.Web.HttpResponse.Cookies">
<summary>
<para> Gets the response cookie collection.</para>
</summary>
</member>
<member name="P:System.Web.HttpResponse.StatusCode">
<summary>
<para>Gets or sets
the HTTP status code of the output returned to the
client.</para>
</summary>
</member>
<member name="P:System.Web.HttpResponse.StatusDescription">
<summary>
<para>Gets or sets the HTTP status string of the output returned to the
client.</para>
</summary>
</member>
<member name="P:System.Web.HttpResponse.BufferOutput">
<summary>
<para>Gets or sets a value indicating whether to buffer output and send it after
the entire page is finished processing.</para>
</summary>
</member>
<member name="P:System.Web.HttpResponse.ContentType">
<summary>
<para>Gets or sets the HTTP MIME
type of the output stream.</para>
</summary>
</member>
<member name="P:System.Web.HttpResponse.Charset">
<summary>
<para>Gets or sets the HTTP character set of
the output stream.</para>
</summary>
</member>
<member name="P:System.Web.HttpResponse.ContentEncoding">
<summary>
<para> Gets or sets the HTTP
character set of the output stream.</para>
</summary>
</member>
<member name="P:System.Web.HttpResponse.Cache">
<summary>
<para> Gets the caching policy (expiration time, privacy, vary
clauses) of a Web page.</para>
</summary>
</member>
<member name="P:System.Web.HttpResponse.IsClientConnected">
<summary>
<para>Gets a value
indicating whether the client is still connected to the server.</para>
</summary>
</member>
<member name="P:System.Web.HttpResponse.Output">
<summary>
<para> Enables output of text to the outgoing HTTP response stream.</para>
</summary>
</member>
<member name="P:System.Web.HttpResponse.OutputStream">
<summary>
<para>Enables binary output to the outgoing HTTP content body.</para>
</summary>
</member>
<member name="P:System.Web.HttpResponse.Filter">
<summary>
<para>Gets or sets a wrapping filter object used to modify the HTTP entity body
before transmission.</para>
</summary>
</member>
<member name="P:System.Web.HttpResponse.SuppressContent">
<summary>
<para> Gets or sets a value indicating whether to send HTTP content to the client.</para>
</summary>
</member>
<member name="P:System.Web.HttpResponse.Status">
<summary>
<para>Sets the <see langword="Status " />line that is returned to the client.</para>
</summary>
</member>
<member name="P:System.Web.HttpResponse.Buffer">
<summary>
<para> Gets or sets a value indicating whether to
buffer output and send it after the entire response is finished processing.</para>
</summary>
</member>
<member name="P:System.Web.HttpResponse.Expires">
<summary>
<para> Gets or sets the number of minutes before a page cached on a browser
expires. If the user returns to the same page before it expires, the cached
version is displayed.</para>
<see cref="P:System.Web.HttpResponse.Expires" />
is provided for compatiblility with previous versions of ASP.
</summary>
</member>
<member name="P:System.Web.HttpResponse.ExpiresAbsolute">
<summary>
<para> Gets or sets the absolute date and time at which
to remove cached information from
the cache.</para>
<para>
<see cref="P:System.Web.HttpResponse.ExpiresAbsolute" /> is provided
for compatibility with previous versions of ASP.</para>
</summary>
</member>
<member name="P:System.Web.HttpResponse.CacheControl">
<summary>
<para>Sets the <see langword="Cache-Control " />HTTP header to
<see langword="Public " />or <see langword="Private" />
.</para>
</summary>
</member>
<member name="T:System.Web.HttpRuntime">
<summary>
<para>Provides a set of ASP.NET run-time services for the current application.</para>
</summary>
</member>
<member name="M:System.Web.HttpRuntime.ProcessRequest(System.Web.HttpWorkerRequest)">
<summary>
<para> Drives
all ASP.NET Web processing execution.</para>
</summary>
<param name="wr">An <see cref="T:System.Web.HttpWorkerRequest" /> for the current application. </param>
</member>
<member name="M:System.Web.HttpRuntime.Close">
<summary>
<para>Removes all items from the cache and shuts down the common language runtime.</para>
</summary>
</member>
<member name="P:System.Web.HttpRuntime.Cache">
<summary>
<para>Gets the <see cref="T:System.Web.Caching.Cache" /> for the current application.</para>
</summary>
</member>
<member name="P:System.Web.HttpRuntime.AspInstallDirectory">
<summary>
<para>Gets the physical path of the directory where the
ASP.NET executable files are installed.</para>
</summary>
</member>
<member name="P:System.Web.HttpRuntime.ClrInstallDirectory">
<summary>
<para> Gets the physical path to the directory where the
common language runtime executable files are installed.</para>
</summary>
</member>
<member name="P:System.Web.HttpRuntime.MachineConfigurationDirectory">
<summary>
<para>Gets the physical path to the directory where the
Machine.config file for the current application is located.</para>
</summary>
</member>
<member name="P:System.Web.HttpRuntime.CodegenDir">
<summary>
<para>Gets the physical path to the directory where ASP.NET stores temporary
files (generated sources, compiled assemblies, and so on) for the
current application.</para>
</summary>
</member>
<member name="P:System.Web.HttpRuntime.AppDomainAppId">
<summary>
<para>Gets the application identification of the
application domain where the <see cref="T:System.Web.HttpRuntime" /> exists.</para>
</summary>
</member>
<member name="P:System.Web.HttpRuntime.AppDomainAppPath">
<summary>
<para>Gets the physical drive path of the application
directory for the application hosted in the current application domain.</para>
</summary>
</member>
<member name="P:System.Web.HttpRuntime.AppDomainAppVirtualPath">
<summary>
<para>Gets the virtual path of the directory that
contains the application hosted in the current application domain.</para>
</summary>
</member>
<member name="P:System.Web.HttpRuntime.AppDomainId">
<summary>
<para>Gets the application identification of the application domain where
the <see cref="T:System.Web.HttpRuntime" /> exists.</para>
</summary>
</member>
<member name="P:System.Web.HttpRuntime.BinDirectory">
<summary>
<para> Gets the physical path to the /bin directory for the
current application.</para>
</summary>
</member>
<member name="P:System.Web.HttpRuntime.IsOnUNCShare">
<summary>
<para>Gets a value that indicates whether the application is mapped to
a universal naming convention (UNC) share.</para>
</summary>
</member>
<member name="T:System.Web.HttpStaticObjectsCollection">
<summary>
<para>Provides a static objects collection for the <see cref="P:System.Web.HttpApplicationState.StaticObjects" />
property.</para>
</summary>
</member>
<member name="M:System.Web.HttpStaticObjectsCollection.GetObject(System.String)">
<summary>
<para> Returns the object with the specified name from the
collection. This property is an alternative to the <see langword="this " /> accessor.</para>
</summary>
<param name="name">The case-insensitive name of the object to return.</param>
<returns>
<para>An object from the collection.</para>
</returns>
</member>
<member name="M:System.Web.HttpStaticObjectsCollection.GetEnumerator">
<summary>
<para>Returns a dictionary enumerator used for iterating through the key-and-value
pairs contained in the collection.</para>
</summary>
<returns>
<para>The enumerator for the collection.</para>
</returns>
</member>
<member name="M:System.Web.HttpStaticObjectsCollection.CopyTo(System.Array,System.Int32)">
<summary>
<para>Copies members of an <see langword="HttpStaticObjectsCollection " /> into an array.</para>
</summary>
<param name="array">The array to copy the <see langword="HttpStaticObjectsCollection" /> into.</param>
<param name=" index">The member of the collection where copying starts.</param>
</member>
<member name="P:System.Web.HttpStaticObjectsCollection.Item(System.String)">
<summary>
<para> Gets the object with the specified name from the
collection. </para>
</summary>
<param name="name">The case-insensitive name of the object to get.</param>
</member>
<member name="P:System.Web.HttpStaticObjectsCollection.Count">
<summary>
<para>Gets the number of objects in the collection.</para>
</summary>
</member>
<member name="P:System.Web.HttpStaticObjectsCollection.SyncRoot">
<summary>
<para>Gets an object that can be used to synchronize access to the collection.</para>
</summary>
</member>
<member name="P:System.Web.HttpStaticObjectsCollection.IsReadOnly">
<summary>
<para>Gets a value indicating whether the collection is read-only.</para>
</summary>
</member>
<member name="P:System.Web.HttpStaticObjectsCollection.IsSynchronized">
<summary>
<para>Gets a value indicating whether the collection is synchronized (that is, thread-safe).</para>
</summary>
</member>
<member name="T:System.Web.HttpServerUtility">
<summary>
<para>
Provides helper methods for processing Web requests.</para>
</summary>
</member>
<member name="M:System.Web.HttpServerUtility.CreateObject(System.String)">
<summary>
<para> Creates a server instance of a COM object identified by the object's Programmatic Identifier (ProgID).</para>
</summary>
<param name="progID">The class or type of object to be instantiated.</param>
<returns>
<para> The new object.</para>
</returns>
</member>
<member name="M:System.Web.HttpServerUtility.CreateObject(System.Type)">
<summary>
<para>Creates a server instance of a COM object identified by
the object's type.</para>
</summary>
<param name="type">A <see cref="T:System.Type" /> representing the object to create.</param>
<returns>
<para>The new object.</para>
</returns>
</member>
<member name="M:System.Web.HttpServerUtility.CreateObjectFromClsid(System.String)">
<summary>
<para> Creates a server instance of a COM object identified by the object's class identifier (CLSID).</para>
</summary>
<param name="clsid">The class identifier of the object to be instantiated.</param>
<returns>
<para> The new object.</para>
</returns>
</member>
<member name="M:System.Web.HttpServerUtility.MapPath(System.String)">
<summary>
<para>Returns the physical file path that corresponds to the specified virtual path on the Web server.</para>
</summary>
<param name="path">The virtual path on the Web server.</param>
<returns>
<para>The physical file path that corresponds to <paramref name="path" />.</para>
</returns>
</member>
<member name="M:System.Web.HttpServerUtility.GetLastError">
<summary>
<para> Returns the previous exception.</para>
</summary>
<returns>
<para>The previous exception that was thrown.</para>
</returns>
</member>
<member name="M:System.Web.HttpServerUtility.ClearError">
<summary>
<para>Clears the previous exception.</para>
</summary>
</member>
<member name="M:System.Web.HttpServerUtility.Execute(System.String)">
<summary>
<para> Executes a request to another page using the specified URL path to
the page.</para>
</summary>
<param name="path">The URL path of the new request.</param>
</member>
<member name="M:System.Web.HttpServerUtility.Execute(System.String,System.IO.TextWriter)">
<summary>
<para>Executes a request to another page using the specified
URL path to the page. A <see cref="T:System.IO.TextWriter" /> captures output from
the page.</para>
</summary>
<param name="path">The URL path of the new request.</param>
<param name="writer">The <see cref="T:System.IO.TextWriter" />to capture the output.</param>
</member>
<member name="M:System.Web.HttpServerUtility.Transfer(System.String,System.Boolean)">
<summary>
<para> Terminates execution of the current page and begins
execution of a new page using the specified URL path to the page. Specifies
whether to clear the <see cref="P:System.Web.HttpRequest.QueryString" /> and <see cref="P:System.Web.HttpRequest.Form" />
collections.</para>
</summary>
<param name="path">The URL path of the new page on the server to execute.</param>
<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>
</member>
<member name="M:System.Web.HttpServerUtility.Transfer(System.String)">
<summary>
<para>Terminates execution of the current page and begins
execution of a new page using the specified
URL path to the page.</para>
</summary>
<param name="path">The URL path of the new page on the server to execute.</param>
</member>
<member name="M:System.Web.HttpServerUtility.HtmlDecode(System.String)">
<summary>
<para> Decodes an HTML-encoded string and
returns the decoded string.</para>
</summary>
<param name="s">The HTML string to decode.</param>
<returns>
<para> The decoded text.</para>
</returns>
</member>
<member name="M:System.Web.HttpServerUtility.HtmlDecode(System.String,System.IO.TextWriter)">
<summary>
<para> Decodes an HTML-encoded string and sends the resulting
output to a <see cref="T:System.IO.TextWriter" />
output
stream.</para>
</summary>
<param name="s">The HTML string to decode.</param>
<param name=" output">The <see cref="T:System.IO.TextWriter" /> output stream containing the decoded string.</param>
</member>
<member name="M:System.Web.HttpServerUtility.HtmlEncode(System.String)">
<summary>
<para> HTML-encodes a string and
returns the encoded string.</para>
</summary>
<param name="s">The text string to encode.</param>
<returns>
<para> The HTML-encoded text.</para>
</returns>
</member>
<member name="M:System.Web.HttpServerUtility.HtmlEncode(System.String,System.IO.TextWriter)">
<summary>
<para> HTML-encodes a string and sends the resulting output to
a <see cref="T:System.IO.TextWriter" />
output stream.</para>
</summary>
<param name="s">The string to encode.</param>
<param name=" output">The <see cref="T:System.IO.TextWriter" /> output stream containing the encoded string.</param>
</member>
<member name="M:System.Web.HttpServerUtility.UrlEncode(System.String)">
<summary>
<para> URL-encodes a
string and returns the encoded string.</para>
</summary>
<param name="s">The text to URL-encode.</param>
<returns>
<para>The URL encoded text.</para>
</returns>
</member>
<member name="M:System.Web.HttpServerUtility.UrlPathEncode(System.String)">
<summary>
<para> URL-encodes the path portion of a URL string and returns the encoded string.</para>
</summary>
<param name="s">The text to URL-encode.</param>
<returns>
<para>The URL encoded text.</para>
</returns>
</member>
<member name="M:System.Web.HttpServerUtility.UrlEncode(System.String,System.IO.TextWriter)">
<summary>
<para> URL encodes
a string and sends the resulting output to a TextWriter output stream.</para>
</summary>
<param name="s">The text string to encode.</param>
<param name=" output">The <see cref="T:System.IO.TextWriter" /> output stream containing the encoded string. </param>
</member>
<member name="M:System.Web.HttpServerUtility.UrlDecode(System.String)">
<summary>
<para> URL-decodes a string and returns the decoded string.</para>
</summary>
<param name="s">The text string to decode.</param>
<returns>
<para> The decoded
text.</para>
</returns>
</member>
<member name="M:System.Web.HttpServerUtility.UrlDecode(System.String,System.IO.TextWriter)">
<summary>
<para> Decodes an HTML string received
in a URL and sends the resulting output to a
<see cref="T:System.IO.TextWriter" /> output
stream.</para>
</summary>
<param name="s">The HTML string to decode.</param>
<param name=" output">The <see cref="T:System.IO.TextWriter" /> output stream containing the decoded string. </param>
</member>
<member name="P:System.Web.HttpServerUtility.MachineName">
<summary>
<para>Gets
the server's computer name.</para>
</summary>
</member>
<member name="P:System.Web.HttpServerUtility.ScriptTimeout">
<summary>
<para>Gets and sets the request time-out in seconds.</para>
</summary>
</member>
<member name="T:System.Web.HttpUtility">
<summary>
<para>Provides methods for encoding and decoding URLs when processing Web
requests.</para>
</summary>
</member>
<member name="M:System.Web.HttpUtility.HtmlDecode(System.String)">
<summary>
<para>Converts a string that has been HTML-encoded for HTTP transmission into a decoded string.</para>
</summary>
<param name="s">The string to decode.</param>
<returns>
<para> The decoded string.</para>
</returns>
</member>
<member name="M:System.Web.HttpUtility.HtmlDecode(System.String,System.IO.TextWriter)">
<summary>
<para>Converts a string that has been HTML-encoded into a
decoded string, and sends the decoded string to a <see cref="T:System.IO.TextWriter" /> output stream.</para>
</summary>
<param name=" s">The string to decode.</param>
<param name="output">A <see cref="T:System.IO.TextWriter" /> stream of output.</param>
</member>
<member name="M:System.Web.HttpUtility.HtmlEncode(System.String)">
<summary>
<para>Converts a string to an HTML-encoded string for reliable
HTTP transmission from the Web server to a client.</para>
</summary>
<param name="s">The string to encode.</param>
<returns>
<para> The encoded string.</para>
</returns>
</member>
<member name="M:System.Web.HttpUtility.HtmlEncode(System.String,System.IO.TextWriter)">
<summary>
<para>Converts a string into an HTML-encoded string, and returns the output as a TextWriter stream of
output.</para>
</summary>
<param name="s">The string to encode</param>
<param name=" output">A <see cref="T:System.IO.TextWriter" /> output stream.</param>
</member>
<member name="M:System.Web.HttpUtility.HtmlAttributeEncode(System.String)">
<summary>
<para> Minimally converts a string to an HTML-encoded string.
</para>
</summary>
<param name="s">The string to encode. </param>
<returns>
<para> The encoded string.
</para>
</returns>
</member>
<member name="M:System.Web.HttpUtility.HtmlAttributeEncode(System.String,System.IO.TextWriter)">
<summary>
<para> Minimally converts a string into an HTML-encoded string and sends
the encoded string to a <see cref="T:System.IO.TextWriter" />
output
stream.
</para>
</summary>
<param name="s">The string to encode </param>
<param name=" output">A <see cref="T:System.IO.TextWriter" /> output stream. </param>
</member>
<member name="M:System.Web.HttpUtility.UrlEncode(System.String)">
<summary>
<para> Encodes a URL string for reliable HTTP
transmission from the Web server to a client.</para>
</summary>
<param name="str">The text to encode.</param>
<returns>
<para>The encoded string.</para>
</returns>
</member>
<member name="M:System.Web.HttpUtility.UrlEncode(System.String,System.Text.Encoding)">
<summary>
<para>Encodes a URL string for reliable HTTP transmission from the Web server
to a client, using the specified encoding method.</para>
</summary>
<param name="str">The text to encode.</param>
<param name=" e">The <see cref="T:System.Text.Encoding" /> object that specifies the encoding scheme.</param>
<returns>
<para>The encoded string.</para>
</returns>
</member>
<member name="M:System.Web.HttpUtility.UrlEncode(System.Byte[])">
<summary>
<para>Converts a byte array into an encoded
URL string for reliable HTTP transmission from the Web server to a client.</para>
</summary>
<param name="bytes">The byte array to encode.</param>
<returns>
<para>The encoded string.</para>
</returns>
</member>
<member name="M:System.Web.HttpUtility.UrlEncode(System.Byte[],System.Int32,System.Int32)">
<summary>
<para> Converts a byte array into a URL-encoded string for
reliable HTTP transmission from the Web server to a client, starting at the
specified position in the array and continuing for the specified number of bytes.</para>
</summary>
<param name="bytes">The byte array to encode.</param>
<param name=" offset">The position in the byte array to begin encoding.</param>
<param name=" count">The number of bytes to encode, starting at <paramref name="offset" />.</param>
<returns>
<para>The encoded string.</para>
</returns>
</member>
<member name="M:System.Web.HttpUtility.UrlEncodeToBytes(System.String)">
<summary>
<para>Converts a string into a URL-encoded array of bytes .</para>
</summary>
<param name="str">The string to encode.</param>
<returns>
<para>The encoded array of bytes.</para>
</returns>
</member>
<member name="M:System.Web.HttpUtility.UrlEncodeToBytes(System.String,System.Text.Encoding)">
<summary>
<para>Converts a string into a URL-encoded array of bytes, using the specified encoding method.</para>
</summary>
<param name="str">The string to encode</param>
<param name=" e">The <see cref="T:System.Text.Encoding" /> that specifies the encoding method.</param>
<returns>
<para> The encoded array of bytes.</para>
</returns>
</member>
<member name="M:System.Web.HttpUtility.UrlEncodeToBytes(System.Byte[])">
<summary>
<para>Converts an array of bytes into a
URL-encoded array of bytes.</para>
</summary>
<param name="bytes">The array of bytes to encode.</param>
<returns>
<para>The encoded array of bytes.</para>
</returns>
</member>
<member name="M:System.Web.HttpUtility.UrlEncodeToBytes(System.Byte[],System.Int32,System.Int32)">
<summary>
<para>Converts an array of bytes into a
URL-encoded array of bytes, starting at the specified position in the
array and continuing for the specified number of bytes.</para>
</summary>
<param name="bytes">The array of bytes to encode.</param>
<param name=" offset">The position in the byte array to begin encoding.</param>
<param name=" count">The number of bytes to encode, starting at <paramref name="offset" />.</param>
<returns>
<para>The encoded array of bytes.</para>
</returns>
</member>
<member name="M:System.Web.HttpUtility.UrlEncodeUnicode(System.String)">
<summary>
<para>Converts a string into a Unicode string.</para>
</summary>
<param name="str">The string to convert.</param>
<returns>
<para>The Unicode string.</para>
</returns>
</member>
<member name="M:System.Web.HttpUtility.UrlEncodeUnicodeToBytes(System.String)">
<summary>
<para>Converts a string into a Unicode array of bytes.</para>
</summary>
<param name="str">The string to convert.</param>
<returns>
<para>The Unicode byte array.</para>
</returns>
</member>
<member name="M:System.Web.HttpUtility.UrlDecode(System.String)">
<summary>
<para>Converts a string that has been encoded for
transmission in a URL into a decoded string.</para>
</summary>
<param name="str">The string to decode.</param>
<returns>
<para>The decoded string.</para>
</returns>
</member>
<member name="M:System.Web.HttpUtility.UrlDecode(System.String,System.Text.Encoding)">
<summary>
<para>Converts a URL-encoded string into a decoded string,
using the specified decoding method.</para>
</summary>
<param name="str">The string to decode.</param>
<param name=" e">The <see cref="T:System.Text.Encoding" /> that specifies the decoding method.</param>
<returns>
<para>The decoded string.</para>
</returns>
</member>
<member name="M:System.Web.HttpUtility.UrlDecode(System.Byte[],System.Text.Encoding)">
<summary>
<para>Converts a URL-encoded byte array into a decoded
string, using the specified decoding method.</para>
</summary>
<param name="bytes">The byte array to decode.</param>
<param name=" e">The <see cref="T:System.Text.Encoding" /> that specifies the decoding method.</param>
<returns>
<para>The decoded string.</para>
</returns>
</member>
<member name="M:System.Web.HttpUtility.UrlDecode(System.Byte[],System.Int32,System.Int32,System.Text.Encoding)">
<summary>
<para> Converts a URL-encoded byte array into a decoded
string, using the specified decoding method, starting at the specified position
in the array, and continuing for the specified number of bytes.</para>
</summary>
<param name="bytes">The array of bytes to decode.</param>
<param name=" offset">The position in the byte to begin decoding.</param>
<param name=" count">The number of bytes to decode starting at <paramref name="offset" />.</param>
<param name=" e">The <see cref="T:System.Text.Encoding" /> object that specifies the decoding method.</param>
<returns>
<para> The decoded string.</para>
</returns>
</member>
<member name="M:System.Web.HttpUtility.UrlDecodeToBytes(System.String)">
<summary>
<para>Converts a URL-encoded string into a decoded array of
bytes .</para>
</summary>
<param name="str">The string to decode.</param>
<returns>
<para>The decoded array of bytes.</para>
</returns>
</member>
<member name="M:System.Web.HttpUtility.UrlDecodeToBytes(System.String,System.Text.Encoding)">
<summary>
<para>Converts a URL-encoded string into a decoded array of
bytes, using the specified decoding method.</para>
</summary>
<param name="str">The string to decode.</param>
<param name=" e">The <see cref="T:System.Text.Encoding" /> object that specifies the decoding method.</param>
<returns>
<para>The decoded array of bytes.</para>
</returns>
</member>
<member name="M:System.Web.HttpUtility.UrlDecodeToBytes(System.Byte[])">
<summary>
<para>Converts a URL-encoded array of bytes into a decoded array of bytes.</para>
</summary>
<param name="bytes">The array of bytes to decode.</param>
<returns>
<para>The decoded array of bytes.</para>
</returns>
</member>
<member name="M:System.Web.HttpUtility.UrlDecodeToBytes(System.Byte[],System.Int32,System.Int32)">
<summary>
<para> Converts a URL-encoded array of bytes into a
decoded array of bytes, starting at the specified position in the
array and continuing for the specified number of bytes.</para>
</summary>
<param name="bytes">The array of bytes to decode.</param>
<param name=" offset">The position in the byte array to begin decoding.</param>
<param name=" count">The number of bytes to decode, starting at <paramref name="offset" />.</param>
<returns>
<para>The decoded array of bytes.</para>
</returns>
</member>
<member name="T:System.Web.HttpWriter">
<summary>
<para> Provides a <see cref="T:System.IO.TextWriter" /> object that is accessed through the
intrinsic <see cref="T:System.Web.HttpResponse" /> object.</para>
</summary>
</member>
<member name="M:System.Web.HttpWriter.Close">
<summary>
<para> Sends all buffered output to the HTTP output stream and closes the socket connection.</para>
</summary>
</member>
<member name="M:System.Web.HttpWriter.Flush">
<summary>
<para> Sends all buffered output to the HTTP output stream.</para>
</summary>
</member>
<member name="M:System.Web.HttpWriter.Write(System.Char)">
<summary>
<para> Sends a single character to the HTTP output stream.</para>
</summary>
<param name="ch">The character to send to the HTTP output stream.</param>
</member>
<member name="M:System.Web.HttpWriter.Write(System.Char[],System.Int32,System.Int32)">
<summary>
<para> Sends a stream of characters with the specified starting position
and number of characters to the HTTP output stream. </para>
</summary>
<param name="buffer"> The memory buffer containing the characters to send to the HTTP output stream</param>
<param name=" index">The buffer position of the first character to send.</param>
<param name=" count">The number of characters to send beginning at the position specified by <paramref name="index" />. </param>
</member>
<member name="M:System.Web.HttpWriter.Write(System.String)">
<summary>
<para>Sends a string to the HTTP output stream.</para>
</summary>
<param name="s">The string to send to the HTTP output stream.</param>
</member>
<member name="M:System.Web.HttpWriter.WriteString(System.String,System.Int32,System.Int32)">
<summary>
<para>Sends a string with the specified starting position
and number of characters to the HTTP output stream.</para>
</summary>
<param name="s">The string to send to the HTTP output stream.</param>
<param name=" index">The character position of the first byte to send.</param>
<param name=" count">The number of characters to send, beginning at the character position specified by <paramref name="index" /> .</param>
</member>
<member name="M:System.Web.HttpWriter.Write(System.Object)">
<summary>
<para>Sends an <see langword="Object" /> to the HTTP output stream.</para>
</summary>
<param name="obj">The <see langword="Object" /> to send to the HTTP output stream.</param>
</member>
<member name="M:System.Web.HttpWriter.WriteBytes(System.Byte[],System.Int32,System.Int32)">
<summary>
<para> Sends a stream of bytes with the specified starting
position and number of bytes to the HTTP output stream.</para>
</summary>
<param name="buffer"> The memory buffer containing the bytes to send to the HTTP output stream.</param>
<param name=" index"> The buffer position of the first byte to send.</param>
<param name=" count">The number of bytes to send, beginning at the byte position specified by <paramref name="index" /> .</param>
</member>
<member name="M:System.Web.HttpWriter.WriteLine">
<summary>
<para>Sends a carriage return + line feed (CRLF) pair of characters to the HTTP output stream.</para>
</summary>
</member>
<member name="P:System.Web.HttpWriter.Encoding">
<summary>
<para> Gets an <see cref="T:System.Text.Encoding" /> object for the <see cref="T:System.IO.TextWriter" /> .</para>
</summary>
</member>
<member name="P:System.Web.HttpWriter.OutputStream">
<summary>
<para> Gets a <see cref="T:System.IO.Stream" /> object to enable HTTP output directly from
the <see langword="Stream " /> .</para>
</summary>
</member>
<member name="T:System.Web.IHttpHandlerFactory">
<summary>
<para> Defines the contract that class factories
must implement to create new <see cref="T:System.Web.IHttpHandler" />
objects.</para>
</summary>
</member>
<member name="M:System.Web.IHttpHandlerFactory.GetHandler(System.Web.HttpContext,System.String,System.String,System.String)">
<summary>
<para> Returns an instance of a class that implements the IHttpHandler interface.
</para>
</summary>
<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>
<param name=" requestType">The HTTP data transfer method (<see langword="GET" /> or <see langword="POST" />) that the client uses.</param>
<param name=" url">The <see cref="P:System.Web.HttpRequest.RawUrl" /> of the requested resource.</param>
<param name=" pathTranslated">The <see cref="P:System.Web.HttpRequest.PhysicalApplicationPath" /> to the requested resource.</param>
<returns>
<para>A new <see langword="IHttpHandler " /> object that processes the request.</para>
</returns>
</member>
<member name="M:System.Web.IHttpHandlerFactory.ReleaseHandler(System.Web.IHttpHandler)">
<summary>
<para> Enables a factory to reuse an existing handler
instance.
</para>
</summary>
<param name="handler">The IHttpHandler object to reuse. </param>
</member>
<member name="M:System.Web.IHttpMapPath.MapPath(System.String)">
<summary>
<para>Provides the inheriting class with a method to find a file system path
given another path.</para>
</summary>
<param name="path">The path, virtual or disk-based, for which a path is to be found.</param>
</member>
<member name="P:System.Web.IHttpMapPath.MachineConfigPath">
<summary>
<para>Provides the inheriting class with a method to find the file system path
to the configuration file.</para>
</summary>
</member>
<member name="T:System.Web.IHttpModule">
<summary>
<para>Provides module initialization and disposal events to the inheriting class.</para>
</summary>
</member>
<member name="M:System.Web.IHttpModule.Init(System.Web.HttpApplication)">
<summary>
<para> Initializes a module and prepares it to handle
requests.</para>
</summary>
<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>
</member>
<member name="M:System.Web.IHttpModule.Dispose">
<summary>
Disposes of the resources (other than memory) used by the
module that implements <see langword="IHttpModule." /></summary>
</member>
<member name="M:System.Web.Caching.OutputCacheModule.Init(System.Web.HttpApplication)">
<summary>
<para>Initializes the output cache for an application.</para>
</summary>
<param name="app">The application to be initialized.</param>
</member>
<member name="M:System.Web.Caching.OutputCacheModule.Dispose">
<summary>
<para>Disposes of items from the output cache.</para>
</summary>
</member>
<member name="M:System.Web.Caching.OutputCacheModule.OnEnter(System.Object,System.EventArgs)">
<summary>
<para>Raises the <see langword="Enter" />
event, which searches the output cache for an item to satisfy the HTTP request. </para>
</summary>
<param name="source">The source of the event.</param>
<param name=" eventArgs">An argument that contains the event data.</param>
<returns>
<para>The requested item from the output cache.</para>
</returns>
</member>
<member name="M:System.Web.Caching.OutputCacheModule.OnLeave(System.Object,System.EventArgs)">
<summary>
<para>Raises the <see langword="Leave" /> event, which causes any cacheable items to
be put into the output cache.</para>
</summary>
<param name="source">The source of the event.</param>
<param name=" eventArgs">An argument that contains the event data.</param>
</member>
<member name="T:System.Web.ProcessStatus">
<summary>
<para>Provides enumerated values that indicate the current status of a process.</para>
</summary>
</member>
<member name="F:System.Web.ProcessStatus.Alive">
<summary>
<para>Indicates that the process is running.</para>
</summary>
</member>
<member name="F:System.Web.ProcessStatus.ShuttingDown">
<summary>
<para>Indicates that the process has begun to shut down.</para>
</summary>
</member>
<member name="F:System.Web.ProcessStatus.ShutDown">
<summary>
<para> Indicates that the process has shut down normally after
receiving a shut down message from the IIS process.</para>
</summary>
</member>
<member name="F:System.Web.ProcessStatus.Terminated">
<summary>
<para> Indicates that the process was forced to terminate by the IIS process.</para>
</summary>
</member>
<member name="T:System.Web.ProcessShutdownReason">
<summary>
<para> Provides enumerated values that indicate why a process has shut
down.</para>
</summary>
</member>
<member name="F:System.Web.ProcessShutdownReason.None">
<summary>
<para> Indicates that the process has not shut down.</para>
</summary>
</member>
<member name="F:System.Web.ProcessShutdownReason.Unexpected">
<summary>
<para> Indicates that the process shut down unexpectedly.</para>
</summary>
</member>
<member name="F:System.Web.ProcessShutdownReason.RequestsLimit">
<summary>
<para> Indicates that requests executed by the process exceeded the allowable
limit.</para>
</summary>
</member>
<member name="F:System.Web.ProcessShutdownReason.RequestQueueLimit">
<summary>
<para> Indicates that requests assigned to the process exceeded the allowable number
in the queue.</para>
</summary>
</member>
<member name="F:System.Web.ProcessShutdownReason.Timeout">
<summary>
<para>Indicates that the process restarted because it was alive longer than allowed.</para>
</summary>
</member>
<member name="F:System.Web.ProcessShutdownReason.IdleTimeout">
<summary>
<para> Indicates that the process exceeded the allowable idle time.</para>
</summary>
</member>
<member name="F:System.Web.ProcessShutdownReason.MemoryLimitExceeded">
<summary>
<para> Indicates that the process exceeded the per-process memory limit.</para>
</summary>
</member>
<member name="F:System.Web.ProcessShutdownReason.PingFailed">
<summary>
<para>Indicates that the worker process did not respond to a ping from the IIS process.</para>
</summary>
</member>
<member name="F:System.Web.ProcessShutdownReason.DeadlockSuspected">
<summary>
<para>Indicates that a deadlock was suspected because the response time limit was exceeded with requests in the
queue.</para>
</summary>
</member>
<member name="T:System.Web.ProcessInfo">
<summary>
<para> Provides information on processes currently executing.</para>
</summary>
</member>
<member name="M:System.Web.ProcessInfo.SetAll(System.DateTime,System.TimeSpan,System.Int32,System.Int32,System.Web.ProcessStatus,System.Web.ProcessShutdownReason,System.Int32)">
<summary>
<para>Sets internal information indicating the status of the process.</para>
</summary>
<param name=" startTime">A <see cref="T:System.DateTime" /> that indicates the time at which the process started.</param>
<param name=" age">A <see cref="T:System.TimeSpan" /> that indicates the time elapsed since the process started.</param>
<param name="processID">The ID number assigned to the process.</param>
<param name=" requestCount">The number of start requests for the process.</param>
<param name=" status">One of the <see cref="T:System.Web.ProcessStatus" /> values that indicates the time elapsed since tha process started.</param>
<param name=" shutdownReason">One of the <see cref="T:System.Web.ProcessShutdownReason" /> values.</param>
<param name=" peakMemoryUsed">The maximum memory used (in megabytes [MB]).</param>
</member>
<member name="M:System.Web.ProcessInfo.#ctor(System.DateTime,System.TimeSpan,System.Int32,System.Int32,System.Web.ProcessStatus,System.Web.ProcessShutdownReason,System.Int32)">
<summary>
<para>Initializes a new instance of the <see langword="ProcessInfo" /> class and sets internal information
indicating the status of the process.</para>
</summary>
<param name="startTime">A <see cref="T:System.DateTime" /> that indicates the time at which the process started.</param>
<param name=" age">The <see cref="T:System.TimeSpan" /> that indicates the time elapsed since the process started.</param>
<param name=" processID">The ID number assigned to the process.</param>
<param name=" requestCount">The number of start requests for the process.</param>
<param name=" status">One of the <see cref="T:System.Web.ProcessStatus" /><see langword="" /> values that indicates the current status of the process.</param>
<param name=" shutdownReason">One of the <see cref="T:System.Web.ProcessShutdownReason" /><see langword="" /> values.</param>
<param name=" peakMemoryUsed">The maximum memory used (in bytes).</param>
</member>
<member name="M:System.Web.ProcessInfo.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.ProcessInfo" /> class.</para>
</summary>
</member>
<member name="P:System.Web.ProcessInfo.StartTime">
<summary>
<para> Gets the time at which the process started.</para>
</summary>
</member>
<member name="P:System.Web.ProcessInfo.Age">
<summary>
<para>Gets the length of time the process has been running.</para>
</summary>
</member>
<member name="P:System.Web.ProcessInfo.ProcessID">
<summary>
<para>Gets the ID number assigned to the process.</para>
</summary>
</member>
<member name="P:System.Web.ProcessInfo.RequestCount">
<summary>
<para>Gets the number of start requests for the process.</para>
</summary>
</member>
<member name="P:System.Web.ProcessInfo.Status">
<summary>
<para>Gets the current status of the process.</para>
</summary>
</member>
<member name="P:System.Web.ProcessInfo.ShutdownReason">
<summary>
<para>Gets a value that indicates why the process shut down.</para>
</summary>
</member>
<member name="P:System.Web.ProcessInfo.PeakMemoryUsed">
<summary>
<para>Gets the maximum amount of memory the process has used.</para>
</summary>
</member>
<member name="T:System.Web.ProcessModelInfo">
<summary>
<para>Contains methods that return information about worker processes.</para>
</summary>
</member>
<member name="M:System.Web.ProcessModelInfo.GetCurrentProcessInfo">
<summary>
<para>Returns information about the worker process executing the current request.</para>
</summary>
<returns>
<para>A <see cref="T:System.Web.ProcessInfo" /> that contains information about the current
process.</para>
</returns>
</member>
<member name="M:System.Web.ProcessModelInfo.GetHistory(System.Int32)">
<summary>
<para>Returns information about recent worker processes.</para>
</summary>
<param name="numRecords">The number of processes for which information is requested.</param>
<returns>
<para>An array of the most recent <see cref="T:System.Web.ProcessInfo" /> objects (maximum of 100).
If the number of available objects is less than <paramref name="numrecords" />, all
available objects are returned.</para>
</returns>
</member>
<member name="M:System.Web.WebCategoryAttribute.#ctor(System.String)">
<summary>
<para>
Initializes a new instance of the <see cref="T:System.ComponentModel.CategoryAttribute" /> class.
</para>
</summary>
<param name="category">
The name of the category.
</param>
</member>
<member name="M:System.Web.WebCategoryAttribute.GetLocalizedString(System.String)">
<summary>
This method is called the first time the category property
is accessed. It provides a way to lookup a localized string for
the given category. Classes may override this to add their
own localized names to categories. If a localized string is
available for the given value, the method should return it.
Otherwise, it should return null.
</summary>
<param name="value">
The value of the string.
</param>
</member>
<member name="M:System.Web.WebSysDescriptionAttribute.#ctor(System.String)">
</member>
<member name="P:System.Web.WebSysDescriptionAttribute.Description">
</member>
<member name="T:System.Web.HttpWorkerRequest">
<summary>
<para>This abstract class defines the base worker methods and enumerations used by ASP.NET managed code to process requests.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderCacheControl">
<summary>
<para>The index that represents the HTTP
<see langword="Cache-Control" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderConnection">
<summary>
<para> Specifies the index number for the
<see langword="Connection" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderDate">
<summary>
<para>Specifies the index number for
the <see langword="Date" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderKeepAlive">
<summary>
<para>Specifies the index number for the
<see langword="Keep-Alive" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderPragma">
<summary>
<para>Specifies the index number for the
<see langword="Pragma" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderTrailer">
<summary>
<para>Specifies the index number for the
<see langword="Trailer" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderTransferEncoding">
<summary>
<para>Specifies the index number for
the <see langword="Transfer-Encoding" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderUpgrade">
<summary>
<para>Specifies the index number for the
<see langword="Upgrade" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderVia">
<summary>
<para>Specifies the index number for the <see langword="Via" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderWarning">
<summary>
<para>Specifies the index number for the
<see langword="Warning" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderAllow">
<summary>
<para>Specifies the index number for
the <see langword="Allow" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderContentLength">
<summary>
<para>Specifies the index number for the
<see langword="Content-Length" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderContentType">
<summary>
<para>Specifies the index number for
the <see langword="Content-Type" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderContentEncoding">
<summary>
<para>Specifies the index number for the <see langword="Content-Encoding" /> HTTP
header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderContentLanguage">
<summary>
<para>Specifies the index number for the
<see langword="Content-Language" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderContentLocation">
<summary>
<para>Specifies the index number for the
<see langword="Content-Location" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderContentMd5">
<summary>
<para>Specifies the index number for the
<see langword="Content-MD5" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderContentRange">
<summary>
<para>Specifies the index number for the
<see langword="Content-Range" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderExpires">
<summary>
<para>Specifies the index number for
the <see langword="Expires" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderLastModified">
<summary>
<para>Specifies the index number for
the <see langword="Last-Modified" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderAccept">
<summary>
<para>Specifies the index number for the
<see langword="Accept" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderAcceptCharset">
<summary>
<para>Specifies the index number for
the <see langword="Accept-Charset" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderAcceptEncoding">
<summary>
<para>Specifies the index number for
the <see langword="Accept-Encoding" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderAcceptLanguage">
<summary>
<para>Specifies the index number for
the <see langword="Accept-Language" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderAuthorization">
<summary>
<para>Specifies the index number for
the <see langword="Authorization" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderCookie">
<summary>
<para>Specifies the index number for
the <see langword="Cookie" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderExpect">
<summary>
<para>Specifies the index number for
the <see langword="Except" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderFrom">
<summary>
<para>Specifies the index number for
the <see langword="From" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderHost">
<summary>
<para>Specifies the index number for
the <see langword="Host" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderIfMatch">
<summary>
<para>Specifies the index number for
the <see langword="If-Match" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderIfModifiedSince">
<summary>
<para>Specifies the index number for
the <see langword="If-Modified-Since" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderIfNoneMatch">
<summary>
<para>Specifies the index number for
the <see langword="If-None-Match" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderIfRange">
<summary>
<para>Specifies the index number for
the <see langword="If-Range" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderIfUnmodifiedSince">
<summary>
<para>Specifies the index number for
the <see langword="If-Unmodified-Since" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderMaxForwards">
<summary>
<para>Specifies the index number for
the <see langword="Max-Forwards" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderProxyAuthorization">
<summary>
<para>Specifies the index number for
the <see langword="Proxy-Authorization" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderReferer">
<summary>
<para>Specifies the index number for
the <see langword="Referer" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderRange">
<summary>
<para>Specifies the index number for
the <see langword="Range" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderTe">
<summary>
<para>Specifies the index number for
the <see langword="TE" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderUserAgent">
<summary>
<para>Specifies the index number for the <see langword="User-Agent " />HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.RequestHeaderMaximum">
<summary>
<para>Specifies the index number for
the <see langword="Maximum" /> HTTP request header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderAcceptRanges">
<summary>
<para>Specifies the index number for
the <see langword="Accept-Ranges" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderAge">
<summary>
<para>Specifies the index number for
the <see langword="Age" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderEtag">
<summary>
<para>Specifies the index number for
the <see langword="ETag" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderLocation">
<summary>
<para>Specifies the index number for
the <see langword="Location" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderProxyAuthenticate">
<summary>
<para>Specifies the index number for
the <see langword="Proxy-Authenticate " />HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderRetryAfter">
<summary>
<para>Specifies the index number for
the <see langword="Retry-After" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderServer">
<summary>
<para>Specifies the index number for
the <see langword="Server" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderSetCookie">
<summary>
<para>Specifies the index number for
the <see langword="Set-Cookie " />HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderVary">
<summary>
<para>Specifies the index number for
the <see langword="Vary" /> HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.HeaderWwwAuthenticate">
<summary>
<para>Specifies the index number for
the <see langword="WWW-Authenticate " />HTTP header.</para>
</summary>
</member>
<member name="F:System.Web.HttpWorkerRequest.ResponseHeaderMaximum">
<summary>
<para>Specifies the index number for
the <see langword="Maximum" /> HTTP response header.</para>
</summary>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetUriPath">
<summary>
<para> Returns the virtual path to the requested URI.</para>
</summary>
<returns>
<para> The path to the requested URI.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetQueryString">
<summary>
<para> Returns the query string specified in the request URL.</para>
</summary>
<returns>
<para> The request query string.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetRawUrl">
<summary>
<para> Returns the URL path contained in the request header with the query string appended.</para>
</summary>
<returns>
<para>The raw URL path of the request header.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetHttpVerbName">
<summary>
<para> Returns the specified member of the request header.</para>
</summary>
<returns>
<para>The HTTP verb returned in the request header.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetHttpVersion">
<summary>
<para>Provides access to the HTTP version of the request (for example, "HTTP/1.1").</para>
</summary>
<returns>
<para>The HTTP version returned in the request header.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetRemoteAddress">
<summary>
<para> Provides access to the specified member of the request header.</para>
</summary>
<returns>
<para> The client's IP address.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetRemotePort">
<summary>
<para> Provides access to the specified member of the request header.</para>
</summary>
<returns>
<para> The client's HTTP port number.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetLocalAddress">
<summary>
<para>Provides access to the specified member of the request header.</para>
</summary>
<returns>
<para>The server IP address returned in the request header.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetLocalPort">
<summary>
<para>Provides access to the specified member of the request header.</para>
</summary>
<returns>
<para>The server port number returned in the request header.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetQueryStringRawBytes">
<summary>
<para>When overridden in a derived class, returns the response query string as an array of bytes.</para>
</summary>
<returns>
<para>An array of bytes containing the response.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetRemoteName">
<summary>
<para>When overridden in a derived class, returns the name of the client computer.</para>
</summary>
<returns>
<para>The name of the client computer.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetServerName">
<summary>
<para>When overridden in a derived class, returns the name of the local server.</para>
</summary>
<returns>
<para>The name of the local server.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetUserToken">
<summary>
<para>When overridden in a derived class, returns the client's impersonation token.</para>
</summary>
<returns>
<para>A value representing the client's impersonation token. The default is 0.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.IsSecure">
<summary>
<para> Returns a value indicating whether the connection is secure (using SSL).</para>
</summary>
<returns>
<para>
<see langword="true " />if the connection is secure; otherwise,
<see langword="false" />. The default is <see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetProtocol">
<summary>
<para>When overridden in a derived class, returns the HTTP protocol (HTTP or HTTPS).</para>
</summary>
<returns>
<para>HTTPS if the <see cref="M:System.Web.HttpWorkerRequest.IsSecure" /> method is <see langword="true" />, otherwise HTTP.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetFilePath">
<summary>
<para>When overridden in a derived class, returns the physical path to the requested URI.</para>
</summary>
<returns>
<para>The path to the requested URI.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetFilePathTranslated">
<summary>
<para> Returns the physical file path to the requested URI (and translates it from virtual
path to physical path: for example, "/proj1/page.aspx" to "c:\dir\page.aspx") </para>
</summary>
<returns>
<para>The translated physical file path to the requested URI.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetPathInfo">
<summary>
<para> Returns additional path information for a resource with
a URL extension. That is, for the path /virdir/page.html/tail, the
<see langword="GetPathInfo" />
value is /tail. </para>
</summary>
<returns>
<para>Additional path information for a resource.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetAppPath">
<summary>
<para> Returns the virtual path to the
currently executing server application.</para>
</summary>
<returns>
<para>The virtual path of the current application.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetAppPathTranslated">
<summary>
<para> Returns the UNC-translated path to
the currently executing server application.</para>
</summary>
<returns>
<para> The physical path of the current application.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetPreloadedEntityBody">
<summary>
<para>Returns the portion of the HTTP request body that has already been read.</para>
</summary>
<returns>
<para>The portion of the request body that has been read.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.IsEntireEntityBodyIsPreloaded">
<summary>
<para>Returns a value indicating whether all request data
is available and no further reads from the client are required.</para>
</summary>
<returns>
<para>
<see langword="true" /> if all request data is available; otherwise,
<see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.ReadEntityBody(System.Byte[],System.Int32)">
<summary>
<para>Reads request data from the client (when not preloaded).</para>
</summary>
<param name="buffer">The byte array to read data into.</param>
<param name=" size">The maximum number of bytes to read.</param>
<returns>
<para>The number of bytes read.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetKnownRequestHeader(System.Int32)">
<summary>
<para>Returns the standard HTTP request header that
corresponds to the specified index.</para>
</summary>
<param name="index">The index of the header. For example, the <see cref="F:System.Web.HttpWorkerRequest.HeaderAllow" /> field. </param>
<returns>
<para>The HTTP request header.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetUnknownRequestHeader(System.String)">
<summary>
<para>Returns a nonstandard HTTP request header value.</para>
</summary>
<param name="name">The header name.</param>
<returns>
<para>The header value.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetUnknownRequestHeaders">
<summary>
<para>Get all nonstandard HTTP header name-value pairs.</para>
</summary>
<returns>
<para>An array of header name-value pairs.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetServerVariable(System.String)">
<summary>
<para> Returns a single server variable from
a dictionary of server variables associated with the request.</para>
</summary>
<param name="name">The name of the requested server variable.</param>
<returns>
<para>The requested server variable.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.MapPath(System.String)">
<summary>
<para>Returns the physical path corresponding to the specified virtual path.</para>
</summary>
<param name="virtualPath">The virtual path.</param>
<returns>
<para>The physical path that corresponds to the virtual path
specified in the <paramref name="virtualPath" /> parameter.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.SendStatus(System.Int32,System.String)">
<summary>
<para>Specifies the HTTP status code and status description of
the response; for example SendStatus(200, "Ok").</para>
</summary>
<param name="statusCode">The status code to send</param>
<param name=" statusDescription">The status description to send.</param>
</member>
<member name="M:System.Web.HttpWorkerRequest.SendKnownResponseHeader(System.Int32,System.String)">
<summary>
<para>Adds a standard HTTP header to the response.</para>
</summary>
<param name="index">The header index. For example, <see cref="F:System.Web.HttpWorkerRequest.HeaderContentLength" />. </param>
<param name=" value">The value of the header.</param>
</member>
<member name="M:System.Web.HttpWorkerRequest.SendUnknownResponseHeader(System.String,System.String)">
<summary>
<para>Adds a nonstandard HTTP header to the response.</para>
</summary>
<param name="name">The name of the header to send.</param>
<param name=" value">The value of the header.</param>
</member>
<member name="M:System.Web.HttpWorkerRequest.SendResponseFromMemory(System.Byte[],System.Int32)">
<summary>
<para>Adds the specified number of bytes from a byte array to the response.</para>
</summary>
<param name="data">The byte array to send.</param>
<param name=" length">The number of bytes to send, starting at the first byte.</param>
</member>
<member name="M:System.Web.HttpWorkerRequest.SendResponseFromMemory(System.IntPtr,System.Int32)">
<summary>
<para>Adds the specified number of bytes from a block of memory
to the response.</para>
</summary>
<param name=" data">An unmanaged pointer to the block of memory.</param>
<param name="length">The number of bytes to send.</param>
</member>
<member name="M:System.Web.HttpWorkerRequest.SendResponseFromFile(System.String,System.Int64,System.Int64)">
<summary>
<para> Adds the contents of the specified file to the response
and specifies the starting position in the file and the number of bytes to send.</para>
</summary>
<param name="filename">The name of the file to send.</param>
<param name=" offset">The starting position in the file.</param>
<param name=" length">The number of bytes to send.</param>
</member>
<member name="M:System.Web.HttpWorkerRequest.SendResponseFromFile(System.IntPtr,System.Int64,System.Int64)">
<summary>
<para> Adds the contents of the specified file to the response and
specifies the starting position in the file and the number of bytes to send.</para>
</summary>
<param name="handle">The handle of the file to send.</param>
<param name=" offset">The starting position in the file.</param>
<param name=" length">The number of bytes to send.</param>
</member>
<member name="M:System.Web.HttpWorkerRequest.FlushResponse(System.Boolean)">
<summary>
<para>Sends all pending response data to the client.</para>
</summary>
<param name="finalFlush">
<see langword="true" /> if this is the last time response data will be flushed; otherwise, <see langword="false" /> . </param>
</member>
<member name="M:System.Web.HttpWorkerRequest.EndOfRequest">
<summary>
<para>Used by the runtime to notify the <see cref="T:System.Web.HttpWorkerRequest" />
that request processing for the current request is complete.</para>
</summary>
</member>
<member name="M:System.Web.HttpWorkerRequest.SetEndOfSendNotification(System.Web.HttpWorkerRequest.EndOfSendNotification,System.Object)">
<summary>
<para> Registers for an optional notification when all
the response data is sent.</para>
</summary>
<param name="callback">The notification callback that is called when all data is sent (out-of-band).</param>
<param name=" extraData">An additional parameter to the callback.</param>
</member>
<member name="M:System.Web.HttpWorkerRequest.SendCalculatedContentLength(System.Int32)">
<summary>
<para>Adds a <see langword="Content-Length" /> HTTP
header to the response.</para>
</summary>
<param name="contentLength">The length of the response, in bytes. </param>
</member>
<member name="M:System.Web.HttpWorkerRequest.HeadersSent">
<summary>
<para>Returns a value indicating whether HTTP response headers
have been sent to the client for the current request.</para>
</summary>
<returns>
<para>
<see langword="true" /> if HTTP response headers have been sent to the client;
otherwise, <see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.IsClientConnected">
<summary>
<para>Returns a value indicating whether the client
connection is still active.</para>
</summary>
<returns>
<para>
<see langword="true" /> if the client connection is still active; otherwise,
<see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.CloseConnection">
<summary>
<para>Terminates the connection with the client.</para>
</summary>
</member>
<member name="M:System.Web.HttpWorkerRequest.HasEntityBody">
<summary>
<para>Returns a value indicating whether the
request contains body data.</para>
</summary>
<returns>
<para>
<see langword="true" /> if the request contains body data; otherwise,
<see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetStatusDescription(System.Int32)">
<summary>
<para>Returns a string that describes the name of the specified
HTTP status code.</para>
</summary>
<param name="code">The HTTP status code.</param>
<returns>
<para>The status description. For example,
<see langword="GetStatusDescription" /> (404) returns “Not
Found”.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetKnownRequestHeaderIndex(System.String)">
<summary>
<para>Returns the index number of the specified HTTP request header.</para>
</summary>
<param name="header">The name of the header.</param>
<returns>
<para>The index number of the HTTP request
header specified in the <paramref name="header" /> parameter.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetKnownRequestHeaderName(System.Int32)">
<summary>
<para>Returns the name of the specified HTTP request header.</para>
</summary>
<param name="index">The index number of the header.</param>
<returns>
<para>The name of the HTTP request header specified in the
<paramref name="index" /> parameter.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetKnownResponseHeaderIndex(System.String)">
<summary>
<para>Returns the index number of the specified HTTP response header.</para>
</summary>
<param name="header">The name of the HTTP header.</param>
<returns>
<para>The index number of the HTTP response header specified
in the <paramref name="header" /> parameter.</para>
</returns>
</member>
<member name="M:System.Web.HttpWorkerRequest.GetKnownResponseHeaderName(System.Int32)">
<summary>
<para>Returns the name of the specified HTTP response header.</para>
</summary>
<param name="index">The index number of the header.</param>
<returns>
<para>The name of the HTTP response header specified in
the <paramref name="index" /> parameter.</para>
</returns>
</member>
<member name="P:System.Web.HttpWorkerRequest.MachineConfigPath">
<summary>
<para>Gets the full physical path to the Machine.config file.</para>
</summary>
</member>
<member name="P:System.Web.HttpWorkerRequest.MachineInstallDirectory">
<summary>
<para> Gets the physical path to the directory where the
ASP.NET binaries are installed.</para>
</summary>
</member>
<member name="T:System.Web.Caching.CacheItemRemovedCallback">
<summary>
<para> Defines a callback method for notifying
applications when a cached item is removed from the <see cref="T:System.Web.Caching.Cache" />
.</para>
</summary>
<param name="key">The index location for the item removed from the cache.</param>
<param name="value">The <see cref="T:System.Object" /> item removed from the cache.</param>
<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>
</member>
<member name="T:System.Web.Caching.CacheItemPriority">
<summary>
<para> Specifies the relative priority of items stored in the <see cref="T:System.Web.Caching.Cache" /> .</para>
</summary>
</member>
<member name="F:System.Web.Caching.CacheItemPriority.Low">
<summary>
<para> Cache items with this priority level are
the most likely to be deleted from the cache as the server frees system
memory.</para>
</summary>
</member>
<member name="F:System.Web.Caching.CacheItemPriority.BelowNormal">
<summary>
<para>
Cache items with this priority level are more likely to
be deleted from the cache as the server frees system memory than items assigned
a <see langword="Normal" />
priority. </para>
</summary>
</member>
<member name="F:System.Web.Caching.CacheItemPriority.Normal">
<summary>
<para> Cache items with this priority level are likely to be
deleted from the cache as the server frees system memory only after those items
with <see langword="Low" /> or <see langword="BelowNormal" />
priority. This is the default. </para>
</summary>
</member>
<member name="F:System.Web.Caching.CacheItemPriority.AboveNormal">
<summary>
<para> Cache items with this priority level are less likely to
be deleted as the server frees system memory than those assigned a
<see langword="Normal" />
priority. </para>
</summary>
</member>
<member name="F:System.Web.Caching.CacheItemPriority.High">
<summary>
<para> Cache items with this priority level are the least likely
to be deleted from the cache as the server frees system memory. </para>
</summary>
</member>
<member name="F:System.Web.Caching.CacheItemPriority.NotRemovable">
<summary>
<para> The cache items with this priority level will not be deleted
from the cache as the server frees system memory. </para>
</summary>
</member>
<member name="F:System.Web.Caching.CacheItemPriority.Default">
<summary>
<para>The default value for a cached item's priority is
<see langword="Normal" /> .</para>
</summary>
</member>
<member name="T:System.Web.Caching.CacheItemRemovedReason">
<summary>
<para> Specifies the reason an item was removed from
the <see cref="T:System.Web.Caching.Cache" /> .</para>
</summary>
</member>
<member name="F:System.Web.Caching.CacheItemRemovedReason.Removed">
<summary>
<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>
</summary>
</member>
<member name="F:System.Web.Caching.CacheItemRemovedReason.Expired">
<summary>
<para>The item is removed from the cache because it expired. </para>
</summary>
</member>
<member name="F:System.Web.Caching.CacheItemRemovedReason.Underused">
<summary>
<para>The item
is removed from the cache because the system removed it to free memory.</para>
</summary>
</member>
<member name="F:System.Web.Caching.CacheItemRemovedReason.DependencyChanged">
<summary>
<para> The item is removed from the cache because a file or key dependency
changed.</para>
</summary>
</member>
<member name="T:System.Web.Caching.Cache">
<summary>
<para>Implements the cache for a Web application. This class cannot be inherited.</para>
</summary>
</member>
<member name="F:System.Web.Caching.Cache.NoAbsoluteExpiration">
<summary>
<para> Used in the
<paramref name="absoluteExpiration" /> parameter in an <see cref="M:System.Web.Caching.Cache.Insert(System.String,System.Object)" /> method call
to indicate the item should never
expire. This field is read-only.</para>
</summary>
</member>
<member name="F:System.Web.Caching.Cache.NoSlidingExpiration">
<summary>
<para> Used as the <paramref name="slidingExpiration" />
parameter in an <see cref="M:System.Web.Caching.Cache.Insert(System.String,System.Object)" /> method call
to disable sliding
expirations. This field is read-only.</para>
</summary>
</member>
<member name="M:System.Web.Caching.Cache.GetEnumerator">
<summary>
<para> Retrieves a dictionary
enumerator used to iterate through the
key settings and their values contained in the cache.</para>
</summary>
<returns>
<para>An enumerator to iterate through the <see cref="T:System.Web.Caching.Cache" /> object.</para>
</returns>
</member>
<member name="M:System.Web.Caching.Cache.Get(System.String)">
<summary>
<para>Retrieves the specified item from the <see cref="T:System.Web.Caching.Cache" /> object.</para>
</summary>
<param name="key">The identifier for the cache item to retrieve.</param>
<returns>
<para>The retrieved cache item, or <see langword="null" /> if the key is not found.</para>
</returns>
</member>
<member name="M:System.Web.Caching.Cache.Insert(System.String,System.Object)">
<summary>
<para>Inserts an item into the <see cref="T:System.Web.Caching.Cache" /> object with a cache key to reference its
location and using default values provided by the <see cref="T:System.Web.Caching.CacheItemPriority" />
enumeration.</para>
</summary>
<param name="key">The cache key used to reference the item.</param>
<param name="value">The object to be inserted into the cache.</param>
</member>
<member name="M:System.Web.Caching.Cache.Insert(System.String,System.Object,System.Web.Caching.CacheDependency)">
<summary>
<para>Inserts an object into the <see cref="T:System.Web.Caching.Cache" /> that has file or key
dependencies.</para>
</summary>
<param name="key">The cache key used to identify the item.</param>
<param name="value">The object to be inserted in the cache.</param>
<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>
</member>
<member name="M:System.Web.Caching.Cache.Insert(System.String,System.Object,System.Web.Caching.CacheDependency,System.DateTime,System.TimeSpan)">
<summary>
<para>Inserts an object into the <see cref="T:System.Web.Caching.Cache" />
with dependencies and expiration policies. </para>
</summary>
<param name="key">The cache key used to reference the object.</param>
<param name="value">The object to be inserted in the cache.</param>
<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>
<param name="absoluteExpiration">The time at which the inserted object expires and is removed from the cache.</param>
<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>
</member>
<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)">
<summary>
<para>Inserts an object into the <see cref="T:System.Web.Caching.Cache" /> object with dependencies,
expiration and priority policies, and a delegate you can
use to notify your application when the inserted item is removed from
the <see langword="Cache" />
. </para>
</summary>
<param name="key">The cache key used to reference the object.</param>
<param name="value">The object to be inserted in the cache.</param>
<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>
<param name="absoluteExpiration">The time at which the inserted object expires and is removed from the cache.</param>
<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>
<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>
<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>
</member>
<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)">
<summary>
<para>Adds the specified item to the <see cref="T:System.Web.Caching.Cache" /> object with dependencies, expiration
and priority policies, and a delegate you can use to notify your application
when the inserted item is removed from the <see langword="Cache" />
. </para>
</summary>
<param name="key">The cache key used to reference the item.</param>
<param name=" value">The item to be added to the cache.</param>
<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>
<param name=" absoluteExpiration">The time at which the added object expires and is removed from the cache.</param>
<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>
<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>
<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>
<returns>
<para>The <see cref="T:System.Object" /> item added to the <see langword="Cache" /> .</para>
</returns>
</member>
<member name="M:System.Web.Caching.Cache.Remove(System.String)">
<summary>
<para>Removes the specified item from the
application's <see cref="T:System.Web.Caching.Cache" /> object. </para>
</summary>
<param name="key">A <see cref="T:System.String" /> identifier for the cache item to remove.</param>
<returns>
<para> The item removed from the <see langword="Cache" /> . If the value in the key parameter is not found,
returns <see langword="null" />.</para>
</returns>
</member>
<member name="P:System.Web.Caching.Cache.Count">
<summary>
<para> Gets the number of items stored in the
cache.</para>
</summary>
</member>
<member name="P:System.Web.Caching.Cache.Item(System.String)">
<summary>
<para> Gets or sets the cache item at the specified key.</para>
</summary>
<param name="key">A <see cref="T:System.String" /> object that represents the key for the cache item.</param>
</member>
<member name="T:System.Web.Caching.CacheDependency">
<summary>
<para>Tracks cache dependencies, which can be files, directories,
or keys to other objects in your application's <see cref="T:System.Web.Caching.Cache" /> . This class cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.Caching.CacheDependency.#ctor(System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class that
monitors a file or directory for changes.</para>
</summary>
<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>
</member>
<member name="M:System.Web.Caching.CacheDependency.#ctor(System.String,System.DateTime)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class that monitors a file or directory for
changes and indicates when change tracking is to begin.</para>
</summary>
<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>
<param name=" start">The time when change tracking begins.</param>
</member>
<member name="M:System.Web.Caching.CacheDependency.#ctor(System.String[])">
<summary>
<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) for
changes.</para>
</summary>
<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>
</member>
<member name="M:System.Web.Caching.CacheDependency.#ctor(System.String[],System.DateTime)">
<summary>
<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) for changes and specifies a time when change
monitoring begins.</para>
</summary>
<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>
<param name=" start">The time when change tracking begins.</param>
</member>
<member name="M:System.Web.Caching.CacheDependency.#ctor(System.String[],System.String[])">
<summary>
<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
array of cache keys, or both for changes.</para>
</summary>
<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>
<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>
</member>
<member name="M:System.Web.Caching.CacheDependency.#ctor(System.String[],System.String[],System.DateTime)">
<summary>
<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 array of cache keys, or both for changes.</para>
</summary>
<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>
<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>
<param name=" start">The time when change tracking begins.</param>
</member>
<member name="M:System.Web.Caching.CacheDependency.#ctor(System.String[],System.String[],System.Web.Caching.CacheDependency)">
<summary>
<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 array of cache keys, or both for changes. It also
makes itself dependent upon a separate instance of the
<see langword="CacheDependency" /> class.</para>
</summary>
<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>
<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>
<param name=" dependency">Another instance of the <see langword="CacheDependency" /> class that this instance is dependent upon.</param>
</member>
<member name="M:System.Web.Caching.CacheDependency.#ctor(System.String[],System.String[],System.Web.Caching.CacheDependency,System.DateTime)">
<summary>
<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 array of cache keys, or both for changes. It also
makes itself dependent upon another instance of the
<see langword="CacheDependency" /> class and a time when the change monitoring begins.</para>
</summary>
<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>
<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>
<param name=" dependency">Another instance of the <see langword="CacheDependency" /> class that this instance is dependent upon.</param>
<param name=" start">The time when change tracking begins.</param>
</member>
<member name="M:System.Web.Caching.CacheDependency.Dispose">
<summary>
<para>Releases the resources used by the <see cref="T:System.Web.Caching.CacheDependency" /> object.</para>
</summary>
</member>
<member name="P:System.Web.Caching.CacheDependency.HasChanged">
<summary>
<para>Gets a value indicating whether the <see cref="T:System.Web.Caching.CacheDependency" /> object has changed.</para>
</summary>
</member>
<member name="T:System.Web.Configuration.AuthenticationMode">
<summary>
<para> Provides enumerated values that specify the
authentication mode
for an application.</para>
</summary>
</member>
<member name="F:System.Web.Configuration.AuthenticationMode.None">
<summary>
<para>Specifies no authentication. Only anonymous users are
expected. Also, applications can handle events to provide their own authentication.</para>
</summary>
</member>
<member name="F:System.Web.Configuration.AuthenticationMode.Windows">
<summary>
<para> Specifies Windows authentication as
the
default authentication mode. Use this mode when using any form of
Internet Information Services (IIS) authentication: Basic, Digest, Integrated Windows
(NTLM/Kerberos), or certificates.</para>
</summary>
</member>
<member name="F:System.Web.Configuration.AuthenticationMode.Passport">
<summary>
<para>Specifies Microsoft Passport authentication as the
default authentication
mode.</para>
</summary>
</member>
<member name="F:System.Web.Configuration.AuthenticationMode.Forms">
<summary>
<para> Specifies ASP.NET forms-based authentication as
the default authentication
mode.</para>
</summary>
</member>
<member name="T:System.Web.Configuration.FormsAuthPasswordFormat">
<summary>
<para> Specifies the encryption format for storing passwords.</para>
</summary>
</member>
<member name="F:System.Web.Configuration.FormsAuthPasswordFormat.Clear">
<summary>
<para>Specifies that passwords are not encrypted.</para>
</summary>
</member>
<member name="F:System.Web.Configuration.FormsAuthPasswordFormat.SHA1">
<summary>
<para>Specifies that passwords are encrypted using the SHA1 hash algorithm.</para>
</summary>
</member>
<member name="F:System.Web.Configuration.FormsAuthPasswordFormat.MD5">
<summary>
<para>Specifies that passwords are encrypted using the MD5 hash algorithm.</para>
</summary>
</member>
<member name="T:System.Web.Configuration.FormsProtectionEnum">
<summary>
<para> Specifies the forms protection method that
the application uses.</para>
</summary>
</member>
<member name="F:System.Web.Configuration.FormsProtectionEnum.All">
<summary>
<para> Specifies that the application uses both data validation and encryption
to protect cookies. This option uses the configured data validation algorithm (based
on the &lt;machineKey&gt; element). Triple-DES (3DES) is used
for encryption, if it is available and if the key is at least 48 bytes
longs. <see langword="All" />
is the default (and recommended) value.</para>
</summary>
</member>
<member name="F:System.Web.Configuration.FormsProtectionEnum.None">
<summary>
<para> Specifies that both encryption and validation are
disabled for sites that use cookies only for personalization and have weaker
security requirements. Using cookies in this manner is not recommended; however,
it is the least resource-intensive way to enable personalization using the .NET Framework.</para>
</summary>
</member>
<member name="F:System.Web.Configuration.FormsProtectionEnum.Encryption">
<summary>
<para> Specifies that cookies are
encrypted using Triple-DES or DES, but data validation is not performed on cookies. Cookies used this
way might be subject to chosen plain-text security attacks.</para>
</summary>
</member>
<member name="F:System.Web.Configuration.FormsProtectionEnum.Validation">
<summary>
<para>Specifies that the application uses a validation scheme
to verify that the contents of an encrypted cookie have not been altered in
transit. The cookie is created by concatenating a validation key with the
cookie data, computing a Message Authentication Code (MAC), and appending the
MAC to the outgoing cookie.</para>
</summary>
</member>
<member name="T:System.Web.Configuration.HttpConfigurationContext">
<summary>
<para> Supplies current context information to configuration section handlers
in ASP.NET applications.
</para>
</summary>
</member>
<member name="P:System.Web.Configuration.HttpConfigurationContext.VirtualPath">
<summary>
<para>Gets the virtual path to the Web.config configuration file.</para>
</summary>
</member>
<member name="M:System.Web.Hosting.IAppDomainFactory.Create(System.String,System.String,System.String,System.String,System.String,System.Int32)">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="M:System.Web.Hosting.AppDomainFactory.Create(System.String,System.String,System.String,System.String,System.String,System.Int32)">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="T:System.Web.Hosting.ApplicationHost">
<summary>
<para> Enables hosting of ASP.NET pages outside
the Internet Information Services (IIS) application. This class
enables the host to create application domains for processing ASP.NET requests.</para>
</summary>
</member>
<member name="M:System.Web.Hosting.ApplicationHost.CreateApplicationHost(System.Type,System.String,System.String)">
<summary>
<para>Creates and configures an application domain for hosting
ASP.NET.</para>
</summary>
<param name="hostType">The name of a user-supplied class to be created in the new application domain.</param>
<param name=" virtualDir">The virtual directory for the application domain; for example, /myapp.</param>
<param name=" physicalDir">The physical directory for the application domain where ASP.NET pages are located; for example, c:\mypages.</param>
<returns>
<para>An instance of a user-suplied class used to marshal calls into the newly created
application domain.</para>
</returns>
</member>
<member name="M:System.Web.Hosting.IISAPIRuntime.StartProcessing">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="M:System.Web.Hosting.IISAPIRuntime.StopProcessing">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="M:System.Web.Hosting.IISAPIRuntime.ProcessRequest(System.IntPtr,System.Int32)">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="M:System.Web.Hosting.IISAPIRuntime.DoGCCollect">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="M:System.Web.Hosting.ISAPIRuntime.StartProcessing">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="M:System.Web.Hosting.ISAPIRuntime.StopProcessing">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="M:System.Web.Hosting.ISAPIRuntime.ProcessRequest(System.IntPtr,System.Int32)">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="M:System.Web.Hosting.ISAPIRuntime.DoGCCollect">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="T:System.Web.Hosting.SimpleWorkerRequest">
<summary>
<para>Provides a simple implementation of the <see cref="T:System.Web.HttpWorkerRequest" /><see langword=" " /> abstract class that can
be used to host ASP.NET applications outside an Internet Information Server (IIS)
application. You can employ <see langword="SimpleWorkerRequest" /> directly or extend it.</para>
</summary>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.GetUriPath">
<summary>
<para>Returns the virtual path to the requested URI.</para>
</summary>
<returns>
<para>The path to the requested URI.</para>
</returns>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.GetQueryString">
<summary>
<para>Returns the query string specified in the request URL.</para>
</summary>
<returns>
<para>The request query string.</para>
</returns>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.GetRawUrl">
<summary>
<para>Returns the URL path contained in the request header
with the query string appended.</para>
</summary>
<returns>
<para>The raw URL path of the request header.</para>
</returns>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.GetHttpVerbName">
<summary>
<para>Returns the specified member of the request header.</para>
</summary>
<returns>
The HTTP verb returned in the request
header.
</returns>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.GetHttpVersion">
<summary>
<para> Returns the HTTP version of the request (for
example, "HTTP/1.1").</para>
</summary>
<returns>
<para>The HTTP version number returned in the request header.</para>
</returns>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.GetRemoteAddress">
<summary>
<para>Returns the IP address of the client.</para>
</summary>
<returns>
<para>The client's IP address.</para>
</returns>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.GetRemotePort">
<summary>
<para>Returns the client's port number.</para>
</summary>
<returns>
<para>The client's HTTP port number.</para>
</returns>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.GetLocalAddress">
<summary>
<para>Returns the server IP address that is in the request header.</para>
</summary>
<returns>
<para>The server IP address returned in the request header.</para>
</returns>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.GetLocalPort">
<summary>
<para>Provides access to the specified member of the request header.</para>
</summary>
<returns>
<para>The server port number returned in the request header.</para>
</returns>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.GetUserToken">
<summary>
<para>Returns the client's impersonation token.</para>
</summary>
<returns>
<para>A value representing the client's impersonation token.
The default is <see cref="F:System.IntPtr.Zero" />
.</para>
</returns>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.GetFilePath">
<summary>
<para>Returns the physical path to the requested URI.</para>
</summary>
<returns>
<para>The physical path to the requested URI.</para>
</returns>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.GetFilePathTranslated">
<summary>
<para>Returns the physical file path to the requested URI (and
translates it from virtual path to physical path: for example,
"/proj1/page.aspx" to "c:\dir\page.aspx")</para>
</summary>
<returns>
<para>The translated physical file path to the requested URI.</para>
</returns>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.GetPathInfo">
<summary>
<para> Returns additional path information for a resource with
a URL extension. That is, for the path /virdir/page.html/tail, the return
value is /tail.</para>
</summary>
<returns>
<para>Additional path information for a resource.</para>
</returns>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.GetAppPath">
<summary>
<para>Returns the virtual path to the currently executing
server application.</para>
</summary>
<returns>
<para>The virtual path of the current application.</para>
</returns>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.GetAppPathTranslated">
<summary>
<para>Returns the UNC-translated path to the currently
executing server application.</para>
</summary>
<returns>
<para>The physical path of the current application.</para>
</returns>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.GetServerVariable(System.String)">
<summary>
<para>Returns a single server variable from a dictionary of
server variables associated with the request.</para>
</summary>
<param name="name">The name of the requested server variable.</param>
<returns>
<para>The requested server variable.</para>
</returns>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.MapPath(System.String)">
<summary>
<para>Returns the physical path corresponding to the specified virtual path.</para>
</summary>
<param name="path">The virtual path.</param>
<returns>
<para>The physical path that corresponds to the virtual path
specified in the <paramref name="path " />
parameter.</para>
</returns>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.SendStatus(System.Int32,System.String)">
<summary>
<para>Specifies the HTTP status code and status description of
the response; for example, SendStatus(200, "Ok").</para>
</summary>
<param name="statusCode">The status code to send</param>
<param name=" statusDescription">The status description to send.</param>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.SendKnownResponseHeader(System.Int32,System.String)">
<summary>
<para>Adds a standard HTTP header to the response.</para>
</summary>
<param name="index">The header index. For example, <see cref="F:System.Web.HttpWorkerRequest.HeaderContentLength" />.</param>
<param name=" value">The header value.</param>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.SendUnknownResponseHeader(System.String,System.String)">
<summary>
<para>Adds a nonstandard HTTP header to the response.</para>
</summary>
<param name="name">The name of the header to send.</param>
<param name=" value">The value of the header.</param>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.SendResponseFromMemory(System.Byte[],System.Int32)">
<summary>
<para>Adds the contents of a byte array to the response
and specifies the number of bytes to send.</para>
</summary>
<param name="data">The byte array to send.</param>
<param name=" length">The number of bytes to send.</param>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.SendResponseFromFile(System.String,System.Int64,System.Int64)">
<summary>
<para> Adds the contents of the file with the specified name to the response and
specifies the starting position in the file and the number of bytes to send.</para>
</summary>
<param name="filename">The name of the file to send.</param>
<param name=" offset">The starting position in the file.</param>
<param name=" length">The number of bytes to send.</param>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.SendResponseFromFile(System.IntPtr,System.Int64,System.Int64)">
<summary>
<para>Adds the contents of the file with the specified handle to the response and
specifies the starting position in the file and the number of bytes to send.</para>
</summary>
<param name="handle">The handle of the file to send.</param>
<param name=" offset">The starting position in the file.</param>
<param name=" length">The number of bytes to send.</param>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.FlushResponse(System.Boolean)">
<summary>
<para>Sends all pending response data to the client.</para>
</summary>
<param name="finalFlush">
<see langword="true" /> if this is the last time response data will be flushed; otherwise, <see langword="false" />.</param>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.EndOfRequest">
<summary>
<para> Notifies the <see cref="T:System.Web.HttpWorkerRequest" />
that request processing for the current request is complete.</para>
</summary>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.#ctor(System.String,System.String,System.IO.TextWriter)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.Hosting.SimpleWorkerRequest" /> class when the target application
domain has been created using the <see cref="M:System.Web.Hosting.ApplicationHost.CreateApplicationHost(System.Type,System.String,System.String)" />
method.</para>
</summary>
<param name="page"> The page to be requested (or the virtual path to the page, relative to the application directory).</param>
<param name=" query"> The text of the query string.</param>
<param name=" output">A <see cref="T:System.IO.TextWriter" /> that captures output from the response</param>
</member>
<member name="M:System.Web.Hosting.SimpleWorkerRequest.#ctor(System.String,System.String,System.String,System.String,System.IO.TextWriter)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.Hosting.SimpleWorkerRequest" /> class for use in an arbitrary application domain, when the
user code creates an <see cref="T:System.Web.HttpContext" /> (passing the <see langword="SimpleWorkerRequest" /> as
an argument to the <see langword="HttpContext" /> constructor)</para>
</summary>
<param name="appVirtualDir">The virtual path to the application directory; for example, “/app”.</param>
<param name=" appPhysicalDir">The physical path to the application directory; for example, "c:\app".</param>
<param name=" page">The virtual path for the request (relative to the application directory).</param>
<param name=" query">The text of the query string.</param>
<param name=" output">A <see cref="T:System.IO.TextWriter" /> that captures the output from the response.</param>
</member>
<member name="P:System.Web.Hosting.SimpleWorkerRequest.MachineConfigPath">
<summary>
<para>Gets the full physical path to the Machine.config file.</para>
</summary>
</member>
<member name="P:System.Web.Hosting.SimpleWorkerRequest.MachineInstallDirectory">
<summary>
<para>Gets the physical path to the directory where the ASP.NET
binaries are installed.</para>
</summary>
</member>
<member name="P:System.Web.Handlers.BatchHandler.IsReusable">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="T:System.Web.Security.DefaultAuthenticationModule">
<summary>
<para>Insures that an <see langword="Authentication" /> object is present in
the context. This class cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.Security.DefaultAuthenticationModule.Dispose">
<summary>
<para> Called by the HTTP runtime to Dispose of the module
(derived from <see langword="IHttpModule" /> ).</para>
</summary>
</member>
<member name="M:System.Web.Security.DefaultAuthenticationModule.Init(System.Web.HttpApplication)">
<summary>
<para>Initializes the module.</para>
</summary>
<param name="app">The <see langword="HTTP application" /> .</param>
</member>
<member name="E:System.Web.Security.DefaultAuthenticationModule.Authenticate">
<summary>
<para>Defines the event raised by the <see cref="T:System.Web.Security.DefaultAuthenticationModule" /> . Used by the
DefaultAuthentication_OnAuthenticate
handler, if one exists.</para>
</summary>
</member>
<member name="T:System.Web.Security.FileAuthorizationModule">
<summary>
<para> Verifies that the remote user has NT permissions to access the file requested. This class cannot
be inherited.
</para>
</summary>
</member>
<member name="M:System.Web.Security.FileAuthorizationModule.Init(System.Web.HttpApplication)">
<summary>
<para>Initializes the module.</para>
</summary>
<param name="app">The <see langword="HttpApplication" /> module.</param>
</member>
<member name="M:System.Web.Security.FileAuthorizationModule.Dispose">
<summary>
<para>Disposes of the module derived from
<see langword="IHttpModule" /> when called by the
<see langword="HttpRuntime" />
.</para>
</summary>
</member>
<member name="T:System.Web.Security.FormsAuthenticationEventArgs">
<summary>
<para>Provides data for the <c>FormsAuthentication_OnAuthenticate</c> event. This
class cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.Security.FormsAuthenticationEventArgs.#ctor(System.Web.HttpContext)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.Security.FormsAuthenticationEventArgs" />class.</para>
</summary>
<param name="context">The context for the event.</param>
</member>
<member name="P:System.Web.Security.FormsAuthenticationEventArgs.User">
<summary>
<para>Gets or sets the <see cref="T:System.Security.Principal.IPrincipal" /> object to be associated with the request. </para>
</summary>
</member>
<member name="P:System.Web.Security.FormsAuthenticationEventArgs.Context">
<summary>
<para>Gets the <see cref="T:System.Web.HttpContext" /> object for the current HTTP
request. </para>
</summary>
</member>
<member name="T:System.Web.Security.FormsAuthenticationEventHandler">
<summary>
<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" />
.</para>
</summary>
<param name="sender">The source of the event.</param>
<param name=" e">A <see cref="T:System.Web.Security.FormsAuthenticationEventArgs" />that contains the event data.</param>
</member>
<member name="T:System.Web.Security.FormsAuthenticationModule">
<summary>
<para>Enables ASP.NET applications to use forms authentication. This class cannot
be inherited. </para>
</summary>
</member>
<member name="M:System.Web.Security.FormsAuthenticationModule.Dispose">
<summary>
<para>Disposes of the module derived from <see cref="T:System.Web.IHttpModule" /> when
called by the HttpRuntime .</para>
</summary>
</member>
<member name="M:System.Web.Security.FormsAuthenticationModule.Init(System.Web.HttpApplication)">
<summary>
<para>Initializes the module derived from <see cref="T:System.Web.IHttpModule" /> when
called by the HttpRuntime<see langword="." /></para>
</summary>
<param name="app">The <see cref="T:System.Web.HttpApplication" /> module.</param>
</member>
<member name="E:System.Web.Security.FormsAuthenticationModule.Authenticate">
<summary>
<para>Defines the event raised during authentication. This is
a Global.asax event that must be named <c>FormsAuthentication_OnAuthenticate</c> .
You can use this event to
customize cookie authentication.</para>
</summary>
</member>
<member name="T:System.Web.Security.FormsAuthentication">
<summary>
<para> Provides static methods that supply helper utilities for manipulating
authentication tickets. This class cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(System.String,System.String)">
<summary>
<para>Given a password and a string identifying the hash type,
this routine produces a hash password suitable for storing in a configuration
file.</para>
</summary>
<param name="password">
<para>The password to hash.</para>
</param>
<param name="passwordFormat">
<para>The hash algorithm to use. Choices are "sha1" or "md5".</para>
</param>
<returns>
<para>Returns a <see langword="String " /> containing a hashed password.</para>
</returns>
</member>
<member name="M:System.Web.Security.FormsAuthentication.Initialize">
<summary>
<para>Initializes <see cref="T:System.Web.Security.FormsAuthentication" /> by reading the
configuration and getting the cookie values and encryption keys for the given
application.</para>
</summary>
</member>
<member name="M:System.Web.Security.FormsAuthentication.Decrypt(System.String)">
<summary>
<para> Returns an instance of a <see cref="T:System.Web.Security.FormsAuthenticationTicket" /> class, given
an encrypted authentication ticket obtained from an HTTP
cookie.</para>
</summary>
<param name="encryptedTicket">The encrypted authentication ticket.</param>
<returns>
<para>Returns a <see cref="T:System.Web.Security.FormsAuthenticationTicket" />
object.</para>
</returns>
</member>
<member name="M:System.Web.Security.FormsAuthentication.Encrypt(System.Web.Security.FormsAuthenticationTicket)">
<summary>
<para>Produces a string containing an encrypted authentication
ticket suitable for use in an HTTP cookie, given a <see cref="T:System.Web.Security.FormsAuthenticationTicket" />
.</para>
</summary>
<param name="ticket">An authentication ticket class.</param>
<returns>
<para> A string containing an
encrypted authentication ticket.</para>
</returns>
</member>
<member name="M:System.Web.Security.FormsAuthentication.Authenticate(System.String,System.String)">
<summary>
<para> Attempts to validate the
credentials against those contained in the configured credential store, given the
supplied credentials.</para>
</summary>
<param name="name">The user name</param>
<param name=" password">The user password.</param>
<returns>
<para>
<see langword="true " />if the credentials are
valid, otherwise returns <see langword="false" />
.</para>
</returns>
</member>
<member name="M:System.Web.Security.FormsAuthentication.SignOut">
<summary>
<para>Removes the authentication ticket.</para>
</summary>
</member>
<member name="M:System.Web.Security.FormsAuthentication.SetAuthCookie(System.String,System.Boolean)">
<summary>
<para> Creates an authentication ticket for the given
<paramref name="userName" /> and <paramref name="createPersistentCookie" />
and attaches it to the cookie's collection of the outgoing
response. It does not perform a redirect.</para>
</summary>
<param name="userName">The name of an authenticated user. This does not have to map to a Windows account.</param>
<param name=" createPersistentCookie">Specifies whether or not a durable cookie (one that is saved across browser sessions) should be issued.</param>
</member>
<member name="M:System.Web.Security.FormsAuthentication.SetAuthCookie(System.String,System.Boolean,System.String)">
<summary>
<para>Creates an authentication ticket for the given <paramref name="userName," /><paramref name="createPersistentCookie," /> and <paramref name="strCookiePath" /> and attaches it
to the cookie's collection of the outgoing response. It does not perform a
redirect.</para>
</summary>
<param name="userName">The name of an authenticated user. This does not have to map to a Windows account.</param>
<param name=" createPersistentCookie">Specifies whether or not a durable cookie (one that is saved across browser sessions) should be issued.</param>
<param name="strCookiePath"> Specifies cookie path.</param>
</member>
<member name="M:System.Web.Security.FormsAuthentication.GetAuthCookie(System.String,System.Boolean)">
<summary>
<para>Creates an authentication cookie for a given
user name. This does not set the cookie as part of the outgoing response, so
that an application can have more control over how the cookie is issued.</para>
</summary>
<param name="userName">Name of the authenticated user. This does not have to map to a Windows account.</param>
<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>
<returns>
<para>Returns an HTTP cookie.</para>
</returns>
</member>
<member name="M:System.Web.Security.FormsAuthentication.GetAuthCookie(System.String,System.Boolean,System.String)">
<summary>
<para>Creates an authentication cookie for a given user name.
This does not set the cookie as part of the outgoing response, so that an
application can have more control over how the cookie is issued.</para>
</summary>
<param name="userName">Name of the authenticated user. This does not have to map to a Windows account.</param>
<param name=" createPersistentCookie">Specifies whether or not a durable cookie (a cookie that is saved across browser sessions) should be issued.</param>
<param name=" strCookiePath">Specifies cookie path.</param>
<returns>
<para>Returns an HTTP cookie. </para>
</returns>
</member>
<member name="M:System.Web.Security.FormsAuthentication.GetRedirectUrl(System.String,System.Boolean)">
<summary>
<para>Returns the redirect URL for the original
request that caused the redirect to the logon page.</para>
</summary>
<param name="userName">Name of the authenticated user. This does not have to map to a Windows account.</param>
<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>
<returns>
<para>A string containing the redirect URL.</para>
</returns>
</member>
<member name="M:System.Web.Security.FormsAuthentication.RedirectFromLoginPage(System.String,System.Boolean)">
<summary>
<para> Redirects an
authenticated user back to the originally requested URL.</para>
</summary>
<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>
<param name=" createPersistentCookie">Specifies whether or not a durable cookie (one that is saved across browser sessions) should be issued.</param>
</member>
<member name="M:System.Web.Security.FormsAuthentication.RedirectFromLoginPage(System.String,System.Boolean,System.String)">
<summary>
<para> Redirects an authenticated user back to the originally requested
URL.</para>
</summary>
<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>
<param name=" createPersistentCookie">Specifies whether or not a durable cookie (one that is saved across browser sessions) should be issued.</param>
<param name=" strCookiePath">Specifies cookie path.</param>
</member>
<member name="M:System.Web.Security.FormsAuthentication.RenewTicketIfOld(System.Web.Security.FormsAuthenticationTicket)">
<summary>
<para>Conditionally
updates the sliding expiration on a <see cref="T:System.Web.Security.FormsAuthenticationTicket" />.
</para>
</summary>
<param name="tOld">Authentication ticket.</param>
<returns>
<para> The updated <see cref="T:System.Web.Security.FormsAuthenticationTicket" />.</para>
</returns>
</member>
<member name="P:System.Web.Security.FormsAuthentication.FormsCookieName">
<summary>
<para>Returns the configured cookie name used for the current application.</para>
</summary>
</member>
<member name="P:System.Web.Security.FormsAuthentication.FormsCookiePath">
<summary>
<para>Returns the configured cookie path used for the current application.</para>
</summary>
</member>
<member name="T:System.Web.Security.FormsAuthenticationTicket">
<summary>
<para> Provides the information represented in
an authentication cookie as used by <see cref="T:System.Web.Security.FormsAuthenticationModule" />
. This class cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.Security.FormsAuthenticationTicket.#ctor(System.Int32,System.String,System.DateTime,System.DateTime,System.Boolean,System.String)">
<summary>
<para>Creates a <see cref="T:System.Web.Security.FormsAuthenticationTicket" />
instance with explicit values.</para>
</summary>
<param name="version">The version number.</param>
<param name="name">User name associated with the ticket.</param>
<param name="expiration">Expiration date for the cookie.</param>
<param name="issueDate">Time at which the cookie was issued.</param>
<param name="isPersistent">
<see langword="True" /> if the cookie is persistent.</param>
<param name="userData">User-defined data to be stored in the cookie.</param>
</member>
<member name="M:System.Web.Security.FormsAuthenticationTicket.#ctor(System.Int32,System.String,System.DateTime,System.DateTime,System.Boolean,System.String,System.String)">
<summary>
<para>Creates a <see cref="T:System.Web.Security.FormsAuthenticationTicket" />
instance with explicit values.</para>
</summary>
<param name="version">The version number.</param>
<param name="name">User name associated with the ticket.</param>
<param name="expiration">Expiration date for the cookie.</param>
<param name="issueDate">Time at which the cookie was issued.</param>
<param name="isPersistent">
<see langword="True" /> if the cookie is persistent.</param>
<param name="userData">User-defined data to be stored in the cookie.</param>
<param name="cookiePath">The path for the cookie.</param>
</member>
<member name="M:System.Web.Security.FormsAuthenticationTicket.#ctor(System.String,System.Boolean,System.Int32)">
<summary>
<para> Creates a <see cref="T:System.Web.Security.FormsAuthenticationTicket" /> instance with the
specified name and cookie durability, and default values for the
other settings (version set internally, dates set to current date,
and expiration determined on durability of cookie).</para>
</summary>
<param name="name">User name associated with the ticket.</param>
<param name="isPersistent">If true, use a persistent cookie.</param>
<param name="timeout">Specifies the time in minutes (as an integer) for which the authentication ticket is valid.</param>
</member>
<member name="P:System.Web.Security.FormsAuthenticationTicket.Version">
<summary>
<para>Returns a byte version number for future
use.</para>
</summary>
</member>
<member name="P:System.Web.Security.FormsAuthenticationTicket.Name">
<summary>
<para>Gets the user name associated with the authentication cookie. </para>
</summary>
</member>
<member name="P:System.Web.Security.FormsAuthenticationTicket.Expiration">
<summary>
<para>Gets the date/time at which the cookie
expires.</para>
</summary>
</member>
<member name="P:System.Web.Security.FormsAuthenticationTicket.IssueDate">
<summary>
<para> Gets
the date/time at which the cookie was originally issued.</para>
</summary>
</member>
<member name="P:System.Web.Security.FormsAuthenticationTicket.IsPersistent">
<summary>
<para>Returns <see langword="true" /> if a durable cookie was issued.
Otherwise, the authentication cookie is scoped to the browser lifetime.</para>
</summary>
</member>
<member name="P:System.Web.Security.FormsAuthenticationTicket.Expired">
<summary>
<para>Returns <see langword="true" /> if the cookie has expired.</para>
</summary>
</member>
<member name="P:System.Web.Security.FormsAuthenticationTicket.UserData">
<summary>
<para> Gets an application-defined string
stored in the cookie.</para>
</summary>
</member>
<member name="P:System.Web.Security.FormsAuthenticationTicket.CookiePath">
<summary>
<para>Returns the path for which the cookie was issued.</para>
</summary>
</member>
<member name="T:System.Web.Security.FormsIdentity">
<summary>
<para> Provides a class to
be used by <see cref="T:System.Web.Security.FormsAuthenticationModule" />
.
This class cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.Security.FormsIdentity.#ctor(System.Web.Security.FormsAuthenticationTicket)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.Security.FormsIdentity" />class.</para>
</summary>
<param name="ticket">The authentication ticket upon which this identity is based.</param>
</member>
<member name="P:System.Web.Security.FormsIdentity.Name">
<summary>
<para> Gets the name of the identity (in this case,
the user name).</para>
</summary>
</member>
<member name="P:System.Web.Security.FormsIdentity.AuthenticationType">
<summary>
<para>Gets the type of the identity (in this case,
"Forms").</para>
</summary>
</member>
<member name="P:System.Web.Security.FormsIdentity.IsAuthenticated">
<summary>
<para> Indicates whether authentication took
place.</para>
</summary>
</member>
<member name="P:System.Web.Security.FormsIdentity.Ticket">
<summary>
<para>Gets the <see cref="T:System.Web.Security.FormsAuthenticationTicket" />
associated with the current request.</para>
</summary>
</member>
<member name="T:System.Web.Security.DefaultAuthenticationEventArgs">
<summary>
<para>Provides a wrapper around the default authentication services. This class
cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.Security.DefaultAuthenticationEventArgs.#ctor(System.Web.HttpContext)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.Security.DefaultAuthenticationEventArgs" /> class.</para>
</summary>
<param name=" context">The context for the event.</param>
</member>
<member name="P:System.Web.Security.DefaultAuthenticationEventArgs.Context">
<summary>
<para>Gets the <see cref="T:System.Web.HttpContext" /> object for the current HTTP request. </para>
</summary>
</member>
<member name="T:System.Web.Security.DefaultAuthenticationEventHandler">
<summary>
<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>
</summary>
<param name="sender">The object that raised the event.</param>
<param name=" e">A <see cref="T:System.Web.Security.DefaultAuthenticationEventArgs" /> object that contains the event data.</param>
</member>
<member name="T:System.Web.Security.PassportAuthenticationModule">
<summary>
<para>Provides a wrapper around PassportAuthentication services.
This class cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.Security.PassportAuthenticationModule.Dispose">
<summary>
<para>Disposes of the module derived from <see cref="T:System.Web.IHttpModule" /> when
called by the HttpRuntime<see langword="." /></para>
</summary>
</member>
<member name="M:System.Web.Security.PassportAuthenticationModule.Init(System.Web.HttpApplication)">
<summary>
<para> Initializes the module derived from <see cref="T:System.Web.IHttpModule" /> when
called by the HttpRuntime
.</para>
</summary>
<param name="app">The <see cref="T:System.Web.HttpApplication" /> module</param>
</member>
<member name="E:System.Web.Security.PassportAuthenticationModule.Authenticate">
<summary>
<para>Raised during authentication. This is a Global.asax event
that must be named <c>PassportAuthentication_OnAuthenticate</c>
.</para>
</summary>
</member>
<member name="T:System.Web.Security.PassportAuthenticationEventArgs">
<summary>
<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
point, this is useful mainly for attaching a custom <see cref="T:System.Security.Principal.IPrincipal" />
object to the context using the supplied
identity.</para>
</summary>
</member>
<member name="M:System.Web.Security.PassportAuthenticationEventArgs.#ctor(System.Web.Security.PassportIdentity,System.Web.HttpContext)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.Security.PassportAuthenticationEventArgs" />class.</para>
</summary>
<param name="identity">The identity object</param>
<param name=" context">The context for the event.</param>
</member>
<member name="P:System.Web.Security.PassportAuthenticationEventArgs.User">
<summary>
<para>Gets or sets the <see cref="T:System.Security.Principal.IPrincipal" /> object to be associated with the
request. </para>
</summary>
</member>
<member name="P:System.Web.Security.PassportAuthenticationEventArgs.Context">
<summary>
<para>Gets the <see cref="T:System.Web.HttpContext" /> object for the current HTTP request.</para>
</summary>
</member>
<member name="P:System.Web.Security.PassportAuthenticationEventArgs.Identity">
<summary>
<para>Gets an authenticated Passport identity.</para>
</summary>
</member>
<member name="T:System.Web.Security.PassportAuthenticationEventHandler">
<summary>
<para> Represents the method that handles the
PassportAuthentication_OnAuthenticate event of a <see cref="T:System.Web.Security.PassportAuthenticationModule" />.</para>
</summary>
<param name="sender">The object that raised the event.</param>
<param name=" e">A <see cref="T:System.Web.Security.PassportAuthenticationEventArgs" /> object that contains the event data.</param>
</member>
<member name="T:System.Web.Security.PassportIdentity">
<summary>
<para>Provides a class to be used by <see cref="T:System.Web.Security.PassportAuthenticationModule" /> . It provides a
way for an application to access the <see cref="M:System.Web.Security.PassportIdentity.Ticket(System.String)" />method. This class cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.Security.PassportIdentity.#ctor">
<summary>
<para>Initializes a new instance of the
<see cref="T:System.Web.Security.PassportIdentity" /> class.</para>
</summary>
</member>
<member name="M:System.Web.Security.PassportIdentity.Finalize">
<summary>
<para>Frees resources used by the <see cref="T:System.Web.Security.PassportIdentity" /> class.</para>
</summary>
</member>
<member name="M:System.Web.Security.PassportIdentity.GetIsAuthenticated(System.Int32,System.Boolean,System.Boolean)">
<summary>
<para>Indicates whether the user is authenticated by a a central site
responsible for Passport authentication.</para>
</summary>
<param name="iTimeWindow">Specifies the interval during which members must have last logged on to the calling domain.</param>
<param name="bForceLogin">Determines how the <paramref name="iTimeWindow" /> parameter is used.</param>
<param name="bCheckSecure">Enables checking for a secure logon.</param>
<returns>
<para>
<see langword="true" /> if the user is
authenticated by a Passport authority; otherwise, <see langword="false" />
.</para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.GetIsAuthenticated(System.Int32,System.Int32,System.Int32)">
<summary>
<para>Indicates whether the user is authenticated by a
Passport authority.</para>
</summary>
<param name="iTimeWindow">Specifies the interval during which members must have last logged on to the calling domain.</param>
<param name="iForceLogin">Determines how the <paramref name="iTimeWindow" /> parameter is used.</param>
<param name="iCheckSecure">Enables checking for a secure logon.</param>
<returns>
<para>
<see langword="true" /> if the user is
authenticated by a
central site responsible for Passport authentication; otherwise, <see langword="false" />
.</para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.GetProfileObject(System.String)">
<summary>
<para>Returns Passport profile information for
the specified profile attribute.</para>
</summary>
<param name="strProfileName">The Passport profile attribute to return.</param>
<returns>
<para>The value of the Passport profile attribute specified by
the <paramref name="strProfileName " />parameter.</para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.GetDomainFromMemberName(System.String)">
<summary>
<para> Returns the Passport domain from the member
name string.</para>
</summary>
<param name="strMemberName">The name of the Passport member</param>
<returns>
<para>The Passport domain for the specified member.</para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.HasProfile(System.String)">
<summary>
<para>Indicates whether a given profile
attribute exists in this user's profile.</para>
</summary>
<param name="strProfile">The Passport profile attribute to query.</param>
<returns>
<para>
<see langword="true" /> if the profile attribute <paramref name="strProfile" /> exists in this user's
profile; otherwise, <see langword="false" />
.</para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.HasFlag(System.Int32)">
<summary>
<para>Indicates whether a given flag is set in this user's profile.</para>
</summary>
<param name="iFlagMask">The Passport profile flag to query.</param>
<returns>
<para>
<see langword="true" /> if the
Passport profile flag <paramref name="iFlagMask" /> is set in this
user's profile; otherwise, <see langword="false" /> .</para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.HaveConsent(System.Boolean,System.Boolean)">
<summary>
<para>Indicates whether full consent is granted in this user's
profile.</para>
</summary>
<param name="bNeedFullConsent">
<see langword="true" /> to indicate full consent is required for Passport Authentication; otherwise, <see langword="false" /> .</param>
<param name="bNeedBirthdate">
<see langword="true" /> to indicate the user's birthdate is required for Passport Authentication; otherwise, <see langword="false" /> .</param>
<returns>
<para>
<see langword="true" /> if full consent is granted in this user's profile.</para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.LogoTag">
<summary>
<para>Returns an HTML fragment containing an image tag for a Passport link. </para>
</summary>
<returns>
<para>An HTML fragment containing an image tag for a Passport link.</para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.LogoTag2">
<summary>
<para>Returns an HTML fragment containing an image tag for a Passport link. </para>
</summary>
<returns>
<para>
An HTML fragment containing an image tag for a Passport link.</para>
</returns>
</member>
<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)">
<summary>
<para> Returns an HTML fragment containing an HTML &lt;img&gt; tag for a Passport
link. </para>
</summary>
<param name="strReturnUrl">Sets the URL of the location to which the Login server should redirect members after they log on.</param>
<param name="iTimeWindow">Specifies the interval during which members must have last logged on. </param>
<param name="fForceLogin">Determines how the <paramref name="iTimeWindow" /> parameter gets used.</param>
<param name="strCoBrandedArgs">Specifies variables to be appended as query string variables to the URL of the participant's Cobranding Template script page.</param>
<param name="iLangID">Specifies the language to be used for the logon page that is displayed to the member.</param>
<param name="fSecure">Declares whether this method is being called from an HTTPS (SSL) page. </param>
<param name="strNameSpace">Specifies the domain in which the Passport should be created.</param>
<param name="iKPP">Specifies data collection policies for purposes of Children's Online Privacy Protection Act (COPPA) compliance. </param>
<param name="bUseSecureAuth">Declares whether the actual logon UI should be served HTTPS from the Passport domain authority. </param>
<returns>
<para>An HTML fragment containing an image tag for a Passport link.</para>
</returns>
</member>
<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)">
<summary>
<para> Returns an HTML fragment containing an HTML &lt;img&gt; tag for a Passport
link. </para>
</summary>
<param name="strReturnUrl">Sets the URL of the location to which the Login server should redirect members after they log on.</param>
<param name="iTimeWindow">Specifies the interval during which members must have last logged on.</param>
<param name="iForceLogin">Determines how the <paramref name="iTimeWindow" /> parameter gets used.</param>
<param name="strCoBrandedArgs">Specifies variables to be appended as query string variables to the URL of the participant's Cobranding Template script page.</param>
<param name="iLangID">Specifies the language to be used for the logon page that is displayed to the member.</param>
<param name="iSecure">Declares whether this method is being called from an HTTPS (SSL) page.</param>
<param name="strNameSpace">Specifies the domain in which the Passport should be created.</param>
<param name="iKPP">Specifies data collection policies for purposes of Children's Online Privacy Protection Act (COPPA) compliance.</param>
<param name="iUseSecureAuth">Declares whether the actual logon UI should be served HTTPS from the Passport domain authority.</param>
<returns>
<para>An HTML fragment containing an image tag for a Passport link.</para>
</returns>
</member>
<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)">
<summary>
<para> Returns an HTML fragment containing an HTML &lt;img&gt; tag for a Passport
link. </para>
</summary>
<param name="strReturnUrl">Sets the URL of the location to which the Login server should redirect members after they log on.</param>
<param name="iTimeWindow">Specifies the interval during which members must have last logged on.</param>
<param name="fForceLogin">Determines how the <paramref name="iTimeWindow" /> parameter gets used.</param>
<param name="strCoBrandedArgs">Specifies variables to be appended as query string variables to the URL of the participant's Cobranding Template script page.</param>
<param name="iLangID">Specifies the language to be used for the logon page that is displayed to the member.</param>
<param name="fSecure">Declares whether this method is being called from an HTTPS (SSL) page.</param>
<param name="strNameSpace">Specifies the domain in which the Passport should be created.</param>
<param name="iKPP">Specifies data collection policies for purposes of Children's Online Privacy Protection Act (COPPA) compliance.</param>
<param name="bUseSecureAuth">Declares whether the actual logon UI should be served HTTPS from the Passport domain authority.</param>
<returns>
<para>An HTML fragment containing an image tag for a Passport link.</para>
</returns>
</member>
<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)">
<summary>
<para> Returns an HTML fragment containing an HTML &lt;img&gt; tag for a Passport
link. </para>
</summary>
<param name="strReturnUrl">Sets the URL of the location to which the Login server should redirect members after they log on.</param>
<param name="iTimeWindow">Specifies the interval during which members must have last logged on.</param>
<param name="iForceLogin">Determines how the <paramref name="iTimeWindow" /> parameter gets used.</param>
<param name="strCoBrandedArgs">Specifies variables to be appended as query string variables to the URL of the participant's Cobranding Template script page.</param>
<param name="iLangID">Specifies the language to be used for the logon page that is displayed to the member.</param>
<param name="iSecure">Declares whether this method is being called from an HTTPS (SSL) page.</param>
<param name="strNameSpace">Specifies the domain in which the Passport should be created.</param>
<param name="iKPP">Specifies data collection policies for purposes of Children's Online Privacy Protection Act (COPPA) compliance.</param>
<param name="iUseSecureAuth">Declares whether the actual logon UI should be served HTTPS from the Passport domain authority.</param>
<returns>
<para>An HTML fragment containing an image tag for a Passport link.</para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.AuthUrl">
<summary>
<para> Returns a string
containing the Login server URL for a member, along with optional information sent to the Login
server in the query string.</para>
</summary>
<returns>
<para> The Login server URL for a member, as well as optional information sent
to the Login server in the query string. </para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.AuthUrl2">
<summary>
<para> Returns a string containing the Login server URL for a member,
as well as optional information sent to the Login server in the query string.</para>
</summary>
<returns>
<para> The Login server URL for a member, as well as optional information sent
to the Login server in the query string. </para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.AuthUrl(System.String,System.Int32,System.Boolean,System.String,System.Int32,System.String,System.Int32,System.Boolean)">
<summary>
<para> Returns the authentication server URL for
a member.</para>
</summary>
<param name="strReturnUrl">Sets the URL of the location that the Login server should redirect to after logon is complete.</param>
<param name="iTimeWindow">Specifies the interval during which members must have last logged on. </param>
<param name="fForceLogin">Determines how the <paramref name="iTimeWindow" /> parameter will be used.</param>
<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>
<param name="iLangID">Specifies the language in which the required domain authority page should be displayed. </param>
<param name="strNameSpace">Specifies the domain in which the Passport should be created.</param>
<param name="iKPP">Specifies data collection policies for purposes of Children's Online Privacy Protection Act (COPPA) compliance. </param>
<param name="bUseSecureAuth">Declares whether the actual logon UI should be served HTTPS from the Passport domain authority. </param>
<returns>
<para>The Login server URL for a member, as well as the optional information sent
to the Login server in the query string. </para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.AuthUrl2(System.String,System.Int32,System.Boolean,System.String,System.Int32,System.String,System.Int32,System.Boolean)">
<summary>
<para>Returns a string containing the Login server URL for a member, as well as the optional
information sent to the Login server in the query string.</para>
</summary>
<param name="strReturnUrl">Sets the URL of the location that the Login server should redirect to after logon is complete. </param>
<param name="iTimeWindow">Specifies the interval during which members must have last logged on.</param>
<param name="fForceLogin">Determines how the <paramref name="iTimeWindow" /> parameter will be used. </param>
<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>
<param name="iLangID">Specifies the language in which the required domain authority page should be displayed. </param>
<param name="strNameSpace">Specifies the domain in which the Passport should be created. </param>
<param name="iKPP">Specifies data collection policies for purposes of Children's Online Privacy Protection Act (COPPA) compliance. </param>
<param name="bUseSecureAuth">Declares whether the actual logon UI should be served HTTPS from the Passport domain authority. </param>
<returns>
<para>The Login server URL for a member, as well as the optional information sent
to the Login server in the query string. </para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.AuthUrl(System.String,System.Int32,System.Int32,System.String,System.Int32,System.String,System.Int32,System.Int32)">
<summary>
<para>Returns a string containing the Login
server URL for a member, along with the optional information sent to the Login
server in the query string</para>
</summary>
<param name="strReturnUrl">Sets the URL of the location that the Login server should redirect to after logon is complete.</param>
<param name="iTimeWindow">Specifies the interval during which members must have last logged on. </param>
<param name="iForceLogin">Determines how the <paramref name="iTimeWindow" /> parameter will be used.</param>
<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>
<param name="iLangID">Specifies the language in which the required domain authority page should be displayed.</param>
<param name="strNameSpace">Specifies the domain in which the Passport should be created.</param>
<param name="iKPP">Specifies data collection policies for purposes of Children's Online Privacy Protection Act (COPPA) compliance.</param>
<param name="iUseSecureAuth">Declares whether the actual Login UI should be served HTTPS from the Passport domain authority.</param>
<returns>
<para>The Login server URL for a member, as well as the optional information sent
to the Login server in the query string.</para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.AuthUrl2(System.String,System.Int32,System.Int32,System.String,System.Int32,System.String,System.Int32,System.Int32)">
<summary>
<para>Retrieves a string containing the Login server URL for a member, as well as the optional
information sent to the Login server in the query string.</para>
</summary>
<param name="strReturnUrl">Sets the URL of the location that the Login server should redirect to after logon is complete.</param>
<param name="iTimeWindow">Specifies the interval during which members must have last logged on.</param>
<param name="iForceLogin">Determines how the <paramref name="iTimeWindow" /> parameter will be used.</param>
<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>
<param name="iLangID">Specifies the language in which the required domain authority page should be displayed.</param>
<param name="strNameSpace">Specifies the domain in which the Passport should be created.</param>
<param name="iKPP">Specifies data collection policies for purposes of Children's Online Privacy Protection Act (COPPA) compliance.</param>
<param name="iUseSecureAuth">Declares whether the actual logon UI should be served HTTPS from the Passport domain authority.</param>
<returns>
<para>The Login server URL for a member, as well as the optional information sent
to the Login server in the query string.</para>
</returns>
</member>
<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)">
<summary>
<para> Logs the user on, either by generating a 302 redirect URL or by
initiating a Passport-aware client authentication exchange.</para>
</summary>
<param name="szRetURL">The URL to which the Login server should redirect users after sign in is complete.</param>
<param name="iTimeWindow">The time value, in seconds.</param>
<param name="fForceLogin">
<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>
<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>
<param name="iLangID">A locale identifier (LCID) specifying the language in which the Login page should be displayed.</param>
<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>
<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>
<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>
<param name="oExtraParams">Name-value pairs to be inserted directly into the challenge authentication header, specifically for Passport-aware authentication interaction.</param>
<returns>
<para>An integer result code.</para>
</returns>
</member>
<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)">
<summary>
<para> Logs the user on, either by generating a 302 redirect URL or initiating
a Passport-aware client authentication exchange.</para>
</summary>
<param name="szRetURL">The URL to which the Login server should redirect users after sign in is complete.</param>
<param name="iTimeWindow">The time value, in seconds.</param>
<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>
<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>
<param name="iLangID">A locale identifier (LCID) specifying the language in which the Login page should be displayed.</param>
<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>
<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>
<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>
<param name="oExtraParams">Name-value pairs to be inserted directly into the challenge authentication header, specifically for Passport-aware authentication interaction.</param>
<returns>
<para>An integer result code.</para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.LoginUser">
<summary>
<para> Logs the user on, either by generating a 302 redirect URL or initiating
a Passport-aware client authentication exchange.</para>
</summary>
<returns>
<para>An integer result code.</para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.GetLoginChallenge">
<summary>
<para>Logs the user on, either by generating a 302 redirect URL or initiating a
Passport-aware client authentication exchange.</para>
</summary>
<returns>
<para>A string representing the Passport Login Challenge.</para>
</returns>
</member>
<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)">
<summary>
<para>Logs the user on, either by generating a 302 redirect
URL or initiating a Passport-aware client authentication exchange.</para>
</summary>
<param name="szRetURL">See Passport documentation for IPassportManager3.GetLoginChallenge .</param>
<param name="iTimeWindow">See Passport documentation for IPassportManager3.GetLoginChallenge .</param>
<param name="fForceLogin">See Passport documentation for IPassportManager3.GetLoginChallenge .</param>
<param name="szCOBrandArgs">See Passport documentation for IPassportManager3.GetLoginChallenge .</param>
<param name="iLangID">See Passport documentation for IPassportManager3.GetLoginChallenge .</param>
<param name="strNameSpace">See Passport documentation for IPassportManager3.GetLoginChallenge .</param>
<param name="iKPP">See Passport documentation for IPassportManager3.GetLoginChallenge .</param>
<param name="iUseSecureAuth">See Passport documentation for IPassportManager3.GetLoginChallenge .</param>
<param name="oExtraParams">See Passport documentation for IPassportManager3.GetLoginChallenge .</param>
<returns>
<para>A string representing the Passport Login Challenge.</para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.GetDomainAttribute(System.String,System.Int32,System.String)">
<summary>
<para>Provides information for a Passport domain by querying
the Passport manager for the requested domain attribute.</para>
</summary>
<param name="strAttribute">The name of the attribute value to retrieve.</param>
<param name="iLCID">The language in which various Passport network pages should be displayed to the member. </param>
<param name="strDomain">The domain authority name to query for an attribute. </param>
<returns>
<para>A string
representing the requested attribute.</para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.Ticket(System.String)">
<summary>
<para>Gets information on a specific attribute of the Passport authentication ticket.</para>
</summary>
<param name="strAttribute">A string identifying the Passport authentication ticket to return<see langword="." /></param>
<returns>
<para>An object representing an attribute of the Passport authentication
ticket.</para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.GetCurrentConfig(System.String)">
<summary>
<para>Gets the contents of a registry key under the HKLM\SW\Microsoft\Passport
hive. </para>
</summary>
<param name="strAttribute">The name of the registry key.</param>
<returns>
<para>The contents of the registry key.</para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.SignOut(System.String)">
<summary>
<para>Logs off the given Passport member from
the current session.</para>
</summary>
<param name="strSignOutDotGifFileName">An HTML fragment containing an image for the user to click on to sign out.</param>
</member>
<member name="M:System.Web.Security.PassportIdentity.Encrypt(System.String)">
<summary>
<para>Encrypts data using the Passport participant key for the
current site.</para>
</summary>
<param name="strData">The data to be encrypted.</param>
<returns>
<para>Data encrypted using the Passport participant key for
the current site.</para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.Decrypt(System.String)">
<summary>
<para>Decrypts data using the Passport
participant key for the current site.</para>
</summary>
<param name="strData">The data to be decrypted.</param>
<returns>
<para>Data decrypted using the Passport participant key
for the current site.</para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.Compress(System.String)">
<summary>
<para>Compresses data.</para>
</summary>
<param name="strData">The data to be compressed.</param>
<returns>
<para>The compressed data.</para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.Decompress(System.String)">
<summary>
<para>Decompresses data that has been compressed by the
<see cref="M:System.Web.Security.PassportIdentity.Compress(System.String)" /> method.</para>
</summary>
<param name="strData">The data to be decompressed.</param>
<returns>
<para>The decompressed data.</para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.CryptPutHost(System.String)">
<summary>
<para>Sets the key being used for Passport encryption and decryption. </para>
</summary>
<param name="strHost">The host name or IP address.</param>
<returns>
<para>An integer result code.</para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.CryptPutSite(System.String)">
<summary>
<para>Sets the key being used for Passport encryption and decryption by
referring to the site-name label assigned to that key when the key was first installed.</para>
</summary>
<param name="strSite">The site label.</param>
<returns>
<para>An integer result code.</para>
</returns>
</member>
<member name="M:System.Web.Security.PassportIdentity.CryptIsValid">
<summary>
<para>Gets the state of a flag indicating if the Passport
Manager is in a valid state for encryption.</para>
</summary>
<returns>
<para>
<see langword="true" /> if the key used for encryption and decryption is valid
and if the Passport Manager is in a valid state for encryption</para>
</returns>
</member>
<member name="P:System.Web.Security.PassportIdentity.Name">
<summary>
<para>Gets the name of the current user. </para>
</summary>
</member>
<member name="P:System.Web.Security.PassportIdentity.AuthenticationType">
<summary>
<para>Gets the type of authentication used to identify the user.</para>
</summary>
</member>
<member name="P:System.Web.Security.PassportIdentity.IsAuthenticated">
<summary>
<para>Gets a value indicating whether
the user is authenticated against a
Passport authority.</para>
</summary>
</member>
<member name="P:System.Web.Security.PassportIdentity.Item(System.String)">
<summary>
<para> Gets Passport profile attributes. </para>
</summary>
<param name="strProfileName">The Passport profile attribute to return.</param>
</member>
<member name="P:System.Web.Security.PassportIdentity.Error">
<summary>
<para>Gets a value indicating the error state associated with the current Passport ticket. </para>
</summary>
</member>
<member name="P:System.Web.Security.PassportIdentity.GetFromNetworkServer">
<summary>
<para>Gets information on a Passport server connection and query string.</para>
</summary>
</member>
<member name="P:System.Web.Security.PassportIdentity.HasSavedPassword">
<summary>
<para> Gets information on whether the Passport member's password was
saved.</para>
</summary>
</member>
<member name="P:System.Web.Security.PassportIdentity.HasTicket">
<summary>
<para>Gets a value indicating whether the query string includes a Passport
ticket as a cookie.</para>
</summary>
</member>
<member name="P:System.Web.Security.PassportIdentity.TicketAge">
<summary>
<para> Gets the time, in seconds, since the last ticket was
issued or refreshed.</para>
</summary>
</member>
<member name="P:System.Web.Security.PassportIdentity.TimeSinceSignIn">
<summary>
<para> Gets the time, in seconds, since a member's
logon to the Passport logon server.</para>
</summary>
</member>
<member name="P:System.Web.Security.PassportIdentity.HexPUID">
<summary>
<para>Gets the Passport Unique Identifier (PUID) for the
currently authenticated user, in hexadecimal form.</para>
</summary>
</member>
<member name="T:System.Web.Security.UrlAuthorizationModule">
<summary>
<para> Provides URL-based authorization services for allowing or
denying access to specified resources. This class cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.Security.UrlAuthorizationModule.Init(System.Web.HttpApplication)">
<summary>
<para>Initializes the module.</para>
</summary>
<param name="app">The <see langword="Http application" /> .</param>
</member>
<member name="M:System.Web.Security.UrlAuthorizationModule.Dispose">
<summary>
<para>Called by the HTTP runtime to dispose of
the module.</para>
</summary>
</member>
<member name="T:System.Web.Security.WindowsAuthenticationEventArgs">
<summary>
<para>Provides data for the <see cref="E:System.Web.Security.WindowsAuthenticationModule.Authenticate" /> event. This class cannot be
inherited.</para>
</summary>
</member>
<member name="M:System.Web.Security.WindowsAuthenticationEventArgs.#ctor(System.Security.Principal.WindowsIdentity,System.Web.HttpContext)">
<summary>
<para>Initializes a newly created instance of the <see cref="T:System.Web.Security.WindowsAuthenticationEventArgs" />
class.</para>
</summary>
<param name="identity">The windows identity object.</param>
<param name=" context">The context for the event.</param>
</member>
<member name="P:System.Web.Security.WindowsAuthenticationEventArgs.User">
<summary>
<para>Gets or sets the <see cref="T:System.Security.Principal.IPrincipal" /> object to be associated with the
request. </para>
</summary>
</member>
<member name="P:System.Web.Security.WindowsAuthenticationEventArgs.Context">
<summary>
<para>Gets the <see cref="T:System.Web.HttpContext" /> object for the current HTTP
request. </para>
</summary>
</member>
<member name="P:System.Web.Security.WindowsAuthenticationEventArgs.Identity">
<summary>
<para>Gets an authenticated Windows identity.</para>
</summary>
</member>
<member name="T:System.Web.Security.WindowsAuthenticationEventHandler">
<summary>
<para> Represents the method that handles the <c>WindowsAuthentication_OnAuthenticate</c> event of a <see cref="T:System.Web.Security.WindowsAuthenticationModule" />
.</para>
</summary>
<param name="sender">The source of the event.</param>
<param name=" e">A <see cref="T:System.Web.Security.WindowsAuthenticationEventArgs" /> that contains the event data.</param>
</member>
<member name="T:System.Web.Security.WindowsAuthenticationModule">
<summary>
<para> Enables ASP.NET applications to use Windows/IIS authentication. This class cannot be inherited.
</para>
</summary>
</member>
<member name="M:System.Web.Security.WindowsAuthenticationModule.Dispose">
<summary>
<para>Disposes of the module derived from
<see cref="T:System.Web.IHttpModule" /> when called by the <see cref="T:System.Web.HttpRuntime" />
.</para>
</summary>
</member>
<member name="M:System.Web.Security.WindowsAuthenticationModule.Init(System.Web.HttpApplication)">
<summary>
<para>Initializes the module derived from
<see cref="T:System.Web.IHttpModule" /> when called by the
HttpRuntime.
</para>
</summary>
<param name="app">The <see cref="T:System.Web.HttpApplication" /> module.</param>
</member>
<member name="E:System.Web.Security.WindowsAuthenticationModule.Authenticate">
<summary>
<para>Raised during authentication. This is a Global.asax event
that must be named <c>WindowsAuthentication_OnAuthenticate</c> . It is used
primarily to attach a custom <see cref="T:System.Security.Principal.IPrincipal" />
object to the context.</para>
</summary>
</member>
<member name="T:System.Web.SessionState.IReadOnlySessionState">
<summary>
<para> Specifies that the target HTTP handler
interface has read-only access to session-state values. This is a marker interface only and
has no methods.</para>
</summary>
</member>
<member name="T:System.Web.SessionState.IRequiresSessionState">
<summary>
<para> Specifies that the target HTTP handler interface
has read
and write access to session-state values. This is a marker interface only and
has no methods.</para>
</summary>
</member>
<member name="T:System.Web.SessionState.SessionStateMode">
<summary>
<para> Specifies the session-state mode.</para>
</summary>
</member>
<member name="F:System.Web.SessionState.SessionStateMode.Off">
<summary>
<para>Session state is disabled.</para>
</summary>
</member>
<member name="F:System.Web.SessionState.SessionStateMode.InProc">
<summary>
<para>Session state is in process with an ASP.NET worker process.
<see langword="InProc" />is the default.</para>
</summary>
</member>
<member name="F:System.Web.SessionState.SessionStateMode.StateServer">
<summary>
<para>Session state is using an out-of-process Windows NT Server to
store state information.</para>
</summary>
</member>
<member name="F:System.Web.SessionState.SessionStateMode.SQLServer">
<summary>
<para>Session state is using an out-of-process SQL Server to store state information.</para>
</summary>
</member>
<member name="T:System.Web.SessionState.HttpSessionState">
<summary>
<para> Provides access to session-state values as well as
session-level settings and lifetime management methods.</para>
</summary>
</member>
<member name="M:System.Web.SessionState.HttpSessionState.Abandon">
<summary>
<para>Cancels the current session.</para>
</summary>
</member>
<member name="M:System.Web.SessionState.HttpSessionState.Add(System.String,System.Object)">
<summary>
<para> Adds a new item to session state.</para>
</summary>
<param name="name"> The name of the session-state item to add.</param>
<param name=" value">The value to add to session state.</param>
</member>
<member name="M:System.Web.SessionState.HttpSessionState.Remove(System.String)">
<summary>
<para> Deletes an item from the session-state collection.</para>
</summary>
<param name="name"> The name of the session-state item to remove.</param>
</member>
<member name="M:System.Web.SessionState.HttpSessionState.RemoveAt(System.Int32)">
<summary>
<para> Deletes an item at a specified index from the session-state collection.</para>
</summary>
<param name="index">The index of the item to remove.</param>
</member>
<member name="M:System.Web.SessionState.HttpSessionState.Clear">
<summary>
<para>Clears all values from session state.</para>
</summary>
</member>
<member name="M:System.Web.SessionState.HttpSessionState.RemoveAll">
<summary>
<para> Clears all session-state values.</para>
</summary>
</member>
<member name="M:System.Web.SessionState.HttpSessionState.GetEnumerator">
<summary>
<para> Gets an enumerator of all session state-values in the current session.</para>
</summary>
<returns>
<para> The enumerator for session-state values.</para>
</returns>
</member>
<member name="M:System.Web.SessionState.HttpSessionState.CopyTo(System.Array,System.Int32)">
<summary>
<para> Copies the collection of session-state values to
a one-dimensional array, starting at the specified index in the array.</para>
</summary>
<param name="array">The <see cref="T:System.Array" /> that receives the session values.</param>
<param name=" index">The index in <paramref name="array" /> where copying starts.</param>
</member>
<member name="P:System.Web.SessionState.HttpSessionState.SessionID">
<summary>
<para>Gets the unique session ID used to identify the session.</para>
</summary>
</member>
<member name="P:System.Web.SessionState.HttpSessionState.Timeout">
<summary>
<para> Gets and sets the time-out period (in minutes) allowed between requests before
the session-state provider terminates the session.
</para>
</summary>
</member>
<member name="P:System.Web.SessionState.HttpSessionState.IsNewSession">
<summary>
<para> Gets a value indicating whether
the session was created with the current request.</para>
</summary>
</member>
<member name="P:System.Web.SessionState.HttpSessionState.Mode">
<summary>
<para> Gets the current session-state mode.</para>
</summary>
</member>
<member name="P:System.Web.SessionState.HttpSessionState.IsCookieless">
<summary>
<para>Gets a value indicating whether the session ID is embedded in the URL or stored
in an HTTP cookie.</para>
</summary>
</member>
<member name="P:System.Web.SessionState.HttpSessionState.LCID">
<summary>
<para>Gets or sets the locale identifier (LCID) of the current session.</para>
</summary>
</member>
<member name="P:System.Web.SessionState.HttpSessionState.CodePage">
<summary>
<para>Gets or sets the code page identifier for the current session.</para>
</summary>
</member>
<member name="P:System.Web.SessionState.HttpSessionState.Contents">
<summary>
<para> Gets a reference to the current session-state object.</para>
</summary>
</member>
<member name="P:System.Web.SessionState.HttpSessionState.StaticObjects">
<summary>
<para>Gets a collection of objects declared by
<see langword="&lt;object Runat=&quot;Server&quot; Scope=&quot;Session&quot;/&gt;" /> tags within the ASP.NET application file global.asax.</para>
</summary>
</member>
<member name="P:System.Web.SessionState.HttpSessionState.Item(System.String)">
<summary>
<para>Gets or sets a session value by name.</para>
</summary>
<param name="name">The key name of the session value.</param>
</member>
<member name="P:System.Web.SessionState.HttpSessionState.Item(System.Int32)">
<summary>
<para>Gets or sets a session value by numerical index.</para>
</summary>
<param name="index">The numerical index of the session value.</param>
</member>
<member name="P:System.Web.SessionState.HttpSessionState.Count">
<summary>
<para> Gets the number of items in the session-state collection.</para>
</summary>
</member>
<member name="P:System.Web.SessionState.HttpSessionState.Keys">
<summary>
<para>Gets a collection of the keys of all values stored in the session.</para>
</summary>
</member>
<member name="P:System.Web.SessionState.HttpSessionState.SyncRoot">
<summary>
<para> Gets an object that can be used to synchronize access
to the collection of session-state values.</para>
</summary>
</member>
<member name="P:System.Web.SessionState.HttpSessionState.IsReadOnly">
<summary>
<para>Gets a value indicating whether the session is read-only.</para>
</summary>
</member>
<member name="P:System.Web.SessionState.HttpSessionState.IsSynchronized">
<summary>
<para> Gets a value indicating whether access to the
collection of session-state values is synchronized (thread safe).</para>
</summary>
</member>
<member name="T:System.Web.SessionState.SessionStateModule">
<summary>
<para>Provides session-state services for an application.</para>
</summary>
</member>
<member name="M:System.Web.SessionState.SessionStateModule.Init(System.Web.HttpApplication)">
<summary>
<para> Executes initialization code when a session-state
module is created.</para>
</summary>
<param name="app">The current application.</param>
</member>
<member name="M:System.Web.SessionState.SessionStateModule.Dispose">
<summary>
<para> Executes final cleanup code before the session-state
module is released from memory.</para>
</summary>
</member>
<member name="E:System.Web.SessionState.SessionStateModule.Start">
<summary>
<para> Occurs when a session is created.</para>
</summary>
</member>
<member name="E:System.Web.SessionState.SessionStateModule.End">
<summary>
<para> Occurs when a session ends.</para>
</summary>
</member>
<member name="M:System.Web.SessionState.SessionStateSectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="M:System.Web.SessionState.IStateRuntime.StopProcessing">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<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)">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="M:System.Web.SessionState.StateRuntime.StopProcessing">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<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)">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="M:System.Web.UI.TemplateParser.CompileIntoType">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="T:System.Web.UI.AttributeCollection">
<summary>
<para>Provides object-model access to all attributes declared
in the opening tag of an ASP.NET server control element. This class cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.AttributeCollection.#ctor(System.Web.UI.StateBag)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.AttributeCollection" /> class.</para>
</summary>
<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>
</member>
<member name="M:System.Web.UI.AttributeCollection.Add(System.String,System.String)">
<summary>
<para> Adds an attribute to a server contol's
<see cref="T:System.Web.UI.AttributeCollection" /> object.</para>
</summary>
<param name="key">The index assigned to the new attribute in the collection.</param>
<param name=" value">The attribute to store in the collection.</param>
</member>
<member name="M:System.Web.UI.AttributeCollection.Remove(System.String)">
<summary>
<para> Removes an attribute from a server
control's <see cref="T:System.Web.UI.AttributeCollection" />object.</para>
</summary>
<param name="key">The key of the attribute to remove.</param>
</member>
<member name="M:System.Web.UI.AttributeCollection.Clear">
<summary>
<para> Removes all attributes from a server
control's <see cref="T:System.Web.UI.AttributeCollection" /> object.</para>
</summary>
</member>
<member name="M:System.Web.UI.AttributeCollection.Render(System.Web.UI.HtmlTextWriter)">
<summary>
<para>Writes the collection of attributes to the
specified <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream. In turn, the output stream writes
the collection to the Web Forms page.</para>
</summary>
<param name="writer">An <see cref="T:System.Web.UI.HtmlTextWriter" /> object that writes the attribute collection to the current output stream location.</param>
</member>
<member name="M:System.Web.UI.AttributeCollection.AddAttributes(System.Web.UI.HtmlTextWriter)">
<summary>
<para>Adds attributes from the
<see langword="AttributeCollection" /> class to the <see cref="T:System.Web.UI.HtmlTextWriter" />
object that is responsible for rendering the attributes as HTML to an
ASP.NET server control.</para>
</summary>
<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>
</member>
<member name="P:System.Web.UI.AttributeCollection.Item(System.String)">
<summary>
<para> Gets or sets a specified attribute value for a server control.</para>
</summary>
<param name="key">The location of the attribute within the collection.</param>
</member>
<member name="P:System.Web.UI.AttributeCollection.Keys">
<summary>
<para> Gets a collection of keys to all attributes in
the server control's <see cref="T:System.Web.UI.AttributeCollection" /> object.</para>
</summary>
</member>
<member name="P:System.Web.UI.AttributeCollection.Count">
<summary>
<para> Gets the number of attributes in the
<see cref="T:System.Web.UI.AttributeCollection" /> object.</para>
</summary>
</member>
<member name="P:System.Web.UI.AttributeCollection.CssStyle">
<summary>
<para>Gets a collection of styles for the ASP.NET server control to which the
current <see cref="T:System.Web.UI.AttributeCollection" /> object belongs. </para>
</summary>
</member>
<member name="T:System.Web.UI.ControlBuilder">
<summary>
<para> Supports the page parser in building a control and the child controls it
contains. </para>
</summary>
</member>
<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)">
<summary>
<para>Initializes the control builder when a Web request is made.</para>
</summary>
<param name="parser">The <see cref="T:System.Web.UI.TemplateParser" /> object responsible for parsing the control.</param>
<param name=" parentBuilder">The <see cref="T:System.Web.UI.ControlBuilder" /> object responsible for building the control.</param>
<param name=" type">The <see cref="T:System.Type" /> assigned to the control that the builder will create.</param>
<param name=" tagName">The name of the tag to be built. This allows the builder to support multiple tag types.</param>
<param name=" id">The <see cref="P:System.Web.UI.ControlBuilder.ID" /> attribute assigned to the control.</param>
<param name=" attribs">The <see cref="T:System.Collections.IDictionary" /> object that holds all the specified tag attributes.</param>
</member>
<member name="M:System.Web.UI.ControlBuilder.GetChildControlType(System.String,System.Collections.IDictionary)">
<summary>
<para> Obtains the <see cref="T:System.Type" /> for the control's children.</para>
</summary>
<param name="tagName">The tag name of the child.</param>
<param name=" attribs">An array of attributes contained in the child control.</param>
<returns>
<para>The <see cref="T:System.Type" /> of
the specified control's child.</para>
</returns>
</member>
<member name="M:System.Web.UI.ControlBuilder.HasBody">
<summary>
<para>Determines if a control has both an opening and closing tag. </para>
</summary>
<returns>
<para>
<see langword="true" /> if the control has an opening and closing tag;
otherwise, <see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.ControlBuilder.AllowWhitespaceLiterals">
<summary>
<para> Determines whether the
white space literals in the control must be processed or ignored.</para>
</summary>
<returns>
<para>
<see langword="true" /> if the white
space literals in the control must be processed; otherwise,
<see langword="false" />
.</para>
</returns>
</member>
<member name="M:System.Web.UI.ControlBuilder.AppendSubBuilder(System.Web.UI.ControlBuilder)">
<summary>
<para>Adds builders to the <see cref="T:System.Web.UI.ControlBuilder" /> object for any child controls that
belong to the container control.</para>
</summary>
<param name="subBuilder">The <see langword="ControlBuilder" /> object assigned to the child control.</param>
</member>
<member name="M:System.Web.UI.ControlBuilder.AppendLiteralString(System.String)">
<summary>
<para> Adds literal content to a
control.</para>
</summary>
<param name="s">The content to add to the control.</param>
</member>
<member name="M:System.Web.UI.ControlBuilder.CloseControl">
<summary>
<para> Called by the parser to inform the builder that the parsing of the control is complete.</para>
</summary>
</member>
<member name="M:System.Web.UI.ControlBuilder.HtmlDecodeLiterals">
<summary>
<para>Determines whether the literal string of an HTML control must be
HTML decoded.</para>
</summary>
<returns>
<para>
<see langword="true" /> if the HTML
control literal string is to be decoded; otherwise, <see langword="false" />
.</para>
</returns>
</member>
<member name="M:System.Web.UI.ControlBuilder.NeedsTagInnerText">
<summary>
<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>
</summary>
<returns>
<para>
<see langword="true" /> if the control
builder needs to get its inner text. The default is <see langword="false" /> .</para>
</returns>
</member>
<member name="M:System.Web.UI.ControlBuilder.SetTagInnerText(System.String)">
<summary>
<para>Provides the <see cref="T:System.Web.UI.ControlBuilder" /> with the inner text of the control
tag.</para>
</summary>
<param name="text">The text to be provided.</param>
</member>
<member name="M:System.Web.UI.ControlBuilder.OnAppendToParentBuilder(System.Web.UI.ControlBuilder)">
<summary>
<para> Notifies the <see cref="T:System.Web.UI.ControlBuilder" /> that it is being
added to a parent control builder.</para>
</summary>
<param name="parentBuilder">The <see cref="T:System.Web.UI.ControlBuilder" /> object to which the current builder is added.</param>
</member>
<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)">
<summary>
<para>Creates a <see cref="T:System.Web.UI.ControlBuilder" /> object for the specified tag.</para>
</summary>
<param name="parser">The <see cref="T:System.Web.UI.TemplateParser" /> object responsible for parsing the control.</param>
<param name=" parentBuilder">The <see cref="T:System.Web.UI.ControlBuilder" /> object responsible for building the control.</param>
<param name=" type">The <see cref="T:System.Type" /> assigned to the control that the builder will create.</param>
<param name=" tagName">The name of the tag to be built. This allows the builder to support multiple tag types.</param>
<param name=" id">The <see cref="P:System.Web.UI.ControlBuilder.ID" /> attribute assigned to the control.</param>
<param name=" attribs">The <see cref="T:System.Collections.IDictionary" /> object that holds all the specified tag attributes.</param>
<param name=" line">The source file line number for the specified control.</param>
<param name=" sourceFileName">The name of the source file from which the control is to be created.</param>
<returns>
<para>The builder that is responsible for creating the control.</para>
</returns>
</member>
<member name="P:System.Web.UI.ControlBuilder.InDesigner">
<summary>
<para>Returns whether the <see cref="T:System.Web.UI.ControlBuilder" /> is running in the designer.</para>
</summary>
</member>
<member name="P:System.Web.UI.ControlBuilder.FIsNonParserAccessor">
<summary>
<para>Determines whether the control implements the <see cref="T:System.Web.UI.IParserAccessor" />
interface.</para>
</summary>
</member>
<member name="P:System.Web.UI.ControlBuilder.FChildrenAsProperties">
<summary>
<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
<see langword="true." /></para>
</summary>
</member>
<member name="P:System.Web.UI.ControlBuilder.ControlType">
<summary>
<para>Gets the <see cref="T:System.Type" /> for the control to be created.</para>
</summary>
</member>
<member name="P:System.Web.UI.ControlBuilder.ID">
<summary>
<para>Gets or sets the identifier property for the control to be built.</para>
</summary>
</member>
<member name="P:System.Web.UI.ControlBuilder.TagName">
<summary>
<para>Gets the tag name for the control to be built.</para>
</summary>
</member>
<member name="P:System.Web.UI.ControlBuilder.HasAspCode">
<summary>
<para> Gets a value indicating whether the control contains any
code blocks.</para>
</summary>
</member>
<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)">
<summary>
<para>Initializes the <see cref="T:System.Web.UI.CollectionBuilder" /> object when a Web request is
made.</para>
</summary>
<param name="parser">The <see cref="T:System.Web.UI.TemplateParser" /> object for the currently requested server control.</param>
<param name=" parentBuilder">The <see cref="T:System.Web.UI.ControlBuilder" /> object for the parent server control.</param>
<param name=" type">The <see cref="T:System.Type" /> assigned to the collection.</param>
<param name=" tagName">The tag name assigned to the collection.</param>
<param name="ID">The programmatic identifier of the parent control.</param>
<param name=" attribs">An array that contains the attributes assigned to the parent control.</param>
</member>
<member name="M:System.Web.UI.CollectionBuilder.GetChildControlType(System.String,System.Collections.IDictionary)">
<summary>
<para>Maps the tag name of the child control to its specified
type.</para>
</summary>
<param name="tagName">The tag name of the child control.</param>
<param name=" attribs">The array of attributes that belong to the child control.</param>
<returns>
<para>A parser mapping from the given <paramref name="tagName" />
parameter to a <see cref="T:System.Type" /> object.</para>
</returns>
</member>
<member name="M:System.Web.UI.CollectionBuilder.AppendLiteralString(System.String)">
<summary>
<para>Adds whitespace literal content to the child control.</para>
</summary>
<param name="s">The literal string to add to the control.</param>
</member>
<member name="T:System.Web.UI.Control">
<summary>
<para> Defines the properties, methods, and events
that are shared by all ASP.NET server controls.</para>
</summary>
</member>
<member name="T:System.Web.UI.IParserAccessor">
<summary>
<para> Defines the method that ASP.NET server controls must
implement to recognize when elements, either HTML or XML, are parsed.</para>
</summary>
</member>
<member name="M:System.Web.UI.IParserAccessor.AddParsedSubObject(System.Object)">
<summary>
<para>When implemented by an ASP.NET server control, notifies
the server control that an element, either XML or HTML, was parsed.</para>
</summary>
<param name="obj">The <see cref="T:System.Object" /> that was parsed.</param>
</member>
<member name="T:System.Web.UI.IDataBindingsAccessor">
<summary>
<para>Allows access to the collection of data-binding
expressions on a control at design time.</para>
</summary>
</member>
<member name="P:System.Web.UI.IDataBindingsAccessor.DataBindings">
<summary>
<para>Indicates a collection of all data bindings on the control. This property is
read-only.</para>
</summary>
</member>
<member name="P:System.Web.UI.IDataBindingsAccessor.HasDataBindings">
<summary>
<para> Returns whether the
control contains any data-binding logic.</para>
</summary>
</member>
<member name="M:System.Web.UI.Control.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.Control" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.Control.OnDataBinding(System.EventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.Control.DataBinding" />
event.</para>
</summary>
<param name="e">An <see langword="EventArgs" /> object that contains the event data.</param>
</member>
<member name="M:System.Web.UI.Control.DataBind">
<summary>
<para> Binds a data source to the invoked server control and all its child
controls.</para>
</summary>
</member>
<member name="M:System.Web.UI.Control.AddParsedSubObject(System.Object)">
<summary>
<para>Notifies the server control that an element, either XML
or HTML, was parsed, and adds the element to the server control's <see cref="T:System.Web.UI.ControlCollection" />
object.</para>
</summary>
<param name="obj">An <see cref="T:System.Object" /> that represents the parsed element.</param>
</member>
<member name="M:System.Web.UI.Control.OnInit(System.EventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.Control.Init" />
event.</para>
</summary>
<param name="e">An <see cref="T:System.EventArgs" /> object that contains the event data.</param>
</member>
<member name="M:System.Web.UI.Control.ClearChildViewState">
<summary>
<para> Deletes the view-state information for all the server control's child
controls.</para>
</summary>
</member>
<member name="M:System.Web.UI.Control.LoadViewState(System.Object)">
<summary>
<para> Restores view-state information from a previous page
request that was saved by the <see cref="M:System.Web.UI.Control.SaveViewState" /> method.</para>
</summary>
<param name="savedState">An <see cref="T:System.Object" /> that represents the control state to be restored.</param>
</member>
<member name="M:System.Web.UI.Control.MapPathSecure(System.String)">
<summary>
<para> Retrieves a mapped physical file path relative
to the source file, if the requesting server control has sufficient
security permissions to read the mapped result.</para>
</summary>
<param name="virtualPath">A relative or root relative URL.</param>
<returns>
<para>The physical path to the requested file.</para>
</returns>
</member>
<member name="M:System.Web.UI.Control.OnLoad(System.EventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.Control.Load" />
event.</para>
</summary>
<param name="e">The <see cref="T:System.EventArgs" /> object that contains the event data.</param>
</member>
<member name="M:System.Web.UI.Control.OnPreRender(System.EventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.Control.PreRender" />
event.</para>
</summary>
<param name="e">An <see cref="T:System.EventArgs" /> object that contains the event data.</param>
</member>
<member name="M:System.Web.UI.Control.SaveViewState">
<summary>
<para> Saves any server control view-state changes that have occurred since the time the page
was posted back to the server. </para>
</summary>
<returns>
<para>Returns the server control's current view state. If there is no
view state associated with the control, this method returns <see langword="null" /> .</para>
</returns>
</member>
<member name="M:System.Web.UI.Control.Render(System.Web.UI.HtmlTextWriter)">
<summary>
<para>Sends server control content to a provided <see cref="T:System.Web.UI.HtmlTextWriter" /> object, which writes the content to
be rendered on
the client.</para>
</summary>
<param name="writer">The <see langword="HtmlTextWriter" /> object that receives the server control content.</param>
</member>
<member name="M:System.Web.UI.Control.RenderChildren(System.Web.UI.HtmlTextWriter)">
<summary>
<para>Outputs the content of a server control's children to a provided <see cref="T:System.Web.UI.HtmlTextWriter" /> object, which writes
the content to be rendered on
the client.</para>
</summary>
<param name="writer">The <see langword="HtmlTextWriter" /> object that receives the rendered content.</param>
</member>
<member name="M:System.Web.UI.Control.RenderControl(System.Web.UI.HtmlTextWriter)">
<summary>
<para>Outputs server control content to a provided <see cref="T:System.Web.UI.HtmlTextWriter" /> object and stores
tracing information about the control if tracing is enabled.</para>
</summary>
<param name="writer">The <see langword="HtmlTextWriter" /> object that receives the control content.</param>
</member>
<member name="M:System.Web.UI.Control.OnUnload(System.EventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.Control.Unload" /> event.</para>
<note type="note">
Server controls should perform any final cleanup, such as
closing files, closing database connections, and discarding objects, during this stage
of the server control lifecycle.
</note>
</summary>
<param name="e">An <see cref="T:System.EventArgs" /> object that contains event data.</param>
</member>
<member name="M:System.Web.UI.Control.Dispose">
<summary>
<para> Enables a server control
to perform final clean up before it is released from memory.</para>
</summary>
</member>
<member name="M:System.Web.UI.Control.RaiseBubbleEvent(System.Object,System.EventArgs)">
<summary>
<para> Assigns any sources of the event and its information to the control's parent. </para>
</summary>
<param name="source">The source of the event.</param>
<param name=" args">An <see cref="T:System.EventArgs" /> object that contains the event data.</param>
</member>
<member name="M:System.Web.UI.Control.OnBubbleEvent(System.Object,System.EventArgs)">
<summary>
<para> Determines whether the event for the server control is passed up the page's UI server
control hierarchy.</para>
</summary>
<param name="source">The source of the event.</param>
<param name=" args">An <see cref="T:System.EventArgs" /> object that contains the event data.</param>
<returns>
<para>
<see langword="true" /> if the event has been canceled; otherwise,
<see langword="false" />. The default is <see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.Control.CreateControlCollection">
<summary>
<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>
</summary>
<returns>
<para>A <see langword="ControlCollection" /> object to contain the current server control's
child server controls.</para>
</returns>
</member>
<member name="M:System.Web.UI.Control.CreateChildControls">
<summary>
<para> Notifies server controls that use composition-based implementation to create any child
controls they contain in preparation for posting back or rendering.
</para>
</summary>
</member>
<member name="M:System.Web.UI.Control.ResolveUrl(System.String)">
<summary>
<para>Resolves a relative URL to an absolute URL based on the
value passed to the <see cref="P:System.Web.UI.Control.TemplateSourceDirectory" />
property. </para>
</summary>
<param name="relativeUrl">The relative URL associated with the <see langword="TemplateSourceDirectory" /> property.</param>
<returns>
<para>The absolute URL.</para>
</returns>
</member>
<member name="M:System.Web.UI.Control.FindControl(System.String)">
<summary>
<para>Searches the current naming container for a server control with
the specified <paramref name="id" /> parameter.</para>
</summary>
<param name="id">The identifier for the control to be found.</param>
<returns>
<para>The specified control, or <see langword="null" /> if the specified control
does not exist.</para>
</returns>
</member>
<member name="M:System.Web.UI.Control.HasControls">
<summary>
<para>Determines if the server control contains any child
controls.</para>
</summary>
<returns>
<para>
<see langword="true" /> if the control contains other
controls; otherwise, <see langword="false" /> .</para>
</returns>
</member>
<member name="M:System.Web.UI.Control.IsLiteralContent">
<summary>
<para> Determines
if the server control holds only literal content.</para>
</summary>
<returns>
<para>
<see langword="true" /> if the server control contains solely
literal content; otherwise <see langword="false" /> .</para>
</returns>
</member>
<member name="M:System.Web.UI.Control.TrackViewState">
<summary>
<para> Causes tracking of view-state changes to the server control so
they can be stored in the server control's <see cref="T:System.Web.UI.StateBag" /> object. This object is accessible through
the <see cref="P:System.Web.UI.Control.ViewState" qualify="true" />
property.</para>
</summary>
</member>
<member name="M:System.Web.UI.Control.EnsureChildControls">
<summary>
<para> Determines whether the server control contains child controls.
If it does not, it creates child
controls. </para>
</summary>
</member>
<member name="P:System.Web.UI.Control.ClientID">
<summary>
<para> Gets the server control identifier
generated by ASP.NET. </para>
</summary>
</member>
<member name="E:System.Web.UI.Control.Disposed">
<summary>
<para> Occurs when a server control is released from memory,
which is the last stage of the server control
lifecycle when an ASP.NET page is requested.</para>
</summary>
</member>
<member name="P:System.Web.UI.Control.Context">
<summary>
<para>Gets the <see cref="T:System.Web.HttpContext" /> object associated with the server control for the current Web request.</para>
</summary>
</member>
<member name="P:System.Web.UI.Control.Events">
<summary>
<para>Gets a list of event handler delegates for the control. This property is
read-only.</para>
</summary>
</member>
<member name="P:System.Web.UI.Control.ID">
<summary>
<para> Gets or
sets the programmatic identifier assigned to the server control.</para>
</summary>
</member>
<member name="P:System.Web.UI.Control.EnableViewState">
<summary>
<para> Gets or sets a value indicating whether the server control persists
its view state, and the view state of any child controls it contains, to
the requesting client.
</para>
</summary>
</member>
<member name="P:System.Web.UI.Control.NamingContainer">
<summary>
<para> Gets a reference to the server control's naming
container, which creates a unique namespace for differentiating between server
controls with the same <see cref="P:System.Web.UI.Control.ID" qualify="true" />
property value.</para>
</summary>
</member>
<member name="P:System.Web.UI.Control.Page">
<summary>
<para> Gets a reference to the <see cref="T:System.Web.UI.Page" /> instance that contains the
server control.</para>
</summary>
</member>
<member name="P:System.Web.UI.Control.Parent">
<summary>
<para> Gets a reference to the server control's parent control in the page control hierarchy.</para>
</summary>
</member>
<member name="P:System.Web.UI.Control.TemplateSourceDirectory">
<summary>
<para> Gets the virtual directory of the <see cref="T:System.Web.UI.Page" />
or <see cref="T:System.Web.UI.UserControl" /> that contains the current server control.</para>
</summary>
</member>
<member name="P:System.Web.UI.Control.Site">
<summary>
<para> Gets information about the Web site to which the server control belongs.</para>
</summary>
</member>
<member name="P:System.Web.UI.Control.Visible">
<summary>
<para> Gets or sets a value that indicates whether a server control is rendered as UI on
the page.
</para>
</summary>
</member>
<member name="P:System.Web.UI.Control.UniqueID">
<summary>
<para> Gets the unique, hierarchically-qualified identifier for the server control.</para>
</summary>
</member>
<member name="E:System.Web.UI.Control.DataBinding">
<summary>
<para> Occurs when the server control binds to a data source.</para>
</summary>
</member>
<member name="E:System.Web.UI.Control.Init">
<summary>
<para> Occurs when
the server control is initialized, which is the first step in the its
lifecycle.</para>
</summary>
</member>
<member name="E:System.Web.UI.Control.Load">
<summary>
<para>Occurs when the server control is loaded into the <see cref="T:System.Web.UI.Page" />
object.</para>
</summary>
</member>
<member name="E:System.Web.UI.Control.PreRender">
<summary>
<para>Occurs when the server control is about to render to its
containing <see cref="T:System.Web.UI.Page" /> object.</para>
</summary>
</member>
<member name="E:System.Web.UI.Control.Unload">
<summary>
<para> Occurs
when the server control is unloaded from memory. </para>
</summary>
</member>
<member name="P:System.Web.UI.Control.HasChildViewState">
<summary>
<para> Gets a value indicating whether the current server control's child controls have any
saved view-state settings.</para>
</summary>
</member>
<member name="P:System.Web.UI.Control.Controls">
<summary>
<para> Gets a <see cref="T:System.Web.UI.ControlCollection" /> object that represents the child controls for a specified server control in the
UI hierarchy.</para>
</summary>
</member>
<member name="P:System.Web.UI.Control.ViewState">
<summary>
<para>Gets a dictionary of state information that allows you to save and restore the view
state of a server control across multiple requests for the same page.</para>
</summary>
</member>
<member name="P:System.Web.UI.Control.ViewStateIgnoresCase">
<summary>
<para>Gets a value that indicates whether the <see cref="T:System.Web.UI.StateBag" /> object is case-insensitive.</para>
</summary>
</member>
<member name="P:System.Web.UI.Control.ChildControlsCreated">
<summary>
<para>Gets a value that indicates whether the server control's child controls have been created.</para>
</summary>
</member>
<member name="P:System.Web.UI.Control.IsTrackingViewState">
<summary>
<para>Gets a value that indicates whether ther server control
is saving changes to
its view state. </para>
</summary>
</member>
<member name="T:System.Web.UI.ControlBuilderAttribute">
<summary>
<para> Specifies a <see cref="T:System.Web.UI.ControlBuilder" /> class for building a custom control within
the ASP.NET parser. This class cannot be inherited.</para>
</summary>
</member>
<member name="P:System.Web.UI.ControlBuilderAttribute.BuilderType">
<summary>
<para> Gets the <see cref="T:System.Type" /> of the control associated with
the attribute. This property is read-only.</para>
</summary>
</member>
<member name="T:System.Web.UI.ControlCollection">
<summary>
<para> Provides a collection
container that enables ASP.NET server controls to maintain a
list of their child controls.</para>
</summary>
</member>
<member name="M:System.Web.UI.ControlCollection.#ctor(System.Web.UI.Control)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.ControlCollection" /> class for the parent
server control specified in the <paramref name="owner" /> parameter.</para>
</summary>
<param name="owner">The ASP.NET server control that the control collection is created for.</param>
</member>
<member name="M:System.Web.UI.ControlCollection.Add(System.Web.UI.Control)">
<summary>
<para>Adds the specified <see cref="T:System.Web.UI.Control" />
object to the collection.</para>
</summary>
<param name="child">The <see langword="Control" /> object to add to the collection.</param>
</member>
<member name="M:System.Web.UI.ControlCollection.AddAt(System.Int32,System.Web.UI.Control)">
<summary>
<para>Adds the specified <see cref="T:System.Web.UI.Control" /> object to the collection at the specified index location.</para>
</summary>
<param name=" index">The location in the array to add the child control.</param>
<param name="child">The <see langword="Control" /> object to add to the collection.</param>
</member>
<member name="M:System.Web.UI.ControlCollection.Clear">
<summary>
<para>Removes all controls from the current server
control's <see cref="T:System.Web.UI.ControlCollection" /> object.</para>
</summary>
</member>
<member name="M:System.Web.UI.ControlCollection.Contains(System.Web.UI.Control)">
<summary>
<para>Determines whether the specified server control is in the parent server control's <see cref="T:System.Web.UI.ControlCollection" /> object.</para>
</summary>
<param name="c">The server control to search for in the collection.</param>
<returns>
<para>
<see langword="true" /> if the specified server control exists
in the collection; otherwise, <see langword="false" /> .</para>
</returns>
</member>
<member name="M:System.Web.UI.ControlCollection.IndexOf(System.Web.UI.Control)">
<summary>
<para>Retrieves the index of a specified <see cref="T:System.Web.UI.Control" />
object in the collection.</para>
</summary>
<param name="value">The <see langword="Control" /> object for which the index is returned.</param>
<returns>
<para>The index of the specified server control. If the server
control is not currently a member of the collection, it returns
-1.</para>
</returns>
</member>
<member name="M:System.Web.UI.ControlCollection.GetEnumerator">
<summary>
<para>Retrieves an enumerator that can iterate through the
<see langword="ControlCollection" /> object.</para>
</summary>
<returns>
<para>The enumerator to iterate through the collection.</para>
</returns>
</member>
<member name="M:System.Web.UI.ControlCollection.CopyTo(System.Array,System.Int32)">
<summary>
<para> Copies the child controls stored in the <see cref="T:System.Web.UI.ControlCollection" />
object to an <see cref="T:System.Array" qualify="true" /> object, beginning at the specified index location in
the <see langword="Array" /> .</para>
</summary>
<param name="array">The <see langword="Array" /> to copy the child controls to.</param>
<param name=" index">The zero-based relative index in <paramref name="array" /> where copying begins.</param>
</member>
<member name="M:System.Web.UI.ControlCollection.RemoveAt(System.Int32)">
<summary>
<para>Removes a child control, at the specified index location, from the <see cref="T:System.Web.UI.ControlCollection" /> object.</para>
</summary>
<param name="index">The ordinal index of the server control to be removed from the collection.</param>
</member>
<member name="M:System.Web.UI.ControlCollection.Remove(System.Web.UI.Control)">
<summary>
<para> Removes the specified server control from the parent server control's <see cref="T:System.Web.UI.ControlCollection" />
object.</para>
</summary>
<param name="value">The server control to be removed.</param>
</member>
<member name="P:System.Web.UI.ControlCollection.Count">
<summary>
<para> Gets the number of server controls in the
<see langword="ControlCollection" /> object for the specified ASP.NET
server control.</para>
</summary>
</member>
<member name="P:System.Web.UI.ControlCollection.Owner">
<summary>
<para>Gets the ASP.NET server control to which the <see cref="T:System.Web.UI.ControlCollection" /> object belongs.</para>
</summary>
</member>
<member name="P:System.Web.UI.ControlCollection.SyncRoot">
<summary>
<para>Gets an object that can be used to synchronize access to the collection of controls.</para>
</summary>
</member>
<member name="P:System.Web.UI.ControlCollection.IsReadOnly">
<summary>
<para>Gets a value indicating whether the
<see langword="ControlCollection" /> object is read-only.</para>
</summary>
</member>
<member name="P:System.Web.UI.ControlCollection.IsSynchronized">
<summary>
<para> Gets a value indicating whether the
<see langword="ControlCollection" />
is synchronized.</para>
</summary>
</member>
<member name="P:System.Web.UI.ControlCollection.Item(System.Int32)">
<summary>
<para>Gets a reference to the server control at the specified index location in the
<see langword="ControlCollection" /> object.</para>
</summary>
<param name="index">The location of the server control in the <see langword="ControlCollection" /> .</param>
</member>
<member name="T:System.Web.UI.CssStyleCollection">
<summary>
<para> Contains the HTML cascading-style sheets (CSS) inline style attributes for a specified HTML server
control. This class cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.CssStyleCollection.Add(System.String,System.String)">
<summary>
<para>Adds a style item to the
<see langword="CssStyleCollection" /> object.</para>
</summary>
<param name="key">The index assigned to the new style in the collection.</param>
<param name=" value">The style to store in the collection.</param>
</member>
<member name="M:System.Web.UI.CssStyleCollection.Remove(System.String)">
<summary>
<para>Removes a style item from the <see langword="CssStyleCollection" /> object.</para>
</summary>
<param name="key">The index of the style item to remove.</param>
</member>
<member name="M:System.Web.UI.CssStyleCollection.Clear">
<summary>
<para>Removes all style items from the <see langword="CssStyleCollection" /> object.</para>
</summary>
</member>
<member name="P:System.Web.UI.CssStyleCollection.Item(System.String)">
<summary>
<para>Gets or sets a specified CSS value for the specified HTML server control.</para>
</summary>
<param name="key">The index to the CSS attribute.</param>
</member>
<member name="P:System.Web.UI.CssStyleCollection.Keys">
<summary>
<para>Gets a collection of keys to all the styles in the
<see langword="CssStyleCollection" /> object for a specific HTML server
control. </para>
</summary>
</member>
<member name="P:System.Web.UI.CssStyleCollection.Count">
<summary>
<para>Gets the number of items in the
<see langword="CssStyleCollection " />object.</para>
</summary>
</member>
<member name="T:System.Web.UI.DataBinder">
<summary>
<para> Provides support for RAD designers to
generate and parse <see topic="cpconDatabindingExpressionSyntax" /> . This class cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.DataBinder.Eval(System.Object,System.String)">
<summary>
<para> Evaluates data-binding expressions at runtime.</para>
</summary>
<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>
<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>
<returns>
<para> An <see cref="T:System.Object" /> that results from the evaluation
of the data-binding expression.</para>
</returns>
</member>
<member name="M:System.Web.UI.DataBinder.Eval(System.Object,System.String,System.String)">
<summary>
<para> Evaluates data-binding expressions at runtime and formats the result as text to be displayed
in the requesting browser.</para>
</summary>
<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>
<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>
<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>
<returns>
<para>A<see cref="T:System.String" />
that results from the evaluation
of the data-binding expression and conversion to a string type.</para>
</returns>
</member>
<member name="T:System.Web.UI.DataBinding">
<summary>
<para>Contains information about a single data-binding expression in an ASP.NET
server control, which allows rapid-application development (RAD) designers, such as Visual Studio .NET, to
create data-binding expressions at design time. This class cannot be inherited.
</para>
</summary>
</member>
<member name="M:System.Web.UI.DataBinding.#ctor(System.String,System.Type,System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.DataBinding" /> class.</para>
</summary>
<param name="propertyName">The property to bind data to.</param>
<param name=" propertyType">The .NET Framework type of the property to bind data to.</param>
<param name=" expression">The data-binding expression to be evaluated.</param>
</member>
<member name="M:System.Web.UI.DataBinding.GetHashCode">
<summary>
<para>Retrieves the hash code for an instance of the <see cref="T:System.Web.UI.DataBinding" />
object.</para>
</summary>
<returns>
<para>A 32-bit signed integer hash code.</para>
</returns>
</member>
<member name="M:System.Web.UI.DataBinding.Equals(System.Object)">
<summary>
<para>Determines whether the specified object is the same
instance of the <see cref="T:System.Web.UI.DataBinding" />
class as the current object.</para>
</summary>
<param name="obj">The object to compare against the current <see langword="DataBinding" /> object.</param>
<returns>
<para>
<see langword="true" />
if the data binding property names match; otherwise, <see langword="false" /> .</para>
</returns>
</member>
<member name="P:System.Web.UI.DataBinding.Expression">
<summary>
<para> Gets or sets the data-binding expression to be evaluated.</para>
</summary>
</member>
<member name="P:System.Web.UI.DataBinding.PropertyName">
<summary>
<para> Gets the name of the ASP.NET server control property
to bind data against.</para>
</summary>
</member>
<member name="P:System.Web.UI.DataBinding.PropertyType">
<summary>
<para> Gets the .NET Framework type of the data-bound ASP.NET server control
property.</para>
</summary>
</member>
<member name="T:System.Web.UI.DataBindingCollection">
<summary>
<para> Provides a collection of <see cref="T:System.Web.UI.DataBinding" /> objects for an ASP.NET server control. This class cannot be
inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.DataBindingCollection.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.DataBindingCollection" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.DataBindingCollection.Add(System.Web.UI.DataBinding)">
<summary>
<para>Adds the specified <see cref="T:System.Web.UI.DataBinding" />
object to the <see cref="T:System.Web.UI.DataBindingCollection" /> .</para>
</summary>
<param name="binding">The data binding object to add.</param>
</member>
<member name="M:System.Web.UI.DataBindingCollection.Clear">
<summary>
<para>Removes all <see cref="T:System.Web.UI.DataBinding" /> objects from the <see cref="T:System.Web.UI.DataBindingCollection" /> .</para>
</summary>
</member>
<member name="M:System.Web.UI.DataBindingCollection.CopyTo(System.Array,System.Int32)">
<summary>
<para>Copies the <see langword="DataBindingCollection " />values to a
one-dimensional <see cref="T:System.Array" />, beginning at the
<see langword="Array" /> object's specified index.</para>
</summary>
<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>
<param name=" index">The index in the array, specified by the <paramref name="array" /> parameter, where copying begins.</param>
</member>
<member name="M:System.Web.UI.DataBindingCollection.GetEnumerator">
<summary>
<para> Returns an enumerator to iterate through the <see cref="T:System.Web.UI.DataBindingCollection" /> object.</para>
</summary>
<returns>
<para>An <see cref="T:System.Collections.IEnumerator" /> that contains the collection's members.</para>
</returns>
</member>
<member name="M:System.Web.UI.DataBindingCollection.Remove(System.String)">
<summary>
<para>Removes the <see cref="T:System.Web.UI.DataBinding" /> object associated with the specified
property name from the <see cref="T:System.Web.UI.DataBindingCollection" /> and adds it
to the <see cref="P:System.Web.UI.DataBindingCollection.RemovedBindings" />
collection.</para>
</summary>
<param name="propertyName">The property name associated with the <see cref="T:System.Web.UI.DataBinding" /> object to be removed.</param>
</member>
<member name="M:System.Web.UI.DataBindingCollection.Remove(System.Web.UI.DataBinding)">
<summary>
<para>Removes the specified <see cref="T:System.Web.UI.DataBinding" /> object from the
<see cref="T:System.Web.UI.DataBindingCollection" /> and adds it to
the <see cref="P:System.Web.UI.DataBindingCollection.RemovedBindings" /> collection.</para>
</summary>
<param name="binding">
<para>The <see cref="T:System.Web.UI.DataBinding" /> object to be removed from the <see cref="T:System.Web.UI.DataBindingCollection" />.</para>
</param>
</member>
<member name="M:System.Web.UI.DataBindingCollection.Remove(System.String,System.Boolean)">
<summary>
<para>Removes the <see cref="T:System.Web.UI.DataBinding" /> object, associated with the
specified property name, from the <see cref="T:System.Web.UI.DataBindingCollection" /> and controls
whether to add the binding to the <see cref="P:System.Web.UI.DataBindingCollection.RemovedBindings" /> list.</para>
</summary>
<param name="propertyName">The property associated with the <see langword="DataBinding" /> object to be removed.</param>
<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>
</member>
<member name="P:System.Web.UI.DataBindingCollection.Count">
<summary>
<para>Gets the number of <see cref="T:System.Web.UI.DataBinding" /> objects in the <see cref="T:System.Web.UI.DataBindingCollection" /> object.</para>
</summary>
</member>
<member name="P:System.Web.UI.DataBindingCollection.IsReadOnly">
<summary>
<para>Gets a value indicating whether the <see cref="T:System.Web.UI.DataBindingCollection" /> is read-only.</para>
</summary>
</member>
<member name="P:System.Web.UI.DataBindingCollection.IsSynchronized">
<summary>
<para>Gets a value indicating whether the <see cref="T:System.Web.UI.DataBindingCollection" /> is synchronized (thread-safe).</para>
</summary>
</member>
<member name="P:System.Web.UI.DataBindingCollection.RemovedBindings">
<summary>
<para>Gets an array of the names of the <see cref="T:System.Web.UI.DataBinding" /> objects removed from the collection.</para>
</summary>
</member>
<member name="P:System.Web.UI.DataBindingCollection.SyncRoot">
<summary>
<para>Gets an object that can be used to synchronize access to
the <see cref="T:System.Web.UI.DataBindingCollection" /> .</para>
</summary>
</member>
<member name="P:System.Web.UI.DataBindingCollection.Item(System.String)">
<summary>
<para>Gets the <see cref="T:System.Web.UI.DataBinding" /> object with the specified property name.</para>
</summary>
<param name="propertyName">The name of the property to be found.</param>
</member>
<member name="T:System.Web.UI.DataBindingHandlerAttribute">
<summary>
<para>Specifies a design-time class that performs data binding of controls within a designer.
This class cannot be inherited.</para>
</summary>
</member>
<member name="F:System.Web.UI.DataBindingHandlerAttribute.Default">
<summary>
Defines the default attribute for the <see cref="T:System.Web.UI.DataBindingHandlerAttribute" /> class.
</summary>
</member>
<member name="M:System.Web.UI.DataBindingHandlerAttribute.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.DataBindingHandlerAttribute" /> class using no parameters. This is the default
constructor.</para>
</summary>
</member>
<member name="M:System.Web.UI.DataBindingHandlerAttribute.#ctor(System.Type)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.DataBindingHandlerAttribute" /> class of the
specified <see cref="T:System.Type" />
.</para>
</summary>
<param name="type">The <see cref="T:System.Type" /> for the data-binding handler.</param>
</member>
<member name="M:System.Web.UI.DataBindingHandlerAttribute.#ctor(System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.DataBindingHandlerAttribute" /> class with the
specified type name.</para>
</summary>
<param name="typeName">The fully-qualified name of the data-binding handler <see cref="T:System.Type" /> .</param>
</member>
<member name="P:System.Web.UI.DataBindingHandlerAttribute.HandlerTypeName">
<summary>
<para>Gets the type name of the data binding handler. If the type name is
<see langword="null" />, this property returns an empty string.</para>
</summary>
</member>
<member name="T:System.Web.UI.DataBoundLiteralControl">
<summary>
<para>Creates a control for HTML text to allow the handling of &lt;%# … %&gt; data-binding expressions that
are processed by the server. It persists the value of its <see cref="P:System.Web.UI.DataBoundLiteralControl.Text" />
property to view state. This class cannot be inherited. </para>
</summary>
</member>
<member name="P:System.Web.UI.DataBoundLiteralControl.Text">
<summary>
<para> Gets the text content of the <see cref="T:System.Web.UI.DataBoundLiteralControl" /> object. This is
a read-only property.</para>
</summary>
</member>
<member name="M:System.Web.UI.DesignTimeParseData.#ctor(System.ComponentModel.Design.IDesignerHost,System.String)">
</member>
<member name="P:System.Web.UI.DesignTimeParseData.DataBindingHandler">
</member>
<member name="P:System.Web.UI.DesignTimeParseData.DesignerHost">
</member>
<member name="P:System.Web.UI.DesignTimeParseData.DocumentUrl">
</member>
<member name="P:System.Web.UI.DesignTimeParseData.ParseText">
</member>
<member name="M:System.Web.UI.DesignTimeTemplateParser.ParseControl(System.Web.UI.DesignTimeParseData)">
</member>
<member name="M:System.Web.UI.DesignTimeTemplateParser.ParseTemplate(System.Web.UI.DesignTimeParseData)">
</member>
<member name="T:System.Web.UI.ConstructorNeedsTagAttribute">
<summary>
<para> Specifies that a server control needs a
tag name in its constructor.</para>
</summary>
</member>
<member name="M:System.Web.UI.ConstructorNeedsTagAttribute.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.ConstructorNeedsTagAttribute" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.ConstructorNeedsTagAttribute.#ctor(System.Boolean)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.ConstructorNeedsTagAttribute" /> class.</para>
</summary>
<param name="needsTag">
<see langword="true" /> to add a tag to a control; otherwise, <see langword="false" />.</param>
</member>
<member name="P:System.Web.UI.ConstructorNeedsTagAttribute.NeedsTag">
<summary>
<para>Indicates whether a control needs a tag name in its contstructor. This property is read-only.</para>
</summary>
</member>
<member name="T:System.Web.UI.EmptyControlCollection">
<summary>
<para>Provides standard support for a <see cref="T:System.Web.UI.ControlCollection" /> that is
always empty.</para>
</summary>
</member>
<member name="M:System.Web.UI.EmptyControlCollection.#ctor(System.Web.UI.Control)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.EmptyControlCollection" /> class.</para>
</summary>
<param name="owner">The <see cref="T:System.Web.UI.Control" /> which owns this collection as its collection of child controls</param>
</member>
<member name="M:System.Web.UI.EmptyControlCollection.Add(System.Web.UI.Control)">
<summary>
<para>Denies the addition of the specified <see cref="T:System.Web.UI.Control" /> to
the collection.</para>
</summary>
<param name="child">The <see cref="T:System.Web.UI.Control" /> to be added. This parameter is always ignored.</param>
</member>
<member name="M:System.Web.UI.EmptyControlCollection.AddAt(System.Int32,System.Web.UI.Control)">
<summary>
<para>Denies the addition of the specified <see cref="T:System.Web.UI.Control" /> to
the collection, at the specified index position.</para>
</summary>
<param name="index">The index at which to add the <see cref="T:System.Web.UI.Control" />. This parameter is always ignored.</param>
<param name=" child">The <see cref="T:System.Web.UI.Control" /> to be added. This parameter is always ignored.</param>
</member>
<member name="T:System.Web.UI.HtmlControls.HtmlForm">
<summary>
<para> Provides programmatic access to the HTML
<see langword="&lt;form&gt;" />
element on the server.</para>
</summary>
</member>
<member name="T:System.Web.UI.HtmlControls.HtmlContainerControl">
<summary>
<para> Defines the methods,
properties, and events
available to all HTML server controls that must have a
closing tag.</para>
</summary>
</member>
<member name="T:System.Web.UI.HtmlControls.HtmlControl">
<summary>
<para> Defines the methods, properties, and events
common to all HTML server controls in the Web Forms page framework.</para>
</summary>
</member>
<member name="T:System.Web.UI.IAttributeAccessor">
<summary>
<para>
Defines methods used
by ASP.NET server controls to provide programmatic access to any
attribute declared in the opening tag of a server control.</para>
</summary>
</member>
<member name="M:System.Web.UI.IAttributeAccessor.GetAttribute(System.String)">
<summary>
<para>When implemented by a class, retrieves the specified attribute property from the server control.</para>
</summary>
<param name="key">A <see cref="T:System.String" /> object that represents the name of the server control attribute. </param>
<returns>
<para>The value of the specified attribute.</para>
</returns>
</member>
<member name="M:System.Web.UI.IAttributeAccessor.SetAttribute(System.String,System.String)">
<summary>
<para> When implemented by a class, designates an
attribute and its value to assign to the ASP.NET server control.</para>
</summary>
<param name="key">The name of the attribute to be set.</param>
<param name=" value">The value assigned to the attribute.</param>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlControl.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlControl" /> class using default
values.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlControl.#ctor(System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlControl" /> class using the
specified tag.</para>
</summary>
<param name="tag">A string that specifies the tag name of the control. </param>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlControl.Attributes">
<summary>
<para>Gets a collection of all attribute name and value pairs
expressed on a server control tag within the .aspx file.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlControl.Style">
<summary>
<para> Gets a
collection of all cascading style sheet
(CSS) properties
applied to a specified HTML server control in the .aspx
file.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlControl.TagName">
<summary>
<para> Gets the element name of a tag that contains a
<see langword="runat=server " />attribute and
value pair.
</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlControl.Disabled">
<summary>
<para> Gets or sets
a value indicating whether the HTML server
control is disabled.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlContainerControl.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlContainerControl" /> class using
default values.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlContainerControl.#ctor(System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlContainerControl" /> class
using the specified
tag name.</para>
</summary>
<param name="tag">A string that specifies the tag name of the control.</param>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlContainerControl.InnerHtml">
<summary>
<para> Gets or sets the
content found between the opening and closing tags of the specified HTML server control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlContainerControl.InnerText">
<summary>
<para> Gets or sets the text between the opening and closing tags
of the specified HTML server control.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlForm.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlForm" />class.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlForm.Enctype">
<summary>
<para> Gets or
sets the encoding type browsers
use when posting the form's data to the server.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlForm.Method">
<summary>
<para>
Gets or sets a value that indicates how a browser posts
form data to the server for processing.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlForm.Name">
<summary>
<para>Gets the identifier name for the <see cref="T:System.Web.UI.HtmlControls.HtmlForm" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlForm.Target">
<summary>
<para> Gets or sets the frame or window to render the
results of information posted to the server.</para>
</summary>
</member>
<member name="M:System.Web.UI.ITagNameToTypeMapper.GetControlType(System.String,System.Collections.IDictionary)">
<summary>
<para> Retrieves the .NET Framework type that processes
the control declared in the .aspx file.</para>
</summary>
<param name="tagName">The element name of the control sent from the .aspx file.</param>
<param name=" attribs">A collection of the attributes on the control in the .aspx file.</param>
<returns>
<para>The .NET Framework type that is assigned to the control.</para>
</returns>
</member>
<member name="T:System.Web.UI.TagPrefixAttribute">
<summary>
<para> Defines the tag prefix used in a Web page to identify custom controls. This class cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.TagPrefixAttribute.#ctor(System.String,System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.TagPrefixAttribute" />
class.</para>
</summary>
<param name="namespaceName">A string that indentifies the custom control namespace.</param>
<param name=" tagPrefix">A string that indentifies the custom control prefix.</param>
</member>
<member name="P:System.Web.UI.TagPrefixAttribute.NamespaceName">
<summary>
<para> Gets the namespace prefix for the specified control.</para>
</summary>
</member>
<member name="P:System.Web.UI.TagPrefixAttribute.TagPrefix">
<summary>
<para>Gets the tag prefix for the specified control.</para>
</summary>
</member>
<member name="T:System.Web.UI.HtmlTextWriter">
<summary>
<para>Writes a sequential series of HTML-specific characters
and text on a Web Forms page. This class
provides formatting capabilities that ASP.NET server controls use when rendering
HTML content to clients.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriter.TagLeftChar">
<summary>
<para> Represents the opening angle-bracket
(<see langword="&lt;" /> ) of an HTML tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriter.TagRightChar">
<summary>
<para> Represents the closing angle-bracket
(<see langword="&gt;" /> ) of an HTML tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriter.SelfClosingChars">
<summary>
<para>Represents the self-closing back slash
(<see langword="/" /> ) character of
an HTML tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriter.SelfClosingTagEnd">
<summary>
<para>Represents the closing back slash and right angle
bracket (<see langword="/&gt;" />
) of a self-closing HTML element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriter.EndTagLeftChars">
<summary>
<para>Represents the left angle bracket and back slash
(<see langword="&lt;/" />
) of the closing tag of an HTML element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriter.DoubleQuoteChar">
<summary>
<para>Represents the double-quote (<see langword="&quot;" /> ) character.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriter.SingleQuoteChar">
<summary>
<para>Represents a single quote (') character.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriter.SpaceChar">
<summary>
<para>Represents a space character.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriter.EqualsChar">
<summary>
<para>Represents the equal sign (<see langword="=" /> ) character.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriter.SlashChar">
<summary>
<para> Represents the backslash (<see langword="/" /> ) character.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriter.EqualsDoubleQuoteString">
<summary>
<para> Represents an equals sign and a double
quote character together in a <see cref="T:System.String" /> .</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriter.SemicolonChar">
<summary>
<para>Represents the semicolon (<see langword=";" /> ) character.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriter.StyleEqualsChar">
<summary>
<para>Represents the colon character (<see langword=":" />) used
to set style attributes equal to values in the opening tag of an HTML element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriter.DefaultTabString">
<summary>
<para> Represents a single tab character.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.Close">
<summary>
<para>Closes the current <see cref="T:System.Web.UI.HtmlTextWriter" /> and releases any system resources associated with it.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.Flush">
<summary>
<para>Clears all buffers for the current <see cref="T:System.Web.UI.HtmlTextWriter" /> and causes any buffered data to be
written to the text stream.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.OutputTabs">
<summary>
<para> Writes a series of blank characters that represent
the tab spacing for a line of HTML characters.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.Write(System.String)">
<summary>
<para>Writes the specified string to the text stream, along with any specified tab spacing.</para>
</summary>
<param name="s">A <see cref="T:System.String" /> to be written to the text stream.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.Write(System.Boolean)">
<summary>
<para>Writes the text representation of a
<see langword="Boolean" /> value to the text stream, along with any specified tab spacing.</para>
</summary>
<param name="value">The <see langword="Boolean" /> value to be written to the text stream.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.Write(System.Char)">
<summary>
<para>Writes a unicode character to the text stream, along with any specified tab spacing.</para>
</summary>
<param name="value">The unicode character to write to the text stream.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.Write(System.Char[])">
<summary>
<para> Writes a character array to the text stream, along with any specified tab spacing.</para>
</summary>
<param name="buffer">The character array to write to the text stream.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.Write(System.Char[],System.Int32,System.Int32)">
<summary>
<para>Writes a subarray of characters to the text stream, along with any specified tab spacing.</para>
</summary>
<param name="buffer">The array of characters from which the subarray is written to the text stream.</param>
<param name=" index">The index location in the array where writing begins.</param>
<param name=" count">The number of characters to be written to the text stream.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.Write(System.Double)">
<summary>
<para>Writes the text representation of a double-precision floating point number to the HTML text stream, along with any specified tab spacing.</para>
</summary>
<param name="value">The double-precision floating point number to write to the text stream.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.Write(System.Single)">
<summary>
<para>Writes the text representation of a single-precision floating point
number to the HTML text stream, along with any specified tab spacing.</para>
</summary>
<param name="value">The single-precision floating point number to write to the text stream.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.Write(System.Int32)">
<summary>
<para>Writes the text representation of a 32-byte signed integer to the text stream, along with any specified tab spacing.</para>
</summary>
<param name="value">The 32-byte signed integer to write to the text stream.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.Write(System.Int64)">
<summary>
<para>Writes the text representation of an 64-byte signed integer to the text stream, along with
any specified tab spacing.</para>
</summary>
<param name="value">The 64-byte signed integer to write to the text stream.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.Write(System.Object)">
<summary>
<para>Writes the text representation of an <see cref="T:System.Object" /> to the text stream, along with any specified tab spacing.</para>
</summary>
<param name="value">The <see langword="Object" /> to write to the text stream.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.Write(System.String,System.Object)">
<summary>
<para>Writes a tab string and a formatted string to
the HTML text stream, using the same semantics as <see cref="M:System.String.Format(System.String,System.Object)" qualify="true" /> .</para>
</summary>
<param name="format">The formatting string.</param>
<param name=" arg0">An object to write into the formatted string.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.Write(System.String,System.Object,System.Object)">
<summary>
<para>Writes a tab string and a formatted string to the HTML
text stream, using the same semantics as <see cref="M:System.String.Format(System.String,System.Object)" qualify="true" /> .</para>
</summary>
<param name="format">
<para>The formatting string.</para>
</param>
<param name=" arg0">An object to write into the formatted string.</param>
<param name=" arg1">An object to write into the formatted string.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.Write(System.String,System.Object[])">
<summary>
<para>Writes a tab string and a formatted string to the HTML
text stream, using the same semantics as <see cref="M:System.String.Format(System.String,System.Object)" qualify="true" /> .</para>
</summary>
<param name="format">The formatting string.</param>
<param name=" arg">The object array to write into the formatted string.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.WriteLineNoTabs(System.String)">
<summary>
<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>
</summary>
<param name="s">The <see langword="String" /> to write to the HTML text stream.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.String)">
<summary>
<para>Writes a tab string and a <see cref="T:System.String" />, followed by a line terminator, to an HTML text stream.</para>
</summary>
<param name="s">The <see langword="String" /> to write to the text stream.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.WriteLine">
<summary>
<para>Writes a line terminator to the HTML text stream.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.Boolean)">
<summary>
<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>
</summary>
<param name="value">The <see langword="Boolean" /> to be written to the text stream.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.Char)">
<summary>
<para>Writes a tab string and a character, followed by a line terminator, to the
HTML text stream.</para>
</summary>
<param name="value">The character to be written to the text stream.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.Char[])">
<summary>
<para>Writes a tab string and a character array, followed by a line
terminator, to the HTML text stream.</para>
</summary>
<param name="buffer">The character array to be written to the text stream.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.Char[],System.Int32,System.Int32)">
<summary>
<para>Writes a tab string and a subarray of characters, followed by a line
terminator, to the HTML text stream.</para>
</summary>
<param name="buffer">The character array from which to write to the text stream.</param>
<param name=" index">The location in the character array where writing begins.</param>
<param name=" count">The number of characters in the array to write to the text stream.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.Double)">
<summary>
<para> Writes a tab string and the
text representation of an 8-byte floating-point value, followed by a line terminator,
to the HTML text stream.</para>
</summary>
<param name="value">The 8-byte floating-point value to write to the text stream.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.Single)">
<summary>
<para>Writes a tab string and the text representation of a
single-precision floating point number, followed by a line terminator, to the HTML text stream.</para>
</summary>
<param name="value">The single-precision floating point number to write to the text stream.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.Int32)">
<summary>
<para>Writes a tab string and the text representation of a
32-byte signed integer, followed by a line terminator, to the HTML text stream.</para>
</summary>
<param name="value">The 32-byte signed integer to write to the text stream.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.Int64)">
<summary>
<para>Writes a tab string and the text representation of a
64-byte signed integer, followed by a line terminator, to the HTML text stream.</para>
</summary>
<param name="value">The 64-byte signed integer to write to the text stream.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.Object)">
<summary>
<para>Writes any tab strings and the text representation of an
<see cref="T:System.Object" />, followed
by a line terminator, to the HTML text stream.</para>
</summary>
<param name="value">The <see langword="Object" /> to write to the text stream.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.String,System.Object)">
<summary>
<para>Writes any tab strings and a formatted string, followed
by a line terminator, to the HTML text stream. The method uses the same
semantics as <see cref="M:System.String.Format(System.String,System.Object)" qualify="true" />
.</para>
</summary>
<param name="format">The formatting string.</param>
<param name=" arg0">The object to write into the formatted string.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.String,System.Object,System.Object)">
<summary>
<para>Writes any tab strings and a formatted string, followed
by a line terminator, to the HTML text stream. The method uses the same
semantics as <see cref="M:System.String.Format(System.String,System.Object)" qualify="true" /> .</para>
</summary>
<param name="format">The formatting string.</param>
<param name=" arg0">An object to write into the formatted string.</param>
<param name=" arg1">An object to write into the formatted string.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.String,System.Object[])">
<summary>
<para>Writes any tab strings and a formatted string, followed
by a line terminator, to the HTML text stream. The method uses the same
semantics as <see cref="M:System.String.Format(System.String,System.Object)" qualify="true" /> .</para>
</summary>
<param name="format">The formatting string.</param>
<param name=" arg">The array of objects to write into the formatted string.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.WriteLine(System.UInt32)">
<summary>
<para>Writes any tab strings and the text representation of a
4-byte unsigned integer, followed by a line terminator, to the HTML text stream.</para>
</summary>
<param name="value">The 4-byte unsigned integer to write.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.RegisterTag(System.String,System.Web.UI.HtmlTextWriterTag)">
<summary>
<para>Registers HTML tags, whether literals or
dynamically generated, from the source file so that they can be properly
rendered to the requesting client.</para>
</summary>
<param name="name">A <see cref="T:System.String" /> that contains the HTML tag.</param>
<param name=" key">An <see cref="T:System.Web.UI.HtmlTextWriterTag" /> value that specifies which element is to be rendered.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.RegisterAttribute(System.String,System.Web.UI.HtmlTextWriterAttribute)">
<summary>
<para>Registers HTML attributes, whether literals or
dynamically generated, from the source file so that they can be properly
rendered to the requesting client.</para>
</summary>
<param name="name">The HTML attribute to be registered.</param>
<param name=" key">An <see cref="T:System.Web.UI.HtmlTextWriterAttribute" /> value that corresponds with the attribute name. </param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.RegisterStyle(System.String,System.Web.UI.HtmlTextWriterStyle)">
<summary>
<para>Registers HTML style properties, whether literals or dynamically
generated, from the source file so that they can be properly rendered to the
requesting client.</para>
</summary>
<param name="name">The <see cref="T:System.String" /> passed from the source file specifying the style name.</param>
<param name=" key">The <see cref="T:System.Web.UI.HtmlTextWriterStyle" /> value that corresponds with the specified style.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.#ctor(System.IO.TextWriter)">
<summary>
<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" />
constant when indentation of a line is necessary.</para>
</summary>
<param name="writer">The <see cref="T:System.IO.TextWriter" /> object to render the HMTL content.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.#ctor(System.IO.TextWriter,System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlTextWriter" /> class with the line indentation as specified in
the <paramref name="tabString" />
parameter.</para>
</summary>
<param name="writer">The <see cref="T:System.IO.TextWriter" /> object to render the HMTL content.</param>
<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>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.AddAttribute(System.String,System.String)">
<summary>
<para>Adds the specified HTML attribute and value to the
<see langword="HtmlTextWriter" /> output stream.</para>
</summary>
<param name="name">The HTML attribute to add.</param>
<param name=" value">The value to assign to the HTML attribute.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.AddAttribute(System.String,System.String,System.Boolean)">
<summary>
<para>Adds the specified HTML attribute and value to the
<see langword="HtmlTextWriter" /> output stream with a value
that indicates if the attribute and value should be HTML encoded.</para>
</summary>
<param name="name">The HTML attribute to add.</param>
<param name=" value">The value to assign to the HTML attribute.</param>
<param name=" fEndode">
<see langword="true" /> to HTML encode the attribute and its value; otherwise, <see langword="false" />.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.AddAttribute(System.Web.UI.HtmlTextWriterAttribute,System.String)">
<summary>
<para>Adds the HTML attribute, associated with the
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>
</summary>
<param name="key">An <see langword="HtmlTextWriterAttribute" /> value that represents the HTML attribute.</param>
<param name=" value">The value to assign to the HTML attribute.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.AddAttribute(System.Web.UI.HtmlTextWriterAttribute,System.String,System.Boolean)">
<summary>
<para> Adds the HTML attribute associated with
the <see cref="T:System.Web.UI.HtmlTextWriterAttribute" /> value specified by the
<paramref name="key" /> parameter to the <see cref="T:System.Web.UI.HtmlTextWriter" />
output stream. This method also adds the specified attribute value, and uses the
value passed to the <paramref name="fEncode" /> parameter to determine whether the
attribute and value should be
HTML encoded.</para>
</summary>
<param name="key">An <see langword="HtmlTextWriterAttribute" /> value that represents the HTML attribute.</param>
<param name=" value">The value to assign to the HTML attribute.</param>
<param name=" fEncode">
<see langword="true" /> to HTML encode the attribute and its value; otherwise, <see langword="false" />.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.AddAttribute(System.String,System.String,System.Web.UI.HtmlTextWriterAttribute)">
<summary>
<para>Adds the specified HTML attribute and its value, along
with an <see cref="T:System.Web.UI.HtmlTextWriterAttribute" /> value, to the
<see langword="HtmlTextWriter" /> output stream.</para>
</summary>
<param name="name">The HTML attribute to add.</param>
<param name=" value">The value to assign to the HTML attribute.</param>
<param name=" key">An <see langword="HtmlTextWriterAttribute" /> value that represents the HTML attribute.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.AddStyleAttribute(System.String,System.String)">
<summary>
<para>Adds the specified HTML style attribute and its value to
the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
</summary>
<param name="name">The HTML style attribute to add.</param>
<param name=" value">The value assigned to the HTML style attribute.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.AddStyleAttribute(System.Web.UI.HtmlTextWriterStyle,System.String)">
<summary>
<para>Adds the HTML style attribute associated with
the <see cref="T:System.Web.UI.HtmlTextWriterStyle" /> value, specified by the <paramref name="key" /> parameter, and
the attribute's value to the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
</summary>
<param name="key">An <see langword="HtmlTextWriterStyle" /> value that represents the HTML style attribute to add.</param>
<param name=" value">The value to assign to the HTML attribute.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.AddStyleAttribute(System.String,System.String,System.Web.UI.HtmlTextWriterStyle)">
<summary>
<para>Adds the specified HTML style attribute, along with its
value, to the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
</summary>
<param name="name">The HTML style attribute to add to the output stream.</param>
<param name=" value">The value to assign to the HTML attribute.</param>
<param name=" key">An <see cref="T:System.Web.UI.HtmlTextWriterStyle" /> value that represents the HTML style attribute to add.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.EncodeAttributeValue(System.String,System.Boolean)">
<summary>
<para>HTML encodes the specified HTML attribute's value.</para>
</summary>
<param name="value">The attribute value to encode.</param>
<param name=" fEncode">
<see langword="true" /> to HTML encode the attribute value; otherwise, <see langword="false" />.</param>
<returns>
<para>The HTML-encoded attribute value, <see langword="null" /> if
the <paramref name="value" /> parameter is empty, or the unencoded attribute value if
<paramref name="fEncode" /> is <see langword="false" /> .</para>
</returns>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.EncodeAttributeValue(System.Web.UI.HtmlTextWriterAttribute,System.String)">
<summary>
<para>HTML encodes the specified HTML attribute's value.</para>
</summary>
<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>
<param name=" value">The value assigned to the specified HTML attribute.</param>
<returns>
<para>The encoded attribute value.</para>
</returns>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.EncodeUrl(System.String)">
<summary>
<para>Performs minimal URL encoding by converting spaces passed
in the <paramref name="url" /> parameter to <see langword="%20" /> .</para>
</summary>
<param name="url">The URL to be encoded.</param>
<returns>
<para> The encoded URL.</para>
</returns>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.GetAttributeKey(System.String)">
<summary>
<para>Obtains the corresponding <see cref="T:System.Web.UI.HtmlTextWriterAttribute" /> enumeration value for the specified HTML attribute.</para>
</summary>
<param name="attrName">The HTML attribute to obtain the <see langword="HtmlTextWriterAttribute" /> value for.</param>
<returns>
<para>The <see langword="HtmlTextWriterAttribute" /> enumeration value for the
specified HTML attribute, or <see langword="unkown" />
if the attribute is
not a member of the enumeration.</para>
</returns>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.GetAttributeName(System.Web.UI.HtmlTextWriterAttribute)">
<summary>
<para>Obtains the name of the HTML attribute associated with
the specified <see cref="T:System.Web.UI.HtmlTextWriterAttribute" /> value.</para>
</summary>
<param name="attrKey">The <see langword="HtmlTextWriterAttribute" /> to obtain the HTML attribute name for.</param>
<returns>
<para>The name of the HTML attribute.</para>
</returns>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.GetStyleKey(System.String)">
<summary>
<para>Obtains the <see cref="T:System.Web.UI.HtmlTextWriterStyle" /> enumeration value for the specified HTML style.</para>
</summary>
<param name="styleName">The HTML style attribute to obtain the <see langword="HtmlTextWriterStyle" /> value for.</param>
<returns>
<para>The <see langword="HtmlTextWriterStyle" /> enumeration value, or
<see langword="HtmlTextWriterStyle.Unknown" /> if the HTML style is not a member of the enumeration.</para>
</returns>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.GetStyleName(System.Web.UI.HtmlTextWriterStyle)">
<summary>
<para>Obtains the HTML style attribute associated with the
specified <see cref="T:System.Web.UI.HtmlTextWriterStyle" /> enumeration value.</para>
</summary>
<param name="styleKey">The <see langword="HtmlTextWriterStyle" /> value to obtain the HTML style attribute for.</param>
<returns>
<para>The HTML style attribute.</para>
</returns>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.GetTagKey(System.String)">
<summary>
<para>Obtains the <see cref="T:System.Web.UI.HtmlTextWriterTag" />
enumeration value associated with the specified HTML element.</para>
</summary>
<param name="tagName">The HTML element to obtain the <see langword="HtmlTextWriterTag" /> value for.</param>
<returns>
<para>The <see langword="HtmlTextWriterTag" /> value; if the
<paramref name="tagName" /> parameter is not associated with a specific
<see langword="HtmlTextWriterTag" /> value,
<see langword="HtmlTextWriterTag.Unknown" />is returned.</para>
</returns>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.GetTagName(System.Web.UI.HtmlTextWriterTag)">
<summary>
<para>Obtains the HTML element associated with the
specified <see cref="T:System.Web.UI.HtmlTextWriterTag" /> enumeration value.</para>
</summary>
<param name="tagKey">The <see langword="HtmlTextWriterTag" /> value to obtain the HTML element for.</param>
<returns>
<para>The HTML element.</para>
</returns>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.IsAttributeDefined(System.Web.UI.HtmlTextWriterAttribute)">
<summary>
<para>Determines whether the specified HTML attribute is
rendered during the next call to the <see cref="M:System.Web.UI.HtmlTextWriter.RenderBeginTag(System.String)" /> method.</para>
</summary>
<param name="key">The <see cref="T:System.Web.UI.HtmlTextWriterAttribute" /> associated with the HTML attribute.</param>
<returns>
<para>
<see langword="true" /> if the HTML
attribute is rendered during the next call to the
<see langword="RenderBeginTag" /> method;
otherwise, <see langword="false" /> .</para>
</returns>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.IsAttributeDefined(System.Web.UI.HtmlTextWriterAttribute,System.String@)">
<summary>
<para>Determines whether the specified HTML attribute and its value are
rendered during the next call to the <see cref="M:System.Web.UI.HtmlTextWriter.RenderBeginTag(System.String)" /> method.</para>
</summary>
<param name="key">
<para>The <see cref="T:System.Web.UI.HtmlTextWriterAttribute" /> associated with the HTML attribute.</para>
</param>
<param name=" value">The value assigned to the HTML attribute.</param>
<returns>
<para>
<see langword="true " />if the HTML attribute is rendered
during the next call to the <see langword="RenderBeginTag " />
method; otherwise, <see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.IsStyleAttributeDefined(System.Web.UI.HtmlTextWriterStyle)">
<summary>
<para>Determines whether the specified HTML style attribute is
rendered during the next call to the <see cref="M:System.Web.UI.HtmlTextWriter.RenderBeginTag(System.String)" /> method.</para>
</summary>
<param name="key">The <see cref="T:System.Web.UI.HtmlTextWriterStyle" /> value associated with the HTML attribute. </param>
<returns>
<para>
<see langword="true" /> if the HTML
attribute is rendered during the next call to the
<see langword="RenderBeginTag" />
method; otherwise,
<see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.IsStyleAttributeDefined(System.Web.UI.HtmlTextWriterStyle,System.String@)">
<summary>
<para>Determines whether the specified HTML style attribute
and its value are rendered during the next call to the <see cref="M:System.Web.UI.HtmlTextWriter.RenderBeginTag(System.String)" /> method.</para>
</summary>
<param name="key">The <see cref="T:System.Web.UI.HtmlTextWriterStyle" /> value associated with the HTML attribute. </param>
<param name=" value">The value assigned to the HTML style attribute.</param>
<returns>
<para>
<see langword="true" /> if the HTML
attribute and its value are rendered during the next call to the
<see langword="RenderBeginTag" />
method; otherwise,
<see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.OnAttributeRender(System.String,System.String,System.Web.UI.HtmlTextWriterAttribute)">
<summary>
<para>Determines whether the specified HTML attribute and its
value will be rendered to the requesting page.</para>
</summary>
<param name="name">The HTML attribute to render.</param>
<param name=" value">The value that is assinged to the HTML attribute.</param>
<param name=" key">The <see cref="T:System.Web.UI.HtmlTextWriterAttribute" /> enumeration value associated with the HTML attribute.</param>
<returns>
<para>
<see langword="true" /> if the attribute will be rendered
to the page; otherwise, <see langword="false" /> .</para>
</returns>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.OnStyleAttributeRender(System.String,System.String,System.Web.UI.HtmlTextWriterStyle)">
<summary>
<para>Determines whether the specified HTML style attribute
and its value will be rendered to the requesting page.</para>
</summary>
<param name="name">The HTML style attribute to render.</param>
<param name=" value">The value that is assinged to the HTML style attribute.</param>
<param name=" key">The <see cref="T:System.Web.UI.HtmlTextWriterStyle" /> enumeration value associated with the HTML style attribute.</param>
<returns>
<para>
<see langword="true" /> if the HTML
style attribute will be rendered to the page;
otherwise, <see langword="false" /> .</para>
</returns>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.OnTagRender(System.String,System.Web.UI.HtmlTextWriterTag)">
<summary>
<para>Determines whether the specified HTML element will be
rendered to the requesting page.</para>
</summary>
<param name="name">The HTML element to render.</param>
<param name=" key">The <see cref="T:System.Web.UI.HtmlTextWriterTag" /> enumeration value associated with the HTML element.</param>
<returns>
<para>
<see langword="true" /> if the HTML element will be
rendered to the page; otherwise, <see langword="false" /> .</para>
</returns>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.PopEndTag">
<summary>
<para>Removes an HTML element from the list of rendered elements.</para>
</summary>
<returns>
<para>A list of the HTML elements that have been rendered.</para>
</returns>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.PushEndTag(System.String)">
<summary>
<para>Saves the specifed HTML element for a later call to
the <see cref="M:System.Web.UI.HtmlTextWriter.PopEndTag" />
method.</para>
</summary>
<param name="endTag">The closing tag of the HTML element.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.FilterAttributes">
<summary>
<para>Filters all HTML attributes and style attributes by
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>
</summary>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.RenderBeginTag(System.String)">
<summary>
<para>Writes the opening tag of the specified HTML element to
the output stream.</para>
</summary>
<param name="tagName">The HTML element to render the opening tag for.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.RenderBeginTag(System.Web.UI.HtmlTextWriterTag)">
<summary>
<para>Writes the opening tag of the HTML element associated
with the specified <see cref="T:System.Web.UI.HtmlTextWriterTag" /> enumeration value to the output stream.</para>
</summary>
<param name="tagKey">An <see langword="HtmlTextWriterTag" /> value that defines the opening tag of the HTML element to render.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.RenderEndTag">
<summary>
<para>Writes the end tag of an HTML element to
the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.RenderBeforeTag">
<summary>
<para>Writes any text or tab spacing that occurs before the
opening tag of an HTML element to the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
</summary>
<returns>
<para>The text or tab spacing to write to the output stream. If not overridden,
this method returns <see langword="null" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.RenderBeforeContent">
<summary>
<para>Writes any text or spacing before the content and after the opening tag of
an HTML element.</para>
</summary>
<returns>
<para> The text or spacing to write prior to the content
of the HTML element. If not overridden, this method returns
<see langword="null" /> .</para>
</returns>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.RenderAfterContent">
<summary>
<para>Writes any text or spacing that occurs after the content and before the closing tag of the
HTML element to render to the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
</summary>
<returns>
<para> The spacing or text to write after the content of the HTML
element. If not overridden, this method returns <see langword="null" /> . </para>
</returns>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.RenderAfterTag">
<summary>
<para>Writes any spacing or text that occurs after an HTML
element's closing tag.</para>
</summary>
<returns>
<para>The spacing or text to write after the closing tag of
the HTML element. If not overridden, this method returns <see langword="null" /> . </para>
</returns>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.WriteAttribute(System.String,System.String)">
<summary>
<para>Writes the specified HTML attribute and value to
the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
</summary>
<param name="name">The HTML attribute to write to the output stream.</param>
<param name=" value">The value assigned to the HTML attribute.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.WriteAttribute(System.String,System.String,System.Boolean)">
<summary>
<para>Writes the specified HTML attribute and value to the
<see cref="T:System.Web.UI.HtmlTextWriter" /> output stream and HTML encodes them if specified
in the <paramref name="fEncode" /> parameter.</para>
</summary>
<param name="name">The HTML attribute to write to the output stream.</param>
<param name=" value">The value assigned to the HTML attribute.</param>
<param name=" fEncode">
<see langword="true" /> to HTML encode the attribute and its assigned value; otherwise, <see langword="false" />.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.WriteBeginTag(System.String)">
<summary>
<para>Writes any tab spacing and the opening tag of the
specified HTML element to the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
</summary>
<param name="tagName">The HTML element to write the opening tag of.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.WriteFullBeginTag(System.String)">
<summary>
<para>Writes any tab spacing and the opening tag of the
specified HTML element to the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
</summary>
<param name="tagName">The HTML element to write.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.WriteEndTag(System.String)">
<summary>
<para>Writes any tab spacing and the closing tag of the
specified HTML element.</para>
</summary>
<param name="tagName">The HTML element to write the closing tag for.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.WriteStyleAttribute(System.String,System.String)">
<summary>
<para>Writes the specified HTML style attribute to
the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
</summary>
<param name="name">The HTML style attribute to write to the output stream.</param>
<param name=" value">The value assigned to the HTML style attribute.</param>
</member>
<member name="M:System.Web.UI.HtmlTextWriter.WriteStyleAttribute(System.String,System.String,System.Boolean)">
<summary>
<para>Writes the specified HTML attribute and value to the
<see cref="T:System.Web.UI.HtmlTextWriter" /> output stream, and HTML encodes them if specified
in the <paramref name="fEncode" /> parameter.</para>
</summary>
<param name="name">The HTML style attribute to write to the output stream.</param>
<param name=" value">The value assigned to the HTML style attribute.</param>
<param name=" fEncode">
<see langword="true" /> to HTML encode the style attribute and its assigned value; otherwise, <see langword="false" />.</param>
</member>
<member name="P:System.Web.UI.HtmlTextWriter.Encoding">
<summary>
<para>Gets the <see cref="T:System.Text.Encoding" /> that the <see cref="T:System.Web.UI.HtmlTextWriter" />
object uses to write content to the page.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlTextWriter.NewLine">
<summary>
<para>Gets or sets the line terminator string used by the
current <see cref="T:System.Web.UI.HtmlTextWriter" /> .</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlTextWriter.Indent">
<summary>
<para>Gets or sets the number of spaces to indent at the beginning of a line of HTML.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlTextWriter.InnerWriter">
<summary>
<para>Gets or sets the text writer that writes the inner content of
the HTML element.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlTextWriter.TagKey">
<summary>
<para>Gets or sets the <see cref="T:System.Web.UI.HtmlTextWriterTag" />
value for the specified HTML element.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlTextWriter.TagName">
<summary>
<para> Gets or sets the tag name of the
HTML element being rendered.</para>
</summary>
</member>
<member name="T:System.Web.UI.HtmlTextWriterTag">
<summary>
<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" />
object output stream.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Unknown">
<summary>
<para>The <see cref="T:System.String" /> passed as an HTML tag is not recognized.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.A">
<summary>
<para> Specifies the HTML <see langword="a" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Acronym">
<summary>
<para>Specifies the HTML <see langword="acronym" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Address">
<summary>
<para>Specifies the HTML <see langword="address" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Area">
<summary>
<para>Specifies the HTML <see langword="area" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.B">
<summary>
<para>Specifies the HTML <see langword="b" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Base">
<summary>
<para>Specifies the HTML <see langword="base" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Basefont">
<summary>
<para>Specifies the HTML <see langword="basefont" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Bdo">
<summary>
<para>Specifies the HTML <see langword="bdo" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Bgsound">
<summary>
<para>Specifies the HTML <see langword="bgsound" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Big">
<summary>
<para>Specifies the HTML <see langword="big" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Blockquote">
<summary>
<para>Specifies the HTML <see langword="blockquote" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Body">
<summary>
<para>Specifies the HTML <see langword="body" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Br">
<summary>
<para>Specifies the HTML <see langword="br" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Button">
<summary>
<para>Specifies the HTML <see langword="button" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Caption">
<summary>
<para>Specifies the HTML <see langword="caption" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Center">
<summary>
<para>Specifies the HTML <see langword="center" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Cite">
<summary>
<para>Specifies the HTML <see langword="cite" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Code">
<summary>
<para>Specifies the HTML <see langword="code" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Col">
<summary>
<para>Specifies the HTML <see langword="col" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Colgroup">
<summary>
<para>Specifies the HTML <see langword="colgroup" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Dd">
<summary>
<para>Specifies the HTML <see langword="dd" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Del">
<summary>
<para>Specifies the HTML <see langword="cel" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Dfn">
<summary>
<para>Specifies the HTML <see langword="dfn" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Dir">
<summary>
<para>Specifies the HTML <see langword="dir" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Div">
<summary>
<para>Specifies the HTML <see langword="div" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Dl">
<summary>
<para>Specifies the HTML <see langword="dl" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Dt">
<summary>
<para>Specifies the HTML <see langword="dt" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Em">
<summary>
<para>Specifies the HTML <see langword="em" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Embed">
<summary>
<para>Specifies the HTML <see langword="embed" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Fieldset">
<summary>
<para>Specifies the HTML <see langword="fieldset" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Font">
<summary>
<para>Specifies the HTML <see langword="font" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Form">
<summary>
<para>Specifies the HTML <see langword="form" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Frame">
<summary>
<para>Specifies the HTML <see langword="frame" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Frameset">
<summary>
<para>Specifies the HTML <see langword="frameset" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.H1">
<summary>
<para>Specifies the HTML <see langword="H1" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.H2">
<summary>
<para>Specifies the HTML <see langword="H2" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.H3">
<summary>
<para>Specifies the HTML <see langword="H3" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.H4">
<summary>
<para>Specifies the HTML <see langword="H4" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.H5">
<summary>
<para>Specifies the HTML <see langword="H5" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.H6">
<summary>
<para>Specifies the HTML <see langword="H6" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Head">
<summary>
<para>Specifies the HTML <see langword="head" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Hr">
<summary>
<para>Specifies the HTML <see langword="hr" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Html">
<summary>
<para>Specifies the HTML <see langword="html" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.I">
<summary>
<para>Specifies the HTML <see langword="i" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Iframe">
<summary>
<para>Specifies the HTML <see langword="iframe" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Img">
<summary>
<para>Specifies the HTML <see langword="img" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Input">
<summary>
<para>Specifies the HTML <see langword="input" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Ins">
<summary>
<para>Specifies the HTML <see langword="ins" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Isindex">
<summary>
<para>Specifies the HTML <see langword="isindex" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Kbd">
<summary>
<para>Specifies the HTML <see langword="kbd" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Label">
<summary>
<para>Specifies the HTML <see langword="label" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Legend">
<summary>
<para>Specifies the HTML <see langword="legend" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Li">
<summary>
<para>Specifies the HTML <see langword="li" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Link">
<summary>
<para>Specifies the HTML <see langword="link" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Map">
<summary>
<para>Specifies the HTML <see langword="map" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Marquee">
<summary>
<para>Specifies the HTML <see langword="marquee" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Menu">
<summary>
<para>Specifies the HTML <see langword="menu" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Meta">
<summary>
<para>Specifies the HTML <see langword="meta" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Nobr">
<summary>
<para>Specifies the HTML <see langword="nobr" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Noframes">
<summary>
<para>Specifies the HTML <see langword="noframes" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Noscript">
<summary>
<para>Specifies the HTML <see langword="noscript" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Object">
<summary>
<para>Specifies the HTML <see langword="object" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Ol">
<summary>
<para>Specifies the HTML <see langword="ol" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Option">
<summary>
<para>Specifies the HTML <see langword="option" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.P">
<summary>
<para>Specifies the HTML <see langword="p" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Param">
<summary>
<para>Specifies the HTML <see langword="param" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Pre">
<summary>
<para>Specifies the HTML <see langword="pre" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Q">
<summary>
<para>Specifies the HTML <see langword="q" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Rt">
<summary>
<para>Specifies the DHTML <see langword="rt" /> element, which specifies text for the
<see langword="ruby" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Ruby">
<summary>
<para>Specifies the DHTML <see langword="ruby" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.S">
<summary>
<para>Specifies the HTML <see langword="s" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Samp">
<summary>
<para>Specifies the HTML <see langword="samp" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Script">
<summary>
<para>Specifies the HTML <see langword="script" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Select">
<summary>
<para>Specifies the HTML <see langword="select" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Small">
<summary>
<para>Specifies the HTML <see langword="small" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Span">
<summary>
<para>Specifies the HTML <see langword="span" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Strike">
<summary>
<para>Specifies the HTML <see langword="strike" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Strong">
<summary>
<para>Specifies the HTML <see langword="strong" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Style">
<summary>
<para>Specifies the HTML <see langword="style" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Sub">
<summary>
<para>Specifies the HTML <see langword="sub" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Sup">
<summary>
<para>Specifies the HTML <see langword="sup" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Table">
<summary>
<para>Specifies the HTML <see langword="table" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Tbody">
<summary>
<para>Specifies the HTML <see langword="tbody" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Td">
<summary>
<para>Specifies the HTML <see langword="td" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Textarea">
<summary>
<para>Specifies the HTML <see langword="textarea" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Tfoot">
<summary>
<para>Specifies the HTML <see langword="tfoot" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Th">
<summary>
<para>Specifies the HTML <see langword="th" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Thead">
<summary>
<para>Specifies the HTML <see langword="thead" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Title">
<summary>
<para>Specifies the HTML <see langword="title" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Tr">
<summary>
<para>Specifies the HTML <see langword="tr" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Tt">
<summary>
<para>Specifies the HTML <see langword="tt" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.U">
<summary>
<para>Specifies the HTML <see langword="u" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Ul">
<summary>
<para>Specifies the HTML <see langword="ul" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Var">
<summary>
<para>Specifies the HTML <see langword="var" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Wbr">
<summary>
<para>Specifies the HTML <see langword="wbr" /> element.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterTag.Xml">
<summary>
<para>Specifies the HTML <see langword="xml" /> element.</para>
</summary>
</member>
<member name="T:System.Web.UI.HtmlTextWriterAttribute">
<summary>
<para> Specifies the HTML attributes that an <see cref="T:System.Web.UI.HtmlTextWriter" />
or <see cref="T:System.Web.UI.Html32TextWriter" /> object writes to the opening tag of an HTML element when a Web
request is processed. </para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Accesskey">
<summary>
<para>Specifies that the HTML <see langword="acesskey" /> attribute be written to the
tag. </para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Align">
<summary>
<para>Specifies that the HTML <see langword="align" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Alt">
<summary>
<para>Specifies that the HTML <see langword="alt" /> attribute be written to the tag. </para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Background">
<summary>
<para>Specifies that the HTML <see langword="background" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Bgcolor">
<summary>
<para>Specifies that the HTML <see langword="bgcolor" /> attribute be
written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Border">
<summary>
<para>Specifies that the HTML <see langword="border" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Bordercolor">
<summary>
<para>Specifies that the HTML
<see langword="bordercolor" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Cellpadding">
<summary>
<para>Specifies that the HTML <see langword="cellpadding" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Cellspacing">
<summary>
<para>Specifies that the HTML <see langword="cellspacing" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Checked">
<summary>
<para>Specifies that the HTML <see langword="checked" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Class">
<summary>
<para>Specifies that the HTML <see langword="class" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Cols">
<summary>
<para>Specifies that the HTML <see langword="cols" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Colspan">
<summary>
<para>Specifies that the HTML <see langword="colspan" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Disabled">
<summary>
<para>Specifies that the HTML <see langword="disabled" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.For">
<summary>
<para>Specifies that the HTML <see langword="for" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Height">
<summary>
<para>Specifies that the HTML <see langword="height" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Href">
<summary>
<para>Specifies that the HTML <see langword="href" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Id">
<summary>
<para>Specifies that the HTML <see langword="id" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Maxlength">
<summary>
<para>Specifies that the HTML <see langword="maxlength" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Multiple">
<summary>
<para>Specifies that the HTML <see langword="multiple" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Name">
<summary>
<para>Specifies that the HTML <see langword="name" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Nowrap">
<summary>
<para>Specifies that the HTML <see langword="nowrap" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Onchange">
<summary>
<para>Specifies that the HTML <see langword="onchange" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Onclick">
<summary>
<para>Specifies that the HTML <see langword="onclick" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.ReadOnly">
<summary>
<para>Specifies that the HTML <see langword="readonly" /> attribute be written
to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Rows">
<summary>
<para>Specifies that the HTML <see langword="rows" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Rowspan">
<summary>
<para>Specifies that the HTML <see langword="rowspan" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Rules">
<summary>
<para>Specifies that the HTML <see langword="rules" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Selected">
<summary>
<para>Specifies that the HTML <see langword="selected" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Size">
<summary>
<para>Specifies that the HTML <see langword="size" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Src">
<summary>
<para>Specifies that the HTML <see langword="src" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Style">
<summary>
<para>Specifies that the HTML <see langword="style" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Tabindex">
<summary>
<para>Specifies that the HTML <see langword="tabindex" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Target">
<summary>
<para>Specifies that the HTML<see langword=" target" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Title">
<summary>
<para>Specifies that the HTML <see langword="title" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Type">
<summary>
<para>Specifies that the HTML <see langword="type" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Valign">
<summary>
<para>Specifies that the HTML <see langword="valign" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Value">
<summary>
<para>Specifies that the HTML <see langword="value" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Width">
<summary>
<para>Specifies that the HTML <see langword="width" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterAttribute.Wrap">
<summary>
<para>Specifies that the HTML <see langword="wrap" /> attribute be written to the tag.</para>
</summary>
</member>
<member name="T:System.Web.UI.HtmlTextWriterStyle">
<summary>
<para> Specifies the HTML styles available to
an <see cref="T:System.Web.UI.HtmlTextWriter" /> or <see cref="T:System.Web.UI.Html32TextWriter" /> object output stream.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterStyle.BackgroundColor">
<summary>
<para>Specifies the HTML <see langword="backgroundcolor" /> style.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterStyle.BackgroundImage">
<summary>
<para>Specifies the HTML <see langword="backgroundimage" /> style.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterStyle.BorderCollapse">
<summary>
<para>Specifies the HTML <see langword="bordercollapse" /> style.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterStyle.BorderColor">
<summary>
<para>Specifies the HTML <see langword="bordercolor" /> style.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterStyle.BorderStyle">
<summary>
<para>Specifies the HTML <see langword="borderstyle" /> style.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterStyle.BorderWidth">
<summary>
<para>Specifies the HTML <see langword="borderwidth" /> style.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterStyle.Color">
<summary>
<para>Specifies the HTML <see langword="color" /> style.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterStyle.FontFamily">
<summary>
<para>Specifies the HTML <see langword="fontfamily" /> style.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterStyle.FontSize">
<summary>
<para>Specifies the HTML <see langword="fontsize" /> style.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterStyle.FontStyle">
<summary>
<para>Specifies the HTML <see langword="fontstyle" /> style.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterStyle.FontWeight">
<summary>
<para>Specifies the HTML <see langword="fontweight" /> style.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterStyle.Height">
<summary>
<para>Specifies the HTML <see langword="height" /> style.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterStyle.TextDecoration">
<summary>
<para>Specifies the HTML <see langword="textdecoration" /> style.</para>
</summary>
</member>
<member name="F:System.Web.UI.HtmlTextWriterStyle.Width">
<summary>
<para>Specifies the HTML <see langword="width" /> style.</para>
</summary>
</member>
<member name="T:System.Web.UI.Html32TextWriter">
<summary>
<para>Provides a text writer for ASP.NET pages and server controls that
render content to HTML 3.2 clients.</para>
</summary>
</member>
<member name="M:System.Web.UI.Html32TextWriter.#ctor(System.IO.TextWriter)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.Html32TextWriter" />
class that uses the <see cref="F:System.Web.UI.HtmlTextWriter.DefaultTabString" /> constant when indentation of a
line is necessary.</para>
</summary>
<param name="writer">The <see cref="T:System.IO.TextWriter" /> object to render the HMTL content.</param>
</member>
<member name="M:System.Web.UI.Html32TextWriter.#ctor(System.IO.TextWriter,System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.Html32TextWriter" />
class using the specified tab spacing.</para>
</summary>
<param name="writer">The <see cref="T:System.IO.TextWriter" /> object to render the HMTL content.</param>
<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>
</member>
<member name="M:System.Web.UI.Html32TextWriter.OnStyleAttributeRender(System.String,System.String,System.Web.UI.HtmlTextWriterStyle)">
<summary>
<para>Determines whether the specified HTML style attribute
and its value have been rendered on the requesting page.</para>
</summary>
<param name="name">The HTML style attribute to render to the client.</param>
<param name=" value">The value associated with the HTML style attribute.</param>
<param name=" key">The <see cref="T:System.Web.UI.HtmlTextWriterStyle" /> enumeration value associated with the HTML style attribute.</param>
<returns>
<para>
<see langword="true" /> if the HTML style attribute and
its value have been rendered on the requesting page; otherwise,
<see langword="false" /> .</para>
</returns>
</member>
<member name="M:System.Web.UI.Html32TextWriter.OnTagRender(System.String,System.Web.UI.HtmlTextWriterTag)">
<summary>
<para>Determines whether the specified HTML element has been
rendered to the requesting page.</para>
</summary>
<param name="name">The HTML element to render.</param>
<param name=" key">The <see cref="T:System.Web.UI.HtmlTextWriterTag" /> enumeration value associated with the HTML element.</param>
<returns>
<para>
<see langword="true" /> if the HTML element has been rendered to the requesting
page; otherwise, <see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.Html32TextWriter.GetTagName(System.Web.UI.HtmlTextWriterTag)">
<summary>
<para>Obtains the HTML element associated with the specified
<see cref="T:System.Web.UI.HtmlTextWriterTag" /> enumeration value.</para>
</summary>
<param name="tagKey">The <see langword="HtmlTextWriterTag" /> value to obtain the HTML element for.</param>
<returns>
<para>The HTML element.</para>
</returns>
</member>
<member name="M:System.Web.UI.Html32TextWriter.RenderBeginTag(System.Web.UI.HtmlTextWriterTag)">
<summary>
<para>Writes the opening tag of the specified HTML element to the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
</summary>
<param name="tagKey">The <see cref="T:System.Web.UI.HtmlTextWriterTag" /> enumeration value that indicates the HTML element to write.</param>
</member>
<member name="M:System.Web.UI.Html32TextWriter.RenderBeforeTag">
<summary>
<para>Writes any text or tab spacing that occurs before the
opening tag of an HTML element to the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
</summary>
<returns>
<para>Any HTML font and spacing information to render before
the tag; if there is no such information to render, this method returns
<see langword="null" /> .</para>
</returns>
</member>
<member name="M:System.Web.UI.Html32TextWriter.RenderBeforeContent">
<summary>
<para>Writes any tab spacing or font information that appears
before the content contained in an HTML element.</para>
</summary>
<returns>
<para>The font information or spacing to write prior to the
content of the HTML element. If there is no such information to render, this
method returns <see langword="null" />.
</para>
</returns>
</member>
<member name="M:System.Web.UI.Html32TextWriter.RenderAfterContent">
<summary>
<para>Writes any text or spacing that occurs after the content
of the HTML element to the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream.</para>
</summary>
<returns>
<para>The spacing or text to write after to the content of the
HTML element. If there is no such information to render, this method
returns <see langword="null" />
. </para>
</returns>
</member>
<member name="M:System.Web.UI.Html32TextWriter.RenderAfterTag">
<summary>
<para>Writes any spacing or text that occurs after an HTML
element's closing tag.</para>
</summary>
<returns>
<para>The spacing or text to write after the closing tag of
the HTML element. If there is no such information to render, this method returns
<see langword="null" />
.</para>
</returns>
</member>
<member name="M:System.Web.UI.Html32TextWriter.RenderEndTag">
<summary>
<para>Writes the end tag of an HTML element to the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream, along
with any font information that is associated with the element.</para>
</summary>
</member>
<member name="T:System.Web.UI.ImageClickEventArgs">
<summary>
<para>Provides data for any events that occur when a user
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" />
server controls.
This class cannot be inherited.</para>
</summary>
</member>
<member name="F:System.Web.UI.ImageClickEventArgs.X">
<summary>
<para>An integer that represents the x-coordinate where a user clicked on an image-based ASP.NET
server control.</para>
</summary>
</member>
<member name="F:System.Web.UI.ImageClickEventArgs.Y">
<summary>
<para>An integer that represents the y-coordinate where a user clicked on
an image-based ASP.NET server control.</para>
</summary>
</member>
<member name="M:System.Web.UI.ImageClickEventArgs.#ctor(System.Int32,System.Int32)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.ImageClickEventArgs" /> class.</para>
</summary>
<param name="x">The x-coordinate where the user clicked on an image-based ASP.NET server control.</param>
<param name=" y">The y-coordinate where the user clicked on an image-based ASP.NET server control.</param>
</member>
<member name="T:System.Web.UI.ImageClickEventHandler">
<summary>
<para>Represents the method that will handle any events that are
raised when a user clicks on an image-based ASP.NET server control.</para>
</summary>
<param name="sender">The server control that is the source of the event.</param>
<param name=" e">An <see cref="T:System.Web.UI.ImageClickEventArgs" /> object that contains event data.</param>
</member>
<member name="T:System.Web.UI.INamingContainer">
<summary>
<para>Identifies a container control that creates a new ID
namespace within a <see cref="T:System.Web.UI.Page" />
object's control
hierarchy. This is a marker interface only.</para>
</summary>
</member>
<member name="T:System.Web.UI.IPostBackDataHandler">
<summary>
<para> Defines methods that ASP.NET server controls must implement to
automatically load post back data.</para>
</summary>
</member>
<member name="M:System.Web.UI.IPostBackDataHandler.LoadPostData(System.String,System.Collections.Specialized.NameValueCollection)">
<summary>
<para> When implemented by a class, processes post back data for an ASP.NET server control. </para>
</summary>
<param name="postDataKey">The key identifier for the control.</param>
<param name=" postCollection">The collection of all incoming name values.</param>
<returns>
<para>
<see langword="true" /> if the server control's state changes as a result of the
post back; otherwise <see langword="false" /> .</para>
</returns>
</member>
<member name="M:System.Web.UI.IPostBackDataHandler.RaisePostDataChangedEvent">
<summary>
<para>When implemented by a class, signals the server control object to notify the ASP.NET application that the state of the
control has changed.</para>
</summary>
</member>
<member name="T:System.Web.UI.IPostBackEventHandler">
<summary>
<para> Defines the method ASP.NET server controls must implement
to handle post back events.</para>
</summary>
</member>
<member name="M:System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(System.String)">
<summary>
<para> When implemented by a class, enables a server control to process an event raised when a form is posted to the server.</para>
</summary>
<param name="eventArgument">A <see cref="T:System.String" /> that represents an optional event argument to be passed to the event handler.</param>
</member>
<member name="T:System.Web.UI.IStateManager">
<summary>
<para> Defines the properties and methods any class must implement to support view state management for a server
control.</para>
</summary>
</member>
<member name="M:System.Web.UI.IStateManager.LoadViewState(System.Object)">
<summary>
<para>When implemented by a class, loads the server control's previously saved view state to the control.</para>
</summary>
<param name="state">An <see cref="T:System.Object" /> that contains the saved view state values for the control.</param>
</member>
<member name="M:System.Web.UI.IStateManager.SaveViewState">
<summary>
<para>When implemented by a class, saves the changes to a server control's view state to an
<see cref="T:System.Object" /> .</para>
</summary>
<returns>
<para>The <see langword="Object" /> that contains the view state changes. </para>
</returns>
</member>
<member name="M:System.Web.UI.IStateManager.TrackViewState">
<summary>
<para> When implemented by a class, instructs the server control to track changes to its view state.</para>
</summary>
</member>
<member name="P:System.Web.UI.IStateManager.IsTrackingViewState">
<summary>
<para>When implemented by a class, gets a value indicating whether a server control is tracking its view state changes.</para>
</summary>
</member>
<member name="T:System.Web.UI.ITemplate">
<summary>
<para> Defines the method to implement for populating an ASP.NET server control with child controls when using a control
with inline templates when declared in an .aspx file.</para>
</summary>
</member>
<member name="M:System.Web.UI.ITemplate.InstantiateIn(System.Web.UI.Control)">
<summary>
<para>When implemented by a class, defines the <see cref="T:System.Web.UI.Control" /> object that child
controls and templates belong to. These child controls
are in turn defined within an inline template.</para>
</summary>
<param name="container">The <see langword="Control" /> object to contain the instantiated controls from the inline template.</param>
</member>
<member name="T:System.Web.UI.IValidator">
<summary>
<para> Defines the properties and methods that objects that participate in validation must implement.</para>
</summary>
</member>
<member name="M:System.Web.UI.IValidator.Validate">
<summary>
<para> When implemented by a
class, evaluates the condition it checks and upates the <see cref="P:System.Web.UI.IValidator.IsValid" />
property.</para>
</summary>
</member>
<member name="P:System.Web.UI.IValidator.IsValid">
<summary>
<para> When implemented by a class, gets or sets a value indicating whether the
user-entered content in the specified control passes validation.</para>
</summary>
</member>
<member name="P:System.Web.UI.IValidator.ErrorMessage">
<summary>
<para> When implemented by a class, gets or sets the error message text generated when the condition being validated
fails.</para>
</summary>
</member>
<member name="T:System.Web.UI.LiteralControl">
<summary>
<para> Represents HTML elements, text, and any other strings in
an ASP.NET page that do not require
processing on the
server. </para>
</summary>
</member>
<member name="M:System.Web.UI.LiteralControl.#ctor">
<summary>
<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>
</summary>
</member>
<member name="M:System.Web.UI.LiteralControl.#ctor(System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.LiteralControl" /> class with
the specified text.</para>
</summary>
<param name="text">The text to be rendered on the requested Web page.</param>
</member>
<member name="M:System.Web.UI.LiteralControl.CreateControlCollection">
<summary>
<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>
</summary>
<returns>
<para>The <see langword="EmptyControlCollection" /> object for
the current control.</para>
</returns>
</member>
<member name="M:System.Web.UI.LiteralControl.Render(System.Web.UI.HtmlTextWriter)">
<summary>
<para>Writes the content of the <see cref="T:System.Web.UI.LiteralControl" />
object to the ASP.NET page.</para>
</summary>
<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>
</member>
<member name="P:System.Web.UI.LiteralControl.Text">
<summary>
<para>Gets or sets the text content of the <see cref="T:System.Web.UI.LiteralControl" /> object.</para>
</summary>
</member>
<member name="M:System.Web.UI.LosFormatter.Deserialize(System.IO.Stream)">
<summary>
<para> Deserializes a LOS-formatted object from a <see cref="T:System.IO.Stream" /> object.</para>
</summary>
<param name="stream">The source of the object to be deserialized.</param>
<returns>
<para>Returns the deserialized object.</para>
</returns>
</member>
<member name="M:System.Web.UI.LosFormatter.Deserialize(System.IO.TextReader)">
<summary>
<para>Deserializes a LOS-formatted object from a <see cref="T:System.IO.TextReader" /> object.</para>
</summary>
<param name="input">The source of the object to be deserialized.</param>
<returns>
<para>Returns the deserialized object.</para>
</returns>
</member>
<member name="M:System.Web.UI.LosFormatter.Deserialize(System.String)">
<summary>
<para>Deserializes a LOS formatted object from a string.</para>
</summary>
<param name="input">The source of the object to be deserialized.</param>
<returns>
<para>Returns the deserialized object.</para>
</returns>
</member>
<member name="M:System.Web.UI.LosFormatter.Serialize(System.IO.Stream,System.Object)">
<summary>
<para>Serializes the Web Forms view state value into
a <see cref="T:System.IO.Stream" /> object.</para>
</summary>
<param name="stream">The object to serialize into.</param>
<param name=" value">The view state information to pass.</param>
</member>
<member name="M:System.Web.UI.LosFormatter.Serialize(System.IO.TextWriter,System.Object)">
<summary>
<para>Serializes the view state value into a <see cref="T:System.IO.TextWriter" /> object.</para>
</summary>
<param name="output"> The object to serialize into.</param>
<param name=" value">The view state information to pass.</param>
</member>
<member name="T:System.Web.UI.Pair">
<summary>
<para>Holds two objects that can be added together to an ASP.NET
server control's view state.</para>
</summary>
</member>
<member name="F:System.Web.UI.Pair.First">
<summary>
<para>Represents the first object added to the server control's view state using the <see cref="T:System.Web.UI.Pair" /> class.</para>
</summary>
</member>
<member name="F:System.Web.UI.Pair.Second">
<summary>
<para>Represents the second object added to the server control's view state using
the <see cref="T:System.Web.UI.Pair" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.Pair.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.Pair" /> class.</para>
</summary>
<returns>
<para>The objects inserted in the server control's view state.</para>
</returns>
</member>
<member name="M:System.Web.UI.Pair.#ctor(System.Object,System.Object)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.Pair" /> class
containing the specifed objects.</para>
</summary>
<param name="x">The first object to add to view state.</param>
<param name=" y">The second object to add to view state.</param>
<returns>
<para>The objects to be added to view state.</para>
</returns>
</member>
<member name="T:System.Web.UI.Triplet">
<summary>
<para>Holds three objects that can be added together to an
ASP.NET server control's view state.</para>
</summary>
</member>
<member name="F:System.Web.UI.Triplet.First">
<summary>
<para>Represents the first object added to the server control's view state using the <see cref="T:System.Web.UI.Triplet" /> class.</para>
</summary>
</member>
<member name="F:System.Web.UI.Triplet.Second">
<summary>
<para>Represents the second object added to the server control's view state using the <see cref="T:System.Web.UI.Triplet" /> class.</para>
</summary>
</member>
<member name="F:System.Web.UI.Triplet.Third">
<summary>
<para>Represents the third object added to the server control's view state using the <see cref="T:System.Web.UI.Triplet" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.Triplet.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.Triplet" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.Triplet.#ctor(System.Object,System.Object)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.Triplet" /> class that
contains two objects.</para>
</summary>
<param name="x">The first object to add to view state.</param>
<param name=" y">The second object to add to view state.</param>
</member>
<member name="M:System.Web.UI.Triplet.#ctor(System.Object,System.Object,System.Object)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.Triplet" /> class
that contains three objects.</para>
</summary>
<param name="x">The first object to add to view state.</param>
<param name=" y">The second object to add to view state.</param>
<param name=" z">The third object to add to view state.</param>
</member>
<member name="T:System.Web.UI.Page">
<summary>
<para> Represents an .aspx file requested from a server
that hosts an ASP.NET Web
application.</para>
</summary>
</member>
<member name="T:System.Web.UI.TemplateControl">
<summary>
<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>
</summary>
</member>
<member name="M:System.Web.UI.TemplateControl.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.TemplateControl" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.TemplateControl.Construct">
<summary>
<para>
Performs construction time logic.</para>
</summary>
</member>
<member name="M:System.Web.UI.TemplateControl.OnCommitTransaction(System.EventArgs)">
<summary>
<para>Raises the <see langword="CommitTransaction" />
event.</para>
</summary>
<param name="e">An <see langword="EventArgs" /> object that contains the event data.</param>
</member>
<member name="M:System.Web.UI.TemplateControl.OnAbortTransaction(System.EventArgs)">
<summary>
<para>Raises the <see langword="AbortTransaction" /> event.</para>
</summary>
<param name="e">An <see langword="EventArgs" /> object that contains the event data.</param>
</member>
<member name="M:System.Web.UI.TemplateControl.OnError(System.EventArgs)">
<summary>
<para>Raises the <see langword="Error" /> event.
</para>
</summary>
<param name="e">An <see langword="EventArgs" /> object that contains the event data.</param>
</member>
<member name="M:System.Web.UI.TemplateControl.LoadControl(System.String)">
<summary>
<para>Obtains a <see cref="T:System.Web.UI.UserControl" /> object from a user control file.</para>
</summary>
<param name="virtualPath">The virtual path to a user control file.</param>
<returns>
<para> Returns the specified <see langword="UserControl" /> object.</para>
</returns>
</member>
<member name="M:System.Web.UI.TemplateControl.LoadTemplate(System.String)">
<summary>
<para> Obtains an instance of the <see langword="ITemplate" /> interface from an
external file.
</para>
</summary>
<param name="virtualPath">The virtual path to a user control file. </param>
<returns>
<para> An instance of the specified template.
</para>
</returns>
</member>
<member name="M:System.Web.UI.TemplateControl.ParseControl(System.String)">
<summary>
<para>Parses an input string into a <see cref="T:System.Web.UI.Control" /> on the
Web Forms page or user control. <see langword=" " /></para>
</summary>
<param name="content">A <see cref="T:System.String" /> that contains a user control.</param>
<returns>
<para>Returns the parsed <see cref="T:System.Web.UI.Control" /> .</para>
</returns>
</member>
<member name="E:System.Web.UI.TemplateControl.CommitTransaction">
<summary>
<para> Occurs when a transaction completes.</para>
</summary>
</member>
<member name="E:System.Web.UI.TemplateControl.AbortTransaction">
<summary>
<para>Occurs when a user aborts a transaction.</para>
</summary>
</member>
<member name="E:System.Web.UI.TemplateControl.Error">
<summary>
<para>Occurs when an unhandled exception is thrown.</para>
</summary>
</member>
<member name="M:System.Web.UI.Page.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.Page" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.Page.CreateHtmlTextWriter(System.IO.TextWriter)">
<summary>
<para>Creates an <see cref="T:System.Web.UI.HtmlTextWriter" />
object to render the page's content.</para>
</summary>
<param name="tw">The text writer to create.</param>
<returns>
<para>The specified <see cref="T:System.Web.UI.HtmlTextWriter" /> or <see cref="T:System.Web.UI.Html32TextWriter" /> object.</para>
</returns>
</member>
<member name="M:System.Web.UI.Page.GetTypeHashCode">
<summary>
<para>Retrieves a hash code that is generated by <see langword="Page" /> objects that are generated at run time. This
hash code is unique to the <see langword="Page" />
object's control
hierarchy.</para>
</summary>
<returns>
<para>The hash code generated at run time. The default is 0.</para>
</returns>
</member>
<member name="M:System.Web.UI.Page.DesignerInitialize">
<summary>
<para>Performs any initialization of the instance of
the <see cref="T:System.Web.UI.Page" /> class that is required
by RAD designers. This method is used only at design time.</para>
</summary>
</member>
<member name="M:System.Web.UI.Page.DeterminePostBackMode">
<summary>
<para>Determines the type of request made for the
<see langword="Page" />
class.</para>
</summary>
<returns>
<para>If the post back used the <see langword="POST" /> method, the form
information is returned from the <see langword="Context" /> object. If the postback used the
<see langword="GET" />
method,
the query string information is returned. If the page is being requested
for the first time, <see langword="null" />is returned.</para>
</returns>
</member>
<member name="M:System.Web.UI.Page.LoadPageStateFromPersistenceMedium">
<summary>
<para>Loads any saved view-state information to
the <see cref="T:System.Web.UI.Page" /> object. Override this method if you want to load
the <see langword="Page" /> view-state information in anything other than a hidden field.</para>
</summary>
<returns>
<para>The saved view state.</para>
</returns>
</member>
<member name="M:System.Web.UI.Page.GetPostBackEventReference(System.Web.UI.Control)">
<summary>
<para>Obtains a reference to a client-side script function that causes, when invoked, the
server to post back to the page.</para>
</summary>
<param name="control">The server control to process the post back on the server.</param>
<returns>
<para>The text of the client-side function call that can be inserted in a client-side event handler.</para>
</returns>
</member>
<member name="M:System.Web.UI.Page.GetPostBackEventReference(System.Web.UI.Control,System.String)">
<summary>
<para>Obtains a reference to a client-side script function that causes, when
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
server.</para>
</summary>
<param name="control">The server control to process the post back.</param>
<param name=" argument">The parameter passed to the server control.</param>
<returns>
<para> The text of the
client-side function call that can be inserted into a client-side event
handler. </para>
</returns>
</member>
<member name="M:System.Web.UI.Page.GetPostBackClientEvent(System.Web.UI.Control,System.String)">
<summary>
<para>Obtains a reference to a client-side script function
that causes, when invoked, a server postback to the form.</para>
</summary>
<param name="control">The server control that receives the client event postback.</param>
<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>
<returns>
<para>The <see langword="String" /> that represents the client event.</para>
</returns>
</member>
<member name="M:System.Web.UI.Page.GetPostBackClientHyperlink(System.Web.UI.Control,System.String)">
<summary>
<para>Appends <see langword="javascript:" /> to the beginning of
the return from a <see cref="M:System.Web.UI.Page.GetPostBackEventReference(System.Web.UI.Control)" />
call to allow hyperlink post-back processing on the server.</para>
</summary>
<param name="control">The server control to process the postback.</param>
<param name=" argument">The parameter passed to the server control.</param>
<returns>
<para> The name of the client-side function and the
<see langword="ID" /> property of the server control
that processed the function and argument passed to the control. </para>
</returns>
</member>
<member name="M:System.Web.UI.Page.RegisterArrayDeclaration(System.String,System.String)">
<summary>
<para> Declares a value that is declared as an
ECMAScript array declaration when the page renders.</para>
</summary>
<param name="arrayName">The name of the array in which to declare the value.</param>
<param name=" arrayValue">The value to place in the array.</param>
</member>
<member name="M:System.Web.UI.Page.RegisterHiddenField(System.String,System.String)">
<summary>
<para> Allows server controls to automatically register a
hidden field on the form. The field will be sent to the <see langword="Page" />
when the <see cref="T:System.Web.UI.HtmlControls.HtmlForm" />
server control is rendered.
</para>
</summary>
<param name="hiddenFieldName">The unique name of the hidden field to be rendered. </param>
<param name=" hiddenFieldInitialValue">The value to be emitted in the hidden form. </param>
</member>
<member name="M:System.Web.UI.Page.IsStartupScriptRegistered(System.String)">
<summary>
<para>Determines if the client startup script is registered
with the <see cref="T:System.Web.UI.Page" />
object.</para>
</summary>
<param name="key">The string key of the startup script to search for.</param>
<returns>
<para>
<see langword="true" /> if the startup script is
registered; otherwise, <see langword="false" /> .</para>
</returns>
</member>
<member name="M:System.Web.UI.Page.IsClientScriptBlockRegistered(System.String)">
<summary>
<para>Determines if the client script block is registered with the page.</para>
</summary>
<param name="key">The string key of the client script to search for.</param>
<returns>
<para>Returns <see langword="true" /> if the script block is registered; otherwise,
<see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.Page.RegisterClientScriptBlock(System.String,System.String)">
<summary>
<para> Allows ASP.NET server controls to emit client-side script
blocks in the <see cref="T:System.Web.UI.Page" />
.</para>
</summary>
<param name=" key">Unique key that identifies a script block.</param>
<param name="script">Content of script that is sent to the client.</param>
</member>
<member name="M:System.Web.UI.Page.RegisterStartupScript(System.String,System.String)">
<summary>
<para> Allows ASP.NET server controls to emit client-side script
blocks in the <see cref="T:System.Web.UI.Page" />
.
</para>
</summary>
<param name=" key">Unique key that identifies a script block. </param>
<param name="script">Content of script that will be sent to the client. </param>
</member>
<member name="M:System.Web.UI.Page.RegisterOnSubmitStatement(System.String,System.String)">
<summary>
<para> Allows a page to access the client
<see langword="OnSubmit" /> event.
The script should be a function call to client code registered elsewhere.</para>
</summary>
<param name=" key">Unique key that identifies a script block.</param>
<param name="script">The client-side script to be sent to the client.</param>
</member>
<member name="M:System.Web.UI.Page.RegisterRequiresPostBack(System.Web.UI.Control)">
<summary>
<para>Registers a control as one that requires post-back handling.</para>
</summary>
<param name="control">The control to be registered.</param>
</member>
<member name="M:System.Web.UI.Page.RaisePostBackEvent(System.Web.UI.IPostBackEventHandler,System.String)">
<summary>
<para>Notifies the server control that caused the postback that it should handle an incoming
post back event.</para>
</summary>
<param name="sourceControl">The ASP.NET server control that caused the postback. This control must implement the <see langword="IPostBackEventHandler" /> interface.</param>
<param name=" eventArgument">The post-back argument.</param>
</member>
<member name="M:System.Web.UI.Page.RegisterRequiresRaiseEvent(System.Web.UI.IPostBackEventHandler)">
<summary>
<para>Registers an ASP.NET server control as requiring an
event to be raised when the control is processed on the
<see langword="Page" />
.</para>
</summary>
<param name="control">The control to register.</param>
</member>
<member name="M:System.Web.UI.Page.MapPath(System.String)">
<summary>
<para>Retrieves the physical path that a virtual path, either absolute or relative, maps to.</para>
</summary>
<param name="virtualPath">A <see cref="T:System.String" /> that represents the virtual path.</param>
<returns>
<para>The physical path associated with the virtual path.</para>
</returns>
</member>
<member name="M:System.Web.UI.Page.RegisterViewStateHandler">
<summary>
<para> Causes page view state to be persisted, if called.</para>
</summary>
</member>
<member name="M:System.Web.UI.Page.SavePageStateToPersistenceMedium(System.Object)">
<summary>
<para> Saves any view-state information for the page.</para>
</summary>
<param name="viewState">An <see cref="T:System.Object" /> in which to store the view-state information.</param>
</member>
<member name="M:System.Web.UI.Page.Validate">
<summary>
<para> Instructs any validation controls included on
the page to validate their assigned information.</para>
</summary>
</member>
<member name="M:System.Web.UI.Page.VerifyRenderingInServerForm(System.Web.UI.Control)">
<summary>
<para>Confirms that an <see cref="T:System.Web.UI.HtmlControls.HtmlForm" /> control is rendered for
the specified ASP.NET server control at run time.</para>
</summary>
<param name="control">The ASP.NET server control that is required to be in the <see langword="HtmlForm" /> control.</param>
</member>
<member name="P:System.Web.UI.Page.Context">
<summary>
<para>Gets the <see cref="T:System.Web.HttpContext" />
object associated with the page.</para>
</summary>
</member>
<member name="P:System.Web.UI.Page.Application">
<summary>
<para>Gets the <see langword="Application" /> object for the current Web request.</para>
</summary>
</member>
<member name="P:System.Web.UI.Page.ClientTarget">
<summary>
<para> Gets or sets a value that allows you to override automatic
detection of browser capabilities and
to specify how a page renders
for particular browser clients.</para>
</summary>
</member>
<member name="P:System.Web.UI.Page.ErrorPage">
<summary>
<para> Gets or sets the error page to which the requesting browser is
redirected in the event of an unhandled page exception.</para>
</summary>
</member>
<member name="P:System.Web.UI.Page.Trace">
<summary>
<para>Gets the <see cref="T:System.Web.TraceContext" /> object for the current Web request.</para>
</summary>
</member>
<member name="P:System.Web.UI.Page.Request">
<summary>
<para>Gets the <see cref="T:System.Web.HttpRequest" />
object for the requested page.</para>
</summary>
</member>
<member name="P:System.Web.UI.Page.Response">
<summary>
<para>Gets the <see cref="T:System.Web.HttpResponse" /><see langword=" " />object associated with the <see cref="T:System.Web.UI.Page" />
. This object allows you to send HTTP
response data to a client and contains information about that response.</para>
</summary>
</member>
<member name="P:System.Web.UI.Page.Server">
<summary>
<para>Gets the <see langword="Server" /> object, which is an
instance of the <see cref="T:System.Web.HttpServerUtility" /> class.</para>
</summary>
</member>
<member name="P:System.Web.UI.Page.Cache">
<summary>
<para>Gets the <see cref="T:System.Web.Caching.Cache" /> object associated with the
application in which the page resides.</para>
</summary>
</member>
<member name="P:System.Web.UI.Page.Session">
<summary>
<para>Gets the current <see langword="Session" />
object provided by ASP.NET.</para>
</summary>
</member>
<member name="P:System.Web.UI.Page.User">
<summary>
<para>Gets information about the user making the page request. </para>
</summary>
</member>
<member name="P:System.Web.UI.Page.IsPostBack">
<summary>
<para>Gets a value indicating whether the page is being loaded in response to a
client postback, or if it is being loaded and accessed for the first time.</para>
</summary>
</member>
<member name="P:System.Web.UI.Page.EnableViewState">
<summary>
<para>Gets or sets a value indicating whether the page
maintains its view state, and the view state of any server controls it contains,
when the current page request ends.</para>
</summary>
</member>
<member name="P:System.Web.UI.Page.ID">
<summary>
<para>Gets or sets an identifier for a particular instance of
the <see cref="T:System.Web.UI.Page" /> class.</para>
</summary>
</member>
<member name="P:System.Web.UI.Page.Visible">
<summary>
<para> Gets or sets a value indicating whether
the <see cref="T:System.Web.UI.Page" />
object is rendered.</para>
</summary>
</member>
<member name="P:System.Web.UI.Page.IsValid">
<summary>
<para> Gets a value indicating whether page validation succeeded.</para>
</summary>
</member>
<member name="P:System.Web.UI.Page.Validators">
<summary>
<para>Gets a collection of all validation controls contained on the requested page.</para>
</summary>
</member>
<member name="P:System.Web.UI.Page.SmartNavigation">
<summary>
<para>Gets or sets a value indicating whether smart navigation is enabled.</para>
</summary>
</member>
<member name="T:System.Web.UI.OutputCacheLocation">
<summary>
<para> Specifies the valid values for the location of the output
cache.</para>
</summary>
</member>
<member name="F:System.Web.UI.OutputCacheLocation.Any">
<summary>
<para>The output cache can be located on the browser client (where the request originated), on a proxy server (or any other
server) participating in the request, or on the server where the request was
processed.</para>
</summary>
</member>
<member name="F:System.Web.UI.OutputCacheLocation.Client">
<summary>
<para>The output cache is located on the browser client where the request originated. </para>
</summary>
</member>
<member name="F:System.Web.UI.OutputCacheLocation.Downstream">
<summary>
<para>The output cache can be stored in any HTTP 1.1
cache-capable devices other than the origin server. This includes proxy servers and the client that
made the request.</para>
</summary>
</member>
<member name="F:System.Web.UI.OutputCacheLocation.Server">
<summary>
<para>The output cache is located on the Web server where the request was
processed.</para>
</summary>
</member>
<member name="F:System.Web.UI.OutputCacheLocation.None">
<summary>
<para> The output cache is disabled for the requested page.</para>
</summary>
</member>
<member name="M:System.Web.UI.PageParser.GetCompiledPageInstance(System.String,System.String,System.Web.HttpContext)">
<summary>
<para>Compiles a requested .aspx file into a <see cref="T:System.Web.UI.Page" /> object. </para>
</summary>
<param name="virtualPath">The virtual path to the requested file.</param>
<param name=" inputFile">The name of the requested file.</param>
<param name=" context">The <see cref="T:System.Web.HttpContext" /> object that contains information about the current Web request.</param>
<returns>
<para>Returns the compiled instance of the requested <see cref="T:System.Web.UI.Page" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.PageParser.CompileIntoType">
<summary>
<para>Compiles the requested page into the specified type.</para>
</summary>
<returns>
<para>Returns the compiled page.</para>
</returns>
</member>
<member name="T:System.Web.UI.PartialCachingAttribute">
<summary>
<para>Defines the metadata attribute that Web Forms user controls use to
indicate how their output is cached. This class cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.PartialCachingAttribute.#ctor(System.Int32)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.PartialCachingAttribute" /> class with the
specified duration assigned to the user control to be cached.</para>
</summary>
<param name="duration">An integer that represents the number of seconds a user control is to remain in the output cache.</param>
</member>
<member name="M:System.Web.UI.PartialCachingAttribute.#ctor(System.Int32,System.String,System.String,System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.PartialCachingAttribute" /> class with
the <paramref name="duration" />
, <paramref name="varyByParams," /><paramref name="varyByControls" />, and <paramref name="varyByCustom" /> parameter values specified
for the user control to be cached.</para>
</summary>
<param name="duration"> The time, in seconds, that the user control is cached.</param>
<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>
<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>
<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>
</member>
<member name="P:System.Web.UI.PartialCachingAttribute.Duration">
<summary>
<para>Gets the amount of time that cached items are to remain in
the output cache.</para>
</summary>
</member>
<member name="P:System.Web.UI.PartialCachingAttribute.VaryByParams">
<summary>
<para>Gets a list of query string or form POST paramaters that the
output cache will use to vary the user control.</para>
</summary>
</member>
<member name="P:System.Web.UI.PartialCachingAttribute.VaryByControls">
<summary>
<para> Gets a list of user control properties
that the output cache uses to vary the user control.</para>
</summary>
</member>
<member name="P:System.Web.UI.PartialCachingAttribute.VaryByCustom">
<summary>
<para> Gets a list of custom strings that the output cache wil
use to vary the user control. .</para>
</summary>
</member>
<member name="T:System.Web.UI.BasePartialCachingControl">
<summary>
<para> Provides the base functionality for
the <see cref="T:System.Web.UI.StaticPartialCachingControl" /> and the <see cref="T:System.Web.UI.PartialCachingControl" />
classes.</para>
</summary>
</member>
<member name="P:System.Web.UI.BasePartialCachingControl.Dependency">
<summary>
<para>Gets or sets an instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class associated with the cached user control output.</para>
</summary>
</member>
<member name="T:System.Web.UI.StaticPartialCachingControl">
<summary>
<para>Represents an instance of the <see cref="T:System.Web.UI.UserControl" /> class when it has been specifed for output
caching and included declaratively in
a page or another user control.</para>
</summary>
</member>
<member name="T:System.Web.UI.PartialCachingControl">
<summary>
<para> Created when a user control
(.ascx file) is specified for output caching, using either the <see topic="cpconoutputcache" /> directive or
the <see cref="T:System.Web.UI.PartialCachingAttribute" /> , and is added to
a page programmatically.</para>
</summary>
</member>
<member name="P:System.Web.UI.PartialCachingControl.CachedControl">
<summary>
<para>Gets a reference to the user control that is to be cached.</para>
</summary>
</member>
<member name="T:System.Web.UI.ParseChildrenAttribute">
<summary>
<para>Defines a metadata attribute that you can use when developing ASP.NET server controls. Use it to indicate
whether XML elements nested within the server control's tags, when the control is used declaratively on a page, should be treated
as properties or as child controls. This class cannot be inherited.</para>
</summary>
</member>
<member name="F:System.Web.UI.ParseChildrenAttribute.Default">
<summary>
<para>Defines the default value for the <see cref="T:System.Web.UI.ParseChildrenAttribute" /> class. This field is read-only.</para>
</summary>
</member>
<member name="M:System.Web.UI.ParseChildrenAttribute.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.ParseChildrenAttribute" />
class.</para>
</summary>
</member>
<member name="M:System.Web.UI.ParseChildrenAttribute.#ctor(System.Boolean)">
<summary>
<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" />
property to determine whether child XML elements of
a server control are parsed as though they were properties of the control.</para>
</summary>
<param name="childrenAsProperties">
<see langword="true" /> if the child XML elements are parsed as properties of the server control; otherwise, <see langword="false" />.</param>
</member>
<member name="M:System.Web.UI.ParseChildrenAttribute.#ctor(System.Boolean,System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.ParseChildrenAttribute" /> class using the
<paramref name="childrenAsProperties" />
and <paramref name="defaultProperty" />
parameters.</para>
</summary>
<param name="childrenAsProperties">
<see langword="true" /> if the child XML elements are parsed as properties of the server control; otherwise, <see langword="false" />.</param>
<param name=" defaultProperty">A string that defines a collection property of the server control into which child controls are parsed by default.</param>
</member>
<member name="P:System.Web.UI.ParseChildrenAttribute.ChildrenAsProperties">
<summary>
<para> Gets or sets a value indicating whether child XML elements are parsed as though they are properties
of a server control.</para>
</summary>
</member>
<member name="P:System.Web.UI.ParseChildrenAttribute.DefaultProperty">
<summary>
<para> Gets or sets the default property for
the parent server control into which child elements are parsed.</para>
</summary>
</member>
<member name="T:System.Web.UI.PersistChildrenAttribute">
<summary>
<para>Defines a metadata attribute used by ASP.NET server controls. The attribute indicates
whether, at design time, the child controls of an ASP.NET server control
should be persisted as nested inner controls. This class cannot be
inherited.</para>
</summary>
</member>
<member name="F:System.Web.UI.PersistChildrenAttribute.Yes">
<summary>
<para> Indicates that the child controls of an ASP.NET server control
should persist as nested controls at design-time. This field is read-only.</para>
</summary>
</member>
<member name="F:System.Web.UI.PersistChildrenAttribute.No">
<summary>
<para> Indicates that the child controls of an ASP.NET server control should
not persist as nested controls at design-time. This field is read-only.</para>
</summary>
</member>
<member name="F:System.Web.UI.PersistChildrenAttribute.Default">
<summary>
<para> Indicates the
default attribute state. This field is read-only.</para>
</summary>
</member>
<member name="M:System.Web.UI.PersistChildrenAttribute.#ctor(System.Boolean)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.PersistChildrenAttribute" /> class.</para>
</summary>
<param name="persist">
<see langword="true" /> to persist the child controls as server control tags; otherwise, <see langword="false" />.</param>
</member>
<member name="P:System.Web.UI.PersistChildrenAttribute.Persist">
<summary>
<para> Gets a value that indicates whether
the child controls of an ASP.NET server control are persisted as nested inner
controls at design-time.</para>
</summary>
</member>
<member name="T:System.Web.UI.PersistenceMode">
<summary>
<para> Specifies how an ASP.NET server control property or
event is persisted declaratively in an .aspx or .ascx file.
</para>
</summary>
</member>
<member name="F:System.Web.UI.PersistenceMode.Attribute">
<summary>
<para> Specifies that the property or event persists as an attribute.</para>
</summary>
</member>
<member name="F:System.Web.UI.PersistenceMode.InnerProperty">
<summary>
<para> Specifies that the property persists in the ASP.NET
server control as a nested tag. This is commonly used for complex objects; those that have persistable properties of their own.</para>
</summary>
</member>
<member name="F:System.Web.UI.PersistenceMode.InnerDefaultProperty">
<summary>
<para> Specifies that the property
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>
</summary>
</member>
<member name="F:System.Web.UI.PersistenceMode.EncodedInnerDefaultProperty">
<summary>
<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>
</summary>
</member>
<member name="T:System.Web.UI.PersistenceModeAttribute">
<summary>
<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>
</summary>
</member>
<member name="F:System.Web.UI.PersistenceModeAttribute.Attribute">
<summary>
<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>
</summary>
</member>
<member name="F:System.Web.UI.PersistenceModeAttribute.InnerProperty">
<summary>
<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>
</summary>
</member>
<member name="F:System.Web.UI.PersistenceModeAttribute.InnerDefaultProperty">
<summary>
<para> Specifies that a property persists as the only inner content of the ASP.NET server control. This field is read-only.</para>
</summary>
</member>
<member name="F:System.Web.UI.PersistenceModeAttribute.EncodedInnerDefaultProperty">
<summary>
<para>Specifies that a property is HTML-encoded and persists
as the only inner content of the ASP.NET server control. This field is read-only.</para>
</summary>
</member>
<member name="F:System.Web.UI.PersistenceModeAttribute.Default">
<summary>
<para>Specifies the default type for the <see cref="T:System.Web.UI.PersistenceModeAttribute" /> class. The default is
<see langword="PersistenceMode.Attribute" /> . This field is read-only.</para>
</summary>
</member>
<member name="P:System.Web.UI.PersistenceModeAttribute.Mode">
<summary>
<para>Gets the current value of the <see cref="T:System.Web.UI.PersistenceMode" /> enumeration.</para>
</summary>
</member>
<member name="M:System.Web.UI.PropertyConverter.EnumFromString(System.Type,System.String)">
<summary>
</summary>
</member>
<member name="M:System.Web.UI.PropertyConverter.EnumToString(System.Type,System.Object)">
<summary>
</summary>
</member>
<member name="M:System.Web.UI.PropertyConverter.ObjectFromString(System.Type,System.Reflection.MemberInfo,System.String)">
<summary>
</summary>
</member>
<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)">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="M:System.Web.UI.TemplateBuilder.NeedsTagInnerText">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="M:System.Web.UI.TemplateBuilder.SetTagInnerText(System.String)">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="M:System.Web.UI.TemplateBuilder.InstantiateIn(System.Web.UI.Control)">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="P:System.Web.UI.TemplateBuilder.Text">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="M:System.Web.UI.RootBuilder.#ctor(System.Web.UI.TemplateParser)">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="M:System.Web.UI.RootBuilder.GetChildControlType(System.String,System.Collections.IDictionary)">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="M:System.Web.UI.SimpleWebHandlerParser.#ctor(System.Web.HttpContext,System.String,System.String)">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="M:System.Web.UI.SimpleWebHandlerParser.GetCompiledTypeFromCache">
<summary>
<para>Compiles the Web handler file into the
object <see cref="T:System.Type" /> stored in the cache. If the type for the object is not
in the cache, this method places it there.</para>
</summary>
<returns>
<para>The Type object assigned to the currently requested file.</para>
</returns>
</member>
<member name="P:System.Web.UI.SimpleWebHandlerParser.DefaultDirectiveName">
<summary>
<para>When overridden in a derived class, this property gets the default directive
name that you assign to the files processed by your parser class.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebHandlerParser.DefaultDirectiveName">
<summary>
<para>Gets the default directive name for all Web page requests.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebServiceParser.GetCompiledType(System.String,System.Web.HttpContext)">
<summary>
<para>Compiles the requested file using information obtained from the <see cref="T:System.Web.HttpContext" /> object
for the current request.</para>
</summary>
<param name="inputFile">The file to be compiled.</param>
<param name=" context">The <see cref="T:System.Web.HttpContext" /> object for the current request.</param>
<returns>
<para>Returns a <see cref="T:System.Type" /> object as specified by the <see cref="T:System.Web.HttpContext" />
object.</para>
</returns>
</member>
<member name="P:System.Web.UI.WebServiceParser.DefaultDirectiveName">
<summary>
<para>Gets the default directive name for all Web service requests.</para>
</summary>
</member>
<member name="T:System.Web.UI.StateBag">
<summary>
<para> Manages the view state of ASP.NET server controls,
including pages. This class cannot
be inherited. </para>
</summary>
</member>
<member name="M:System.Web.UI.StateBag.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.StateBag" /> class. This is the default constructor for this
class.</para>
</summary>
</member>
<member name="M:System.Web.UI.StateBag.#ctor(System.Boolean)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.StateBag" /> class that allows stored state
values to be case-insensitive.</para>
</summary>
<param name="ignoreCase">
<see langword="true" /> to ignore case; otherwise, <see langword="false" />.</param>
</member>
<member name="M:System.Web.UI.StateBag.Add(System.String,System.Object)">
<summary>
<para>Adds a new <see cref="T:System.Web.UI.StateItem" /> object to the <see cref="T:System.Web.UI.StateBag" />
object. If the item already exists in the <see langword="StateBag" />, it updates the
value of the item.</para>
</summary>
<param name="key">The attribute name for the <see langword="StateItem" /> object.</param>
<param name=" value">The value of the item to add to the <see langword="StateBag" /> .</param>
<returns>
<para>Returns a <see cref="T:System.Web.UI.StateItem" /> object that represents the object added to
view state.</para>
</returns>
</member>
<member name="M:System.Web.UI.StateBag.Clear">
<summary>
<para>Removes all items from the current <see cref="T:System.Web.UI.StateBag" /> object.</para>
</summary>
</member>
<member name="M:System.Web.UI.StateBag.GetEnumerator">
<summary>
<para> Returns an enumerator that iterates over all the
key/value pairs of the <see cref="T:System.Web.UI.StateItem" /> objects stored in
the <see langword="StateBag" />.</para>
</summary>
<returns>
<para>The enumerator to iterate through the state bag.</para>
</returns>
</member>
<member name="M:System.Web.UI.StateBag.IsItemDirty(System.String)">
<summary>
<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
<see cref="M:System.Web.UI.Control.TrackViewState" qualify="true" />
.</para>
</summary>
<param name="key">The key of the item to check.</param>
<returns>
<para>
<see langword="true" /> if the item has been modified; otherwise,
<see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.StateBag.Remove(System.String)">
<summary>
<para>Removes the specified key/value pair from the <see cref="T:System.Web.UI.StateBag" /> object.</para>
</summary>
<param name="key">The item to remove.</param>
</member>
<member name="P:System.Web.UI.StateBag.Count">
<summary>
<para>Gets the number of <see cref="T:System.Web.UI.StateItem" /> objects in the <see cref="T:System.Web.UI.StateBag" />
object.</para>
</summary>
</member>
<member name="P:System.Web.UI.StateBag.Keys">
<summary>
<para>Gets a collection of keys representing the items in the <see cref="T:System.Web.UI.StateBag" />
object.</para>
</summary>
</member>
<member name="P:System.Web.UI.StateBag.Values">
<summary>
<para> Gets a collection of the view-state values stored in the <see cref="T:System.Web.UI.StateBag" />
object.</para>
</summary>
</member>
<member name="P:System.Web.UI.StateBag.Item(System.String)">
<summary>
<para> Gets or sets the value of an item stored in
the <see cref="T:System.Web.UI.StateBag" />
object.</para>
</summary>
<param name="key">The key for the item.</param>
</member>
<member name="T:System.Web.UI.StateItem">
<summary>
<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
requests. This class cannot be inherited.</para>
</summary>
</member>
<member name="P:System.Web.UI.StateItem.IsDirty">
<summary>
<para>Gets or sets a value indicating whether the <see cref="T:System.Web.UI.StateItem" /> object has been modified.</para>
</summary>
</member>
<member name="P:System.Web.UI.StateItem.Value">
<summary>
<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" />
object.</para>
</summary>
</member>
<member name="T:System.Web.UI.TemplateContainerAttribute">
<summary>
<para> Declares the type of the <see cref="T:System.Web.UI.INamingContainer" /> that will contain the
template once it is created.</para>
</summary>
</member>
<member name="M:System.Web.UI.TemplateContainerAttribute.#ctor(System.Type)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.TemplateContainerAttribute" />
class.</para>
</summary>
<param name="containerType">The <see cref="T:System.Type" />for the container control.</param>
</member>
<member name="P:System.Web.UI.TemplateContainerAttribute.ContainerType">
<summary>
<para> Gets the container control
type.</para>
</summary>
</member>
<member name="M:System.Web.UI.CompiledTemplateBuilder.InstantiateIn(System.Web.UI.Control)">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="T:System.Web.UI.ToolboxDataAttribute">
<summary>
<para>Specifies the default tag generated for a custom control
when it is dragged from a toolbox in a tool such as Visual Studio.</para>
</summary>
</member>
<member name="F:System.Web.UI.ToolboxDataAttribute.Default">
<summary>
<para> Represents the default <see cref="T:System.Web.UI.ToolboxDataAttribute" /> value for a custom control.</para>
</summary>
</member>
<member name="M:System.Web.UI.ToolboxDataAttribute.GetHashCode">
<summary>
<para> Returns the hash code of the custom control.</para>
</summary>
<returns>
<para> A 32-bit signed <see langword="integer" /> representing the
hash code.</para>
</returns>
</member>
<member name="P:System.Web.UI.ToolboxDataAttribute.Data">
<summary>
<para>Gets the string representing the initial values of the
control’s property, which is used in a visual designer for instantiating the
control. </para>
</summary>
</member>
<member name="T:System.Web.TraceContext">
<summary>
<para>Captures and presents execution details about a Web request. This class
cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.TraceContext.#ctor(System.Web.HttpContext)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.TraceContext" /> class.</para>
</summary>
<param name="context">An <see cref="T:System.Web.HttpContext" /> that contains information about the current Web request.</param>
</member>
<member name="M:System.Web.TraceContext.Write(System.String)">
<summary>
<para> Writes a trace message to the trace log.</para>
</summary>
<param name="message">The trace message to write to the log.</param>
</member>
<member name="M:System.Web.TraceContext.Write(System.String,System.String)">
<summary>
<para> Writes trace information to the trace log, including
a message and any user-defined categories.</para>
</summary>
<param name="category">The trace category that receives the message.</param>
<param name="message">The trace message to write to the log.</param>
</member>
<member name="M:System.Web.TraceContext.Write(System.String,System.String,System.Exception)">
<summary>
<para> Writes trace information to the trace log, including any user-defined
categories,trace messages, and error information.</para>
</summary>
<param name="category">The trace category that receives the message.</param>
<param name="message">The trace message to write to the log.</param>
<param name="errorInfo">An <see cref="T:System.Exception" /> that contains information about the error.</param>
</member>
<member name="M:System.Web.TraceContext.Warn(System.String)">
<summary>
<para> Writes a trace message to
the trace log. All warnings appear as in the log as red text.</para>
</summary>
<param name="message">The trace message to write to the log.</param>
</member>
<member name="M:System.Web.TraceContext.Warn(System.String,System.String)">
<summary>
<para> Writes trace information to the trace log, including any user-defined categories
and trace messages. All warnings appear in the log as red text.</para>
</summary>
<param name="category">The trace category that receives the message.</param>
<param name="message">The trace message to write to the log.</param>
</member>
<member name="M:System.Web.TraceContext.Warn(System.String,System.String,System.Exception)">
<summary>
<para> Writes trace information to the trace log, including any user-defined categories,trace messages, and error information. All warnings appear in
the log as red text. </para>
</summary>
<param name="category">The trace category that receives the message.</param>
<param name="message">The trace message to write to the log.</param>
<param name="errorInfo">An <see cref="T:System.Exception" /> that contains information about the error.</param>
</member>
<member name="P:System.Web.TraceContext.TraceMode">
<summary>
<para> Gets or sets
the sorted order in which trace messages
should be output to a requesting browser.</para>
</summary>
</member>
<member name="P:System.Web.TraceContext.IsEnabled">
<summary>
<para> Indicates whether tracing is
enabled for the current Web request. </para>
</summary>
</member>
<member name="T:System.Web.TraceMode">
<summary>
<para>Specifies in what order trace messages are emitted into the HTML output of a page.</para>
</summary>
</member>
<member name="F:System.Web.TraceMode.SortByTime">
<summary>
<para> Emit trace messages in the order they were
processed.</para>
</summary>
</member>
<member name="F:System.Web.TraceMode.SortByCategory">
<summary>
<para> Emit trace messages
alphabetically by category. </para>
</summary>
</member>
<member name="F:System.Web.TraceEnable.Default">
<summary>
<para>Specifies the default value, which is equal to Disable</para>
</summary>
</member>
<member name="F:System.Web.TraceEnable.Enable">
<summary>
<para>Specifies that tracing is enabled for a Web Forms page or an ASP.NET application.</para>
</summary>
</member>
<member name="F:System.Web.TraceEnable.Disable">
<summary>
<para>Specifies that trace functionality is disabled for an application or a page. </para>
</summary>
</member>
<member name="T:System.Web.UI.UserControl">
<summary>
<para> Represents an .ascx file when called in an .aspx file.</para>
</summary>
</member>
<member name="M:System.Web.UI.UserControl.DesignerInitialize">
<summary>
<para>Performs any initialization steps on the user control
that are required by RAD designers.</para>
</summary>
</member>
<member name="M:System.Web.UI.UserControl.OnInit(System.EventArgs)">
<summary>
<para>Raises the <see langword="Init" /> event.</para>
</summary>
<param name="e">An <see cref="T:System.EventArgs" /> object that contains the event data.</param>
</member>
<member name="M:System.Web.UI.UserControl.InitializeAsUserControl(System.Web.UI.Page)">
<summary>
<para>Initializes the <see langword="UserControl" /> object that has been created declaratively. Since there are some
differences between pages and user controls, this method makes sure that the
user control is initialized properly.</para>
</summary>
<param name=" page">The <see cref="T:System.Web.UI.Page" /> object that contains the user control.</param>
</member>
<member name="M:System.Web.UI.UserControl.LoadViewState(System.Object)">
<summary>
<para> Restores the view-state information from a previous user
control request that was saved by the <see cref="M:System.Web.UI.UserControl.SaveViewState" /> method.</para>
</summary>
<param name="savedState">An <see cref="T:System.Object" /> that represents the user control state to be restored.</param>
</member>
<member name="M:System.Web.UI.UserControl.SaveViewState">
<summary>
<para> Saves any user control view-state changes that have
occurred since the last page postback.</para>
</summary>
<returns>
<para>Returns the user control's current view state. If there is no view state associated
with the control, it returns <see langword="null" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.UserControl.MapPath(System.String)">
<summary>
<para>Assigns a virtual file path, either absolute or relative, to a
physical file path.</para>
</summary>
<param name="virtualPath">The virtual file path to map.</param>
<returns>
<para>The physical path to the file.</para>
</returns>
</member>
<member name="P:System.Web.UI.UserControl.Attributes">
<summary>
<para>Gets a collection of all attribute name and value pairs declared in the user
control tag within the .aspx file.</para>
</summary>
</member>
<member name="P:System.Web.UI.UserControl.Application">
<summary>
<para>Gets the <see langword="Application" /> object for the
current Web request.</para>
</summary>
</member>
<member name="P:System.Web.UI.UserControl.Trace">
<summary>
<para>Gets the <see cref="T:System.Web.TraceContext" />
object for the current Web request.</para>
</summary>
</member>
<member name="P:System.Web.UI.UserControl.Request">
<summary>
<para>Gets the <see langword="Request" />
object for the current Web request.</para>
</summary>
</member>
<member name="P:System.Web.UI.UserControl.Response">
<summary>
<para>Gets the <see langword="Response " />
object for the current Web request.</para>
</summary>
</member>
<member name="P:System.Web.UI.UserControl.Server">
<summary>
<para> Gets the <see langword="Server" />
object for the current Web request.</para>
</summary>
</member>
<member name="P:System.Web.UI.UserControl.Cache">
<summary>
<para>Gets the <see cref="T:System.Web.Caching.Cache" />
object that is associated with the
application that contains the user control.</para>
</summary>
</member>
<member name="P:System.Web.UI.UserControl.IsPostBack">
<summary>
<para>Gets a value indicating whether the user control is being loaded in response to a
client postback, or if it is being loaded and accessed for the first time.</para>
</summary>
</member>
<member name="P:System.Web.UI.UserControl.Session">
<summary>
<para>Gets the <see langword="Session" /> object for the current Web request.</para>
</summary>
</member>
<member name="T:System.Web.UI.ValidationPropertyAttribute">
<summary>
<para> Defines the metadata attribute that ASP.NET server
controls use to identify a validation property. This class cannot be inherited. </para>
</summary>
</member>
<member name="M:System.Web.UI.ValidationPropertyAttribute.#ctor(System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.ValidationPropertyAttribute" /> class.</para>
</summary>
<param name="name"> The name of the validation property. </param>
</member>
<member name="P:System.Web.UI.ValidationPropertyAttribute.Name">
<summary>
<para> Gets the name of the ASP.NET
server control's validation property.</para>
</summary>
</member>
<member name="T:System.Web.UI.ValidatorCollection">
<summary>
<para> Exposes
an array of <see cref="T:System.Web.UI.IValidator" /> references. This class cannot be
inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.ValidatorCollection.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.ValidatorCollection" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.ValidatorCollection.Add(System.Web.UI.IValidator)">
<summary>
<para>Adds the specified validation server control to the
<see cref="T:System.Web.UI.ValidatorCollection" /> .</para>
</summary>
<param name="validator">The validation server control to add.</param>
</member>
<member name="M:System.Web.UI.ValidatorCollection.Contains(System.Web.UI.IValidator)">
<summary>
<para>Determines whether the specified validation server control is
contained within the page's <see cref="T:System.Web.UI.ValidatorCollection" /> .</para>
</summary>
<param name="validator">The validation server control to check for.</param>
<returns>
<para>
<see langword="true" /> if the validation server control
is in the collection; otherwise, <see langword="false" /> .</para>
</returns>
</member>
<member name="M:System.Web.UI.ValidatorCollection.Remove(System.Web.UI.IValidator)">
<summary>
<para>Removes the specified validation server control from the
page's <see cref="T:System.Web.UI.ValidatorCollection" /> .</para>
</summary>
<param name="validator">The validation server control to removed from the collection.</param>
</member>
<member name="M:System.Web.UI.ValidatorCollection.GetEnumerator">
<summary>
<para>Returns an <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Web.UI.ValidatorCollection" /> .</para>
</summary>
<returns>
<para>The <see langword="IEnumerator" /> for the collection.</para>
</returns>
</member>
<member name="M:System.Web.UI.ValidatorCollection.CopyTo(System.Array,System.Int32)">
<summary>
<para>Copies a validation server control to the specified
array beginning at the location specified by the <paramref name="index" /> parameter.</para>
</summary>
<param name="array">The collection to which the validation server control is added.</param>
<param name=" index">The index where the validation server control is copied.</param>
</member>
<member name="P:System.Web.UI.ValidatorCollection.Count">
<summary>
<para> Gets the number of
references in the collection.</para>
</summary>
</member>
<member name="P:System.Web.UI.ValidatorCollection.Item(System.Int32)">
<summary>
<para> Gets the validation server control at the specified
index location in the <see cref="T:System.Web.UI.ValidatorCollection" />
.</para>
</summary>
<param name="index">The index of the validator to return.</param>
</member>
<member name="P:System.Web.UI.ValidatorCollection.SyncRoot">
<summary>
<para>Gets an object that can be used to synchronize the
<see cref="T:System.Web.UI.ValidatorCollection" />
.</para>
</summary>
</member>
<member name="P:System.Web.UI.ValidatorCollection.IsReadOnly">
<summary>
<para>Gets a value that indicates whether the <see cref="T:System.Web.UI.ValidatorCollection" /> is
read-only.</para>
</summary>
</member>
<member name="P:System.Web.UI.ValidatorCollection.IsSynchronized">
<summary>
<para>Gets a value that indicates whether the <see cref="T:System.Web.UI.ValidatorCollection" />
is synchronized.</para>
</summary>
</member>
<member name="M:System.Web.Compilation.BaseCompiler.GetCompiledType">
<summary>
</summary>
</member>
<member name="T:System.Web.UI.HtmlControls.HtmlAnchor">
<summary>
<para>Allows programmatic access to the HTML
<see langword="&lt;a&gt;" />
tag on the server.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlAnchor.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlAnchor" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlAnchor.OnServerClick(System.EventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.HtmlControls.HtmlAnchor.ServerClick" /> event. This allows you
to provide a custom handler for the event.</para>
</summary>
<param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains event data.</param>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlAnchor.HRef">
<summary>
<para> Gets or sets the URL target of the link specified in the
<see cref="T:System.Web.UI.HtmlControls.HtmlAnchor" />
server control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlAnchor.Name">
<summary>
<para>Gets or sets the bookmark name defined in the <see cref="T:System.Web.UI.HtmlControls.HtmlAnchor" />
server
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlAnchor.Target">
<summary>
<para>
Gets
or sets the target window or
frame to load Web page content into.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlAnchor.Title">
<summary>
<para> Gets or sets the ToolTip text displayed when the mouse pointer
is placed over the <see cref="T:System.Web.UI.HtmlControls.HtmlAnchor" />
control.</para>
</summary>
</member>
<member name="E:System.Web.UI.HtmlControls.HtmlAnchor.ServerClick">
<summary>
<para> Occurs when the <see cref="T:System.Web.UI.HtmlControls.HtmlAnchor" /> control is
clicked.</para>
</summary>
</member>
<member name="T:System.Web.UI.HtmlControls.HtmlButton">
<summary>
<para>
Allows programmatic access to the HTML
<see langword="&lt;button&gt;" />
tag
on the server.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlButton.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlButton" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlButton.OnServerClick(System.EventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.HtmlControls.HtmlButton.ServerClick" /> event. This allows you
to provide a custom handler for the event.</para>
</summary>
<param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains the event data.</param>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlButton.CausesValidation">
<summary>
<para>Gets or sets a value indicating whether validation is
performed when the <see cref="T:System.Web.UI.HtmlControls.HtmlButton" /> control is clicked.</para>
</summary>
</member>
<member name="E:System.Web.UI.HtmlControls.HtmlButton.ServerClick">
<summary>
<para>Occurs when the user clicks an <see cref="T:System.Web.UI.HtmlControls.HtmlButton" /> control on the client Web
page.</para>
</summary>
</member>
<member name="T:System.Web.UI.HtmlControls.HtmlGenericControl">
<summary>
<para> Defines the methods,
properties, and events for all HTML server control tags not represented by a
specific .NET Framework class.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlGenericControl.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlGenericControl" /> class
with default
values.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlGenericControl.#ctor(System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlGenericControl" /> class with the specified
tag.</para>
</summary>
<param name="tag">The name of the element for which the instance of this class is created.</param>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlGenericControl.TagName">
<summary>
<para>Gets or sets the tag name of an element that contains a
<see langword="runat= &quot;server&quot; " /> attribute.</para>
</summary>
</member>
<member name="T:System.Web.UI.HtmlControls.HtmlImage">
<summary>
<para>Provides programmatic access for the HTML
<see langword="&lt;img&gt;" /> element
on the
server.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlImage.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlImage" /> class.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlImage.Alt">
<summary>
<para> Gets or sets the alternative caption the
browser displays if an image is unavailable or currently downloading and not yet finished.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlImage.Align">
<summary>
<para> Gets or sets the alignment of the image relative to other Web
page elements.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlImage.Border">
<summary>
<para>Gets or sets the width of a frame for an image.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlImage.Height">
<summary>
<para>Gets or sets the height of the image. </para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlImage.Src">
<summary>
<para> Gets or sets the source of the image file
to display.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlImage.Width">
<summary>
<para> Gets or sets the width of the image.</para>
</summary>
</member>
<member name="T:System.Web.UI.HtmlControls.HtmlInputButton">
<summary>
<para>Allows programmatic access to the HTML <see langword="&lt;input type= button&gt;" />, <see langword="&lt;input type= submit&gt;" />, and
<see langword=" &lt;input type= reset&gt;" />
elements on
the server.</para>
</summary>
</member>
<member name="T:System.Web.UI.HtmlControls.HtmlInputControl">
<summary>
<para> Serves as the abstract base class that defines the
methods, properties, and events common to all HTML input controls, such as the
<see langword="&lt;input type=text&gt;" />, <see langword="&lt;input type=submit&gt;" />, and <see langword=" &lt;input type= file&gt;" />
elements.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlInputControl.#ctor(System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlInputControl" /> class.</para>
</summary>
<param name="type">The type of input control.</param>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlInputControl.Name">
<summary>
<para> Gets or sets the unique identifier name for the <see cref="T:System.Web.UI.HtmlControls.HtmlInputControl" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlInputControl.Value">
<summary>
<para>Gets or sets the value associated with the <see cref="T:System.Web.UI.HtmlControls.HtmlInputControl" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlInputControl.Type">
<summary>
<para> Gets the type of an <see cref="T:System.Web.UI.HtmlControls.HtmlInputControl" />.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlInputButton.#ctor">
<summary>
<para>Initializes a new instance of an <see cref="T:System.Web.UI.HtmlControls.HtmlInputButton" /> class using
default values.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlInputButton.#ctor(System.String)">
<summary>
<para>Initializes a new instance of an <see cref="T:System.Web.UI.HtmlControls.HtmlInputButton" /> class using the specified
button type.</para>
</summary>
<param name="type">The input button type.</param>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlInputButton.OnServerClick(System.EventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.HtmlControls.HtmlInputButton.ServerClick" />
event. This allows you to handle the event directly.</para>
</summary>
<param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains the event data.</param>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlInputButton.CausesValidation">
<summary>
<para>Gets or sets a value indicating whether validation is
performed when the <see cref="T:System.Web.UI.HtmlControls.HtmlInputButton" /> control is clicked.</para>
</summary>
</member>
<member name="E:System.Web.UI.HtmlControls.HtmlInputButton.ServerClick">
<summary>
<para>Occurs when an <see cref="T:System.Web.UI.HtmlControls.HtmlInputButton" /> control is clicked on the Web page.</para>
</summary>
</member>
<member name="T:System.Web.UI.HtmlControls.HtmlInputCheckBox">
<summary>
<para> Allows programmatic access to the HTML <see langword="&lt;input type= checkbox&gt;" />
element on the server.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlInputCheckBox.#ctor">
<summary>
<para>Initializes a new instance of an <see cref="T:System.Web.UI.HtmlControls.HtmlInputCheckBox" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlInputCheckBox.OnServerChange(System.EventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.HtmlControls.HtmlInputCheckBox.ServerChange" />
event. This method allows you to handle the event directly.</para>
</summary>
<param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains event information.</param>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlInputCheckBox.Checked">
<summary>
<para>Gets or sets a value indicating whether the <see cref="T:System.Web.UI.HtmlControls.HtmlInputCheckBox" />
is checked.</para>
</summary>
</member>
<member name="E:System.Web.UI.HtmlControls.HtmlInputCheckBox.ServerChange">
<summary>
<para>Occurs when the Web page is submitted to the server and the <see cref="T:System.Web.UI.HtmlControls.HtmlInputCheckBox" /> control
changes state
from the previous post. </para>
</summary>
</member>
<member name="T:System.Web.UI.HtmlControls.HtmlInputFile">
<summary>
<para>Allows programmatic access to the HTML <see langword="&lt;input type= file&gt;" />
element on the
server.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlInputFile.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlInputFile" /> class.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlInputFile.Accept">
<summary>
<para> Gets or sets
a comma-separated list of MIME encodings
used to constrain the file types the user can select.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlInputFile.MaxLength">
<summary>
<para> Gets or sets
the maximum length of the file path for the file to upload
from the client computer.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlInputFile.PostedFile">
<summary>
<para>Gets access to the uploaded file specified by a client.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlInputFile.Size">
<summary>
<para>Gets or sets the width of the text
box in which the file path is entered.</para>
</summary>
</member>
<member name="T:System.Web.UI.HtmlControls.HtmlInputHidden">
<summary>
<para> Allows programmatic access to the HTML <see langword="&lt;input type=hidden&gt; " /> element on the server.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlInputHidden.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlInputHidden" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlInputHidden.OnServerChange(System.EventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.HtmlControls.HtmlInputHidden.ServerChange" /> event. This method
allows you to handle the event directly.</para>
</summary>
<param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains event data.</param>
</member>
<member name="E:System.Web.UI.HtmlControls.HtmlInputHidden.ServerChange">
<summary>
<para>Occurs when the <see cref="P:System.Web.UI.HtmlControls.HtmlInputControl.Value" /> property is changed on the server.</para>
</summary>
</member>
<member name="T:System.Web.UI.HtmlControls.HtmlInputImage">
<summary>
<para>Allows programmatic access to the HTML <see langword="&lt;input type= image&gt;" />
element on the server.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlInputImage.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlInputImage" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlInputImage.OnServerClick(System.Web.UI.ImageClickEventArgs)">
<summary>
<para> Raises the <see cref="E:System.Web.UI.HtmlControls.HtmlInputImage.ServerClick" />
event.</para>
</summary>
<param name="e">A <see cref="T:System.Web.UI.ImageClickEventArgs" qualify="true" /> that contains event data. </param>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlInputImage.Align">
<summary>
<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.
</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlInputImage.Alt">
<summary>
<para> Gets or sets
the alternative text that the browser displays if the image is unavailable or has
not been downloaded.
</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlInputImage.Border">
<summary>
<para> Gets or sets the border width for the
<see cref="T:System.Web.UI.HtmlControls.HtmlInputImage" />
control.
</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlInputImage.Src">
<summary>
<para> Gets or sets the location of the image file.
</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlInputImage.CausesValidation">
<summary>
<para>Gets or sets a value indicating whether validation is
performed when the <see cref="T:System.Web.UI.HtmlControls.HtmlInputImage" /> control is clicked.</para>
</summary>
</member>
<member name="E:System.Web.UI.HtmlControls.HtmlInputImage.ServerClick">
<summary>
<para> Occurs on the server when the user clicks an
<see cref="T:System.Web.UI.HtmlControls.HtmlInputImage" />
control.</para>
</summary>
</member>
<member name="T:System.Web.UI.HtmlControls.HtmlInputRadioButton">
<summary>
<para>Allows programmatic access to the HTML <see langword="&lt;input type= radio&gt;" />
element on the server.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlInputRadioButton.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlInputRadioButton" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlInputRadioButton.OnServerChange(System.EventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.HtmlControls.HtmlInputRadioButton.ServerChange" /> event. This
allows you to create a custom event handler when the event is raised.</para>
</summary>
<param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains the event data.</param>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlInputRadioButton.Checked">
<summary>
<para> Gets or sets a value indicating whether the <see cref="T:System.Web.UI.HtmlControls.HtmlInputRadioButton" />
control is selected.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlInputRadioButton.Name">
<summary>
<para> Gets or sets the name of the group that the
instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlInputRadioButton" /> class is associated with. </para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlInputRadioButton.Value">
<summary>
<para>Gets or sets the value associated with the <see cref="T:System.Web.UI.HtmlControls.HtmlInputRadioButton" /> control.</para>
</summary>
</member>
<member name="E:System.Web.UI.HtmlControls.HtmlInputRadioButton.ServerChange">
<summary>
<para>Occurs when the value of the <see cref="P:System.Web.UI.HtmlControls.HtmlInputRadioButton.Checked" /> property of the
<see cref="T:System.Web.UI.HtmlControls.HtmlInputRadioButton" /> control changes between
posts to the server.</para>
</summary>
</member>
<member name="T:System.Web.UI.HtmlControls.HtmlInputText">
<summary>
<para>Allows programmatic access to the HTML <see langword="&lt;input type= text&gt;" /> and <see langword="&lt;input type= password&gt;" />
elements on the server.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlInputText.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlInputText" /> class using default values.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlInputText.#ctor(System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlInputText" /> class using the specified input
control type.</para>
</summary>
<param name="type">The type of input control.</param>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlInputText.OnServerChange(System.EventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.HtmlControls.HtmlInputText.ServerChange" /> event.</para>
</summary>
<param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains event data.</param>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlInputText.MaxLength">
<summary>
<para> Gets or sets the maximum number of characters that
can be entered in the text box.
</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlInputText.Size">
<summary>
<para> Gets or sets the width of the text box.
</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlInputText.Value">
<summary>
<para> Gets
or sets the contents of the text box.
</para>
</summary>
</member>
<member name="E:System.Web.UI.HtmlControls.HtmlInputText.ServerChange">
<summary>
<para>Occurs when the <see cref="P:System.Web.UI.HtmlControls.HtmlInputText.Value" /> property is changed on the
server.</para>
</summary>
</member>
<member name="T:System.Web.UI.HtmlControls.HtmlSelect">
<summary>
<para>Allows programmatic access to the HTML
<see langword="&lt;select&gt;" />
element on the server.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlSelect.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlSelect" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlSelect.OnServerChange(System.EventArgs)">
<summary>
<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
a custom handler for the
event.</para>
</summary>
<param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains the event data. </param>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlSelect.DataMember">
<summary>
<para>Gets or sets the set of data to bind to the <see cref="T:System.Web.UI.HtmlControls.HtmlSelect" /> control from a
<see cref="P:System.Web.UI.HtmlControls.HtmlSelect.DataSource" /> with multiple sets of
data.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlSelect.DataSource">
<summary>
<para> Gets or sets the source of information to bind
to the <see cref="T:System.Web.UI.HtmlControls.HtmlSelect" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlSelect.DataTextField">
<summary>
<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" />
property of each item in the <see cref="T:System.Web.UI.HtmlControls.HtmlSelect" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlSelect.DataValueField">
<summary>
<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" />
property of each item in the
<see cref="T:System.Web.UI.HtmlControls.HtmlSelect" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlSelect.InnerHtml">
<summary>
<para>Gets or sets the content between the opening and closing tags of the control without automatically converting
special characters to their equivalent HTML entities. This property is
not supported for this control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlSelect.InnerText">
<summary>
<para>Gets or sets the content between the opening and closing tags of the control with automatic conversion
of special characters to their equivalent HTML entities. This
property is not supported for this control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlSelect.Items">
<summary>
<para>Gets a collection that contains the items listed in an <see cref="T:System.Web.UI.HtmlControls.HtmlSelect" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlSelect.Multiple">
<summary>
<para>Gets or sets a value indicating whether multiple items can
be selected concurrently in the <see cref="T:System.Web.UI.HtmlControls.HtmlSelect" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlSelect.Name">
<summary>
<para>Gets or sets the unique identifier name associated with the <see cref="T:System.Web.UI.HtmlControls.HtmlSelect" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlSelect.SelectedIndex">
<summary>
<para> Gets or sets the ordinal index of the selected
item in an <see cref="T:System.Web.UI.HtmlControls.HtmlSelect" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlSelect.Size">
<summary>
<para>Gets or sets the height (in rows) of the <see cref="T:System.Web.UI.HtmlControls.HtmlSelect" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlSelect.Value">
<summary>
<para>Gets the value of the selected item in the <see cref="T:System.Web.UI.HtmlControls.HtmlSelect" /> control
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
list with the specified
value.</para>
</summary>
</member>
<member name="E:System.Web.UI.HtmlControls.HtmlSelect.ServerChange">
<summary>
<para>Occurs when the selected items in the <see cref="T:System.Web.UI.HtmlControls.HtmlSelect" /> control
change between posts to the
server.</para>
</summary>
</member>
<member name="T:System.Web.UI.HtmlControls.HtmlTable">
<summary>
<para>Allows programmatic access on the server to the HTML
<see langword="&lt;table&gt;" />
element.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlTable.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> class.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTable.Align">
<summary>
<para> Gets or sets the alignment of the <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> control in relation to other
elements on the Web
page.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTable.BgColor">
<summary>
<para>Gets or sets the background color of the <see cref="T:System.Web.UI.HtmlControls.HtmlTable" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTable.Border">
<summary>
<para>Gets or sets the width of the border (in pixels) of the
<see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTable.BorderColor">
<summary>
<para>Gets or sets the border color of the <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTable.CellPadding">
<summary>
<para>Gets or sets the amount of space between the contents of
a cell and the cell's border (in pixels) in the <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTable.CellSpacing">
<summary>
<para>Gets or sets the amount of space between adjacent
cells (in pixels) in the <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTable.InnerHtml">
<summary>
<para>Gets or sets the content between the opening and closing tags of the control, without automatically converting
special characters to their equivalent HTML entities. This property is
not supported for this control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTable.InnerText">
<summary>
<para>Gets or sets the content between the opening and closing tags of the control, with automatic conversion
of special characters to their equivalent HTML entities. This
property is not supported for this control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTable.Height">
<summary>
<para> Gets or sets the height of the <see cref="T:System.Web.UI.HtmlControls.HtmlTable" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTable.Width">
<summary>
<para> Gets or sets the width of the <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTable.Rows">
<summary>
<para>Gets an <see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" /> that contains all the rows in the
<see cref="T:System.Web.UI.HtmlControls.HtmlTable" />
control.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlTable.HtmlTableRowControlCollection.Add(System.Web.UI.Control)">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlTable.HtmlTableRowControlCollection.AddAt(System.Int32,System.Web.UI.Control)">
<summary>
<para>Adds the specified <see cref="T:System.Web.UI.Control" /> object to the collection. The new control is added
to the array at the specified index location.</para>
</summary>
<param name=" index">The location in the array to add the child control.</param>
<param name="child">The <see cref="T:System.Web.UI.Control" /> object to add to the collection.</param>
</member>
<member name="T:System.Web.UI.HtmlControls.HtmlTableCell">
<summary>
<para> Represents
the <see langword="&lt;td&gt;" /> and <see langword="&lt;th&gt;" /> HTML
elements in an <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" />.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlTableCell.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> class using default values.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlTableCell.#ctor(System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> class, using the specified
tag name.</para>
</summary>
<param name="tagName">The element name of the tag.</param>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableCell.Align">
<summary>
<para>Gets or sets the horizontal alignment of the content in the cell represented by an instance of
the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> class.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableCell.BgColor">
<summary>
<para> Gets or sets the background color of the
cell represented by an instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" />
class.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableCell.BorderColor">
<summary>
<para>Gets or sets the border color of the cell
represented by an instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" />
class.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableCell.ColSpan">
<summary>
<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>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableCell.Height">
<summary>
<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" />
class.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableCell.NoWrap">
<summary>
<para>Gets or sets a value indicating whether the text in a cell represented by an instance of the
<see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> class automatically continues
on the next line when it reaches the end
of the cell.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableCell.RowSpan">
<summary>
<para>Gets or sets the number of rows occupied by a cell
represented by an instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" />
class.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableCell.VAlign">
<summary>
<para>Gets or sets the vertical alignment for the content of a cell represented by an instance of the
<see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> class.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableCell.Width">
<summary>
<para>Gets or sets the width (in pixels) of the cell
represented by an instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" />
class.</para>
</summary>
</member>
<member name="T:System.Web.UI.HtmlControls.HtmlTableCellCollection">
<summary>
<para> A collection of <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> objects that represent the
cells in a single row of an <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> control. This class cannot
be inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlTableCellCollection.Add(System.Web.UI.HtmlControls.HtmlTableCell)">
<summary>
<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>
</summary>
<param name="cell">The <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> to add to the collection.</param>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlTableCellCollection.Insert(System.Int32,System.Web.UI.HtmlControls.HtmlTableCell)">
<summary>
<para>Adds the specified <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> at the specified index
location of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCellCollection" />.</para>
</summary>
<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>
<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>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlTableCellCollection.Clear">
<summary>
<para>Removes all <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> objects from the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCellCollection" />.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlTableCellCollection.GetEnumerator">
<summary>
<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>
</summary>
<returns>
<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>
</returns>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlTableCellCollection.CopyTo(System.Array,System.Int32)">
<summary>
<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
index in the <see cref="T:System.Array" qualify="true" />.</para>
</summary>
<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>
<param name=" index">The first index in the specified <see cref="T:System.Array" qualify="true" /> to receive the items.</param>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlTableCellCollection.Remove(System.Web.UI.HtmlControls.HtmlTableCell)">
<summary>
<para>Removes the specified <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> from the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCellCollection" />.</para>
</summary>
<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>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlTableCellCollection.RemoveAt(System.Int32)">
<summary>
<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>
</summary>
<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>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableCellCollection.Count">
<summary>
<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>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableCellCollection.Item(System.Int32)">
<summary>
<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>
</summary>
<param name="index">An ordinal index value that specifies the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> to return.</param>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableCellCollection.SyncRoot">
<summary>
<para>Gets the object that can be used to synchronize access
to the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCellCollection" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableCellCollection.IsReadOnly">
<summary>
<para>Gets a value indicating whether the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCellCollection" /> is read-only.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableCellCollection.IsSynchronized">
<summary>
<para>Gets a value indicating whether access to
the <see cref="T:System.Web.UI.HtmlControls.HtmlTableCellCollection" /> is synchronized
(thread-safe).</para>
</summary>
</member>
<member name="T:System.Web.UI.HtmlControls.HtmlTableRow">
<summary>
<para>Represents the <see langword="&lt;tr&gt;" /> HTML element
in an <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> control.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlTableRow.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> class.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableRow.Align">
<summary>
<para> Gets or sets the horizontal alignment of the content
in the cells of a row in an <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableRow.Cells">
<summary>
<para> Gets a collection of <see cref="T:System.Web.UI.HtmlControls.HtmlTableCell" /> objects that represent the cells contained in a row of
the <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableRow.BgColor">
<summary>
<para>Gets or sets the background color of the row represented by an instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" />
class.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableRow.BorderColor">
<summary>
<para>Gets or sets the border color of the row
represented by an instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> class.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableRow.Height">
<summary>
<para>Gets or sets the height (in pixels) of the row
represented by an instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> class.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableRow.InnerHtml">
<summary>
<para>Gets or sets the content between the opening and closing tags of the control without automatically converting
special characters to their equivalent HTML entities. This property is
not supported for this control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableRow.InnerText">
<summary>
<para>Gets or sets the content between the opening and closing tags of the control with automatic conversion
of special characters to their equivalent HTML entities. This
property is not supported for this control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableRow.VAlign">
<summary>
<para> Gets or sets the vertical alignment
of the content in the cells of a row in an <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> control.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlTableRow.HtmlTableCellControlCollection.Add(System.Web.UI.Control)">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlTableRow.HtmlTableCellControlCollection.AddAt(System.Int32,System.Web.UI.Control)">
<summary>
<para>Adds the specified <see cref="T:System.Web.UI.Control" /> object to the collection. The new control is added
to the array at the specified index location.</para>
</summary>
<param name=" index">The location in the array to add the child control.</param>
<param name="child">The <see cref="T:System.Web.UI.Control" /> object to add to the collection.</param>
</member>
<member name="T:System.Web.UI.HtmlControls.HtmlTableRowCollection">
<summary>
<para>A collection of <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> objects that
represent the rows of an <see cref="T:System.Web.UI.HtmlControls.HtmlTable" /> control. This class
cannot
be inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlTableRowCollection.Add(System.Web.UI.HtmlControls.HtmlTableRow)">
<summary>
<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>
</summary>
<param name="row">The <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> to add to the collection.</param>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlTableRowCollection.Insert(System.Int32,System.Web.UI.HtmlControls.HtmlTableRow)">
<summary>
<para>Adds an <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> to the specified
location in the collection.</para>
</summary>
<param name="index">
<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>
</param>
<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>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlTableRowCollection.Clear">
<summary>
<para>Removes all <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> objects from the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" />.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlTableRowCollection.CopyTo(System.Array,System.Int32)">
<summary>
<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
index in the array.</para>
</summary>
<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>
<param name=" index">The first index in the specified array to receive the items.</param>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlTableRowCollection.GetEnumerator">
<summary>
<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>
</summary>
<returns>
<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>
</returns>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlTableRowCollection.Remove(System.Web.UI.HtmlControls.HtmlTableRow)">
<summary>
<para>Removes the specified <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> from the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" />.</para>
</summary>
<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>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlTableRowCollection.RemoveAt(System.Int32)">
<summary>
<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>
</summary>
<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>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableRowCollection.Count">
<summary>
<para>Gets the number of <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> objects in the
<see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableRowCollection.Item(System.Int32)">
<summary>
<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>
</summary>
<param name="index">An ordinal index value that specifies the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRow" /> to return.</param>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableRowCollection.SyncRoot">
<summary>
<para>Gets the object that can be used to synchronize access
to the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableRowCollection.IsReadOnly">
<summary>
<para>Gets a value indicating whether the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" /> is read-only.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTableRowCollection.IsSynchronized">
<summary>
<para>Gets a value indicating whether access to
the <see cref="T:System.Web.UI.HtmlControls.HtmlTableRowCollection" /> is synchronized
(thread-safe).</para>
</summary>
</member>
<member name="T:System.Web.UI.HtmlControls.HtmlTextArea">
<summary>
<para> Allows
programmatic access to the <see langword="&lt;textarea&gt;" /> HTML
element on the server.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlTextArea.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.HtmlControls.HtmlTextArea" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.HtmlControls.HtmlTextArea.OnServerChange(System.EventArgs)">
<summary>
<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
a custom handler for the
event.</para>
</summary>
<param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains the event data. </param>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTextArea.Cols">
<summary>
<para> Gets or sets the width (in characters) of the
<see cref="T:System.Web.UI.HtmlControls.HtmlTextArea" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTextArea.Name">
<summary>
<para> Gets or sets the unique identifier name for the <see cref="T:System.Web.UI.HtmlControls.HtmlTextArea" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTextArea.Rows">
<summary>
<para> Gets or sets the height (in characters) of the
<see cref="T:System.Web.UI.HtmlControls.HtmlTextArea" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.HtmlControls.HtmlTextArea.Value">
<summary>
<para>Gets or sets the text entered in the
<see cref="T:System.Web.UI.HtmlControls.HtmlTextArea" /> control.</para>
</summary>
</member>
<member name="E:System.Web.UI.HtmlControls.HtmlTextArea.ServerChange">
<summary>
<para>Occurs when the content of the <see cref="T:System.Web.UI.HtmlControls.HtmlTextArea" /> control changes between posts to
the server.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.AdCreatedEventArgs">
<summary>
<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
inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.AdCreatedEventArgs.#ctor(System.Collections.IDictionary)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.AdCreatedEventArgs" />
class.</para>
</summary>
<param name="adProperties">A <see cref="T:System.Collections.IDictionary" qualify="true" /> containing the advertisement properties from the XML file.</param>
</member>
<member name="P:System.Web.UI.WebControls.AdCreatedEventArgs.AdProperties">
<summary>
<para>Gets a <see cref="T:System.Collections.IDictionary" qualify="true" /> object that contains all the
advertisement properties for the currently displayed advertisement.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.AdCreatedEventArgs.AlternateText">
<summary>
<para> Gets or sets the
alternate text displayed in the <see cref="T:System.Web.UI.WebControls.AdRotator" />
control when the advertisement
image is unavailable. Browsers that support the ToolTips feature display this text as a ToolTip for the advertisement.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.AdCreatedEventArgs.ImageUrl">
<summary>
<para> Gets or sets the URL of an image to display in the <see cref="T:System.Web.UI.WebControls.AdRotator" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.AdCreatedEventArgs.NavigateUrl">
<summary>
<para> Gets or sets the Web page to display when the
<see cref="T:System.Web.UI.WebControls.AdRotator" />
control is clicked.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.AdCreatedEventHandler">
<summary>
<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" />
control.</para>
</summary>
<param name="sender">The source of the event.</param>
<param name="e">An <see cref="T:System.Web.UI.WebControls.AdCreatedEventArgs" /> that contains the event data.</param>
</member>
<member name="T:System.Web.UI.WebControls.AdRotator">
<summary>
<para> Displays an advertisement banner on a Web page.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.WebControl">
<summary>
<para> Serves as the base class that defines the methods,
properties and events common to all controls in the <see cref="N:System.Web.UI.WebControls" />
namespace.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.WebControl.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.WebControl" /> class that represents a
<see langword="Span" /> HTML
tag.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.WebControl.#ctor(System.Web.UI.HtmlTextWriterTag)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.WebControl" /> class using the specified HTML tag.</para>
</summary>
<param name="tag">One of the <see cref="T:System.Web.UI.HtmlTextWriterTag" qualify="true" /> values.</param>
</member>
<member name="M:System.Web.UI.WebControls.WebControl.#ctor(System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.WebControl" /> class using the specified HTML tag.</para>
</summary>
<param name="tag">An HTML tag.</param>
</member>
<member name="M:System.Web.UI.WebControls.WebControl.AddAttributesToRender(System.Web.UI.HtmlTextWriter)">
<summary>
<para> Adds HTML attributes and styles that need to be rendered
to the specified <see cref="T:System.Web.UI.HtmlTextWriter" qualify="true" />. This method is used primarily by control
developers.</para>
</summary>
<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>
</member>
<member name="M:System.Web.UI.WebControls.WebControl.ApplyStyle(System.Web.UI.WebControls.Style)">
<summary>
<para> Copies any nonblank elements of the specified style to the Web control, overwriting any existing style elements of the
control. This method is primarily used by control developers.</para>
</summary>
<param name="s">A <see cref="T:System.Web.UI.WebControls.Style" /> that represents the style to be copied.</param>
</member>
<member name="M:System.Web.UI.WebControls.WebControl.CopyBaseAttributes(System.Web.UI.WebControls.WebControl)">
<summary>
<para>Copies the properties
not encapsulated by the <see cref="P:System.Web.UI.WebControls.WebControl.Style" /> object from the
specified Web server control to the Web server control that this method is
called from. This
method is used primarily by control developers.</para>
</summary>
<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>
</member>
<member name="M:System.Web.UI.WebControls.WebControl.CreateControlStyle">
<summary>
<para> Creates the style object that is used internally by the
<see cref="T:System.Web.UI.WebControls.WebControl" />
class to implement all style related properties. This method is used primarily
by control developers.</para>
</summary>
<returns>
<para>A <see cref="T:System.Web.UI.WebControls.Style" /> that is used
to implement all style-related properties of the control.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.WebControl.MergeStyle(System.Web.UI.WebControls.Style)">
<summary>
<para> Copies any nonblank elements of the specified style to the Web control, but will not overwrite any existing style elements
of the control. This method is used primarily by control developers.</para>
</summary>
<param name="s">A <see cref="T:System.Web.UI.WebControls.Style" /> that represents the style to be copied.</param>
</member>
<member name="M:System.Web.UI.WebControls.WebControl.RenderBeginTag(System.Web.UI.HtmlTextWriter)">
<summary>
<para> Renders the HTML opening tag of the control into the
specified writer. This method is used primarily by control developers.</para>
</summary>
<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>
</member>
<member name="M:System.Web.UI.WebControls.WebControl.RenderEndTag(System.Web.UI.HtmlTextWriter)">
<summary>
<para>Renders the HTML closing tag of the control into the
specified writer. This method is used primarily by control developers.</para>
</summary>
<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>
</member>
<member name="M:System.Web.UI.WebControls.WebControl.RenderContents(System.Web.UI.HtmlTextWriter)">
<summary>
<para>Renders the contents of the control into the specified writer. This method is used primarily by control developers.</para>
</summary>
<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>
</member>
<member name="P:System.Web.UI.WebControls.WebControl.AccessKey">
<summary>
<para>Gets or sets the access key (underlined letter) that allows you to quickly navigate to the Web
server control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.WebControl.Attributes">
<summary>
<para> Gets the collection of arbitrary attributes (for rendering only) that
do not correspond to properties on the control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.WebControl.BackColor">
<summary>
<para>Gets or sets the background color of the Web server control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.WebControl.BorderColor">
<summary>
<para>Gets or sets the border color of the Web control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.WebControl.BorderWidth">
<summary>
<para>Gets or sets the border width of the Web server control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.WebControl.BorderStyle">
<summary>
<para>Gets or sets the border style of the Web server control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.WebControl.ControlStyle">
<summary>
<para>Gets the style of the Web server control. This property is
used primarily by control developers.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.WebControl.ControlStyleCreated">
<summary>
<para>Gets a value indicating whether a <see cref="T:System.Web.UI.WebControls.Style" />
object has been created for the <see cref="P:System.Web.UI.WebControls.WebControl.ControlStyle" /> property. This property is
primarily used by control developers. </para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.WebControl.CssClass">
<summary>
<para>Gets or sets the Cascading Style Sheet (CSS) class rendered by the Web server control on the client.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.WebControl.Style">
<summary>
<para> Gets a collection of text attributes that will be rendered as a style attribute
on the outer tag of the Web server control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.WebControl.Enabled">
<summary>
<para>Gets or sets a value indicating whether the Web server control is enabled.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.WebControl.Font">
<summary>
<para>Gets the font properties associated with the Web sServer control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.WebControl.ForeColor">
<summary>
<para>Gets or sets the foreground color (typically the color of the text) of the Web
server control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.WebControl.Height">
<summary>
<para>Gets or sets the height of the Web server control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.WebControl.TabIndex">
<summary>
<para> Gets or
sets the tab index of the Web server control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.WebControl.TagKey">
<summary>
<para>Gets the <see cref="T:System.Web.UI.HtmlTextWriterTag" qualify="true" /> value
that corresponds to this Web server control. This property is used primarily
by control developers.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.WebControl.TagName">
<summary>
<para> Gets the name of the control tag. This property is used primarily by control developers.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.WebControl.ToolTip">
<summary>
<para> Gets or sets the text displayed when the mouse pointer hovers
over the Web server control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.WebControl.Width">
<summary>
<para>Gets or sets the width of the Web server control.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.AdRotator.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.AdRotator" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.AdRotator.OnAdCreated(System.Web.UI.WebControls.AdCreatedEventArgs)">
<summary>
<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>
</summary>
<param name="e">An <see cref="T:System.Web.UI.WebControls.AdCreatedEventArgs" /> that contains event data.</param>
</member>
<member name="P:System.Web.UI.WebControls.AdRotator.AdvertisementFile">
<summary>
<para>Gets or sets the path to an XML file that contains advertisement information.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.AdRotator.KeywordFilter">
<summary>
<para> Gets or sets a category keyword to filter for specific types of advertisements in the XML advertisement file.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.AdRotator.Target">
<summary>
<para> Gets or sets the name of the browser window or frame that
displays the contents of the Web page linked to when the <see cref="T:System.Web.UI.WebControls.AdRotator" />
control is clicked.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.AdRotator.AdCreated">
<summary>
<para>Occurs once per round trip to the server after the creation of the control,
but before the page is rendered. </para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.AdRotator.AdRec.Initialize(System.Collections.IDictionary)">
<summary>
Initialize the stuct based on a dictionary containing the advertisement properties
</summary>
</member>
<member name="T:System.Web.UI.WebControls.BaseCompareValidator">
<summary>
<para> Serves as the abstract base
class for validation controls that perform typed comparisons.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.BaseValidator">
<summary>
<para> Serves as the abstract base
class for validation controls.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.Label">
<summary>
<para> Represents a label control, which displays text on a Web
page.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.Label.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Label" />
class.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Label.Text">
<summary>
<para>Gets or sets the text content of the <see cref="T:System.Web.UI.WebControls.Label" />
control.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.BaseValidator.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.BaseValidator" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.BaseValidator.CheckControlValidationProperty(System.String,System.String)">
<summary>
<para> Helper function that verifies whether the
specified control is on the
page and contains validation properties.</para>
</summary>
<param name="name">The control to verify.</param>
<param name=" propertyName">Provides additional text to describe the source of the exception, if an exception is thrown from using this method. </param>
</member>
<member name="M:System.Web.UI.WebControls.BaseValidator.ControlPropertiesValid">
<summary>
<para>Helper function that determines whether the control specified by the <see cref="P:System.Web.UI.WebControls.BaseValidator.ControlToValidate" /> property is a
valid control.</para>
</summary>
<returns>
<para>
<see langword="true " />if the
control specified by the <see cref="P:System.Web.UI.WebControls.BaseValidator.ControlToValidate" /> property is a valid control; otherwise,
<see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.BaseValidator.EvaluateIsValid">
<summary>
<para> When overridden in a derived class, this method contains the code to determine
whether the value in the input
control is valid.</para>
</summary>
<returns>
<para>
<see langword="true" /> if the value
in the input control is valid; otherwise,
<see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.BaseValidator.GetControlRenderID(System.String)">
<summary>
<para> Gets the client ID of the specified control.</para>
</summary>
<param name="name">The name of the control to get the client ID.</param>
<returns>
<para>The client ID of the specified control.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.BaseValidator.GetControlValidationValue(System.String)">
<summary>
<para> Gets the value associated with the specified input control.</para>
</summary>
<param name="name">The name of the input control to get the value from.</param>
<returns>
<para>The value associated with the specified input control.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.BaseValidator.GetValidationProperty(System.Object)">
<summary>
<para>Helper function to get the validation
property of a control (if it exists).</para>
</summary>
<param name="component">An <see cref="T:System.Object" qualify="true" /> that represents the control to get the validation property of.</param>
<returns>
<para>A <see cref="T:System.ComponentModel.PropertyDescriptor" qualify="true" /> that contains the
validation property of the control.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.BaseValidator.DetermineRenderUplevel">
<summary>
<para> Helper function that determines whether the validator control can be rendered
for an uplevel browser.</para>
</summary>
<returns>
<para>
<see langword="true" /> if the validator control can be rendered for an uplevel
browser; otherwise, <see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.BaseValidator.RegisterValidatorCommonScript">
<summary>
<para> Registers code on the page for client-side validation.
</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.BaseValidator.RegisterValidatorDeclaration">
<summary>
<para>Registers an ECMAScript array declaration using the array name, <see langword="Page_Validators" />.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.BaseValidator.Validate">
<summary>
<para>Performs validation on the associated input control and updates the <see cref="P:System.Web.UI.WebControls.BaseValidator.IsValid" /> property.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.BaseValidator.ForeColor">
<summary>
<para> Gets or sets the color of
the message displayed when validation fails.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.BaseValidator.ControlToValidate">
<summary>
<para>Gets or sets the input control to validate.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.BaseValidator.ErrorMessage">
<summary>
<para> Gets or sets the text for the error message.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.BaseValidator.EnableClientScript">
<summary>
<para>Gets or sets a value indicating whether client-side validation is enabled.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.BaseValidator.Enabled">
<summary>
<para> Gets or sets a value that indicates whether the validation control is
enabled.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.BaseValidator.IsValid">
<summary>
<para>Gets or sets a value that indicates whether the associated input control passes
validation.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.BaseValidator.PropertiesValid">
<summary>
<para> Gets a value that indicates whether the control
specified by the <see cref="P:System.Web.UI.WebControls.BaseValidator.ControlToValidate" /> property is a valid control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.BaseValidator.RenderUplevel">
<summary>
<para> Gets a value that indicates whether the client's browser
supports uplevel rendering.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.BaseValidator.Display">
<summary>
<para>Gets or sets the display behavior of the error message in a
validation control.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.BaseCompareValidator.CanConvert(System.String,System.Web.UI.WebControls.ValidationDataType)">
<summary>
<para>Determines whether the specified string can be converted to the specified data type.</para>
</summary>
<param name="text"> The string to test. </param>
<param name=" type">One of the <see cref="T:System.Web.UI.WebControls.ValidationDataType" /> enumeration values.</param>
<returns>
<para>
<see langword="true" /> if the specified data string can
be converted to the specified data type; otherwise,
<see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.BaseCompareValidator.GetFullYear(System.Int32)">
<summary>
<para>Generates the four-digit year representation of the specified two-digit year.</para>
</summary>
<param name="shortYear">A two-digit year.</param>
<returns>
<para>The four-digit year representation of the specified two-digit year.</para>
</returns>
</member>
<member name="P:System.Web.UI.WebControls.BaseCompareValidator.Type">
<summary>
<para> Gets or sets the data type that the values being compared
are converted to before the comparison is made.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.BaseCompareValidator.CutoffYear">
<summary>
<para>Gets the maximum year that can be represented by a two-digit year.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.BaseDataList">
<summary>
<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
listing controls.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.BaseDataList.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.BaseDataList" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.BaseDataList.DataBind">
<summary>
<para> Binds the control and all its child controls to the
data source specified by the <see cref="P:System.Web.UI.WebControls.BaseDataList.DataSource" />
property.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.BaseDataList.IsBindableType(System.Type)">
<summary>
<para>Determines whether the specified data type is bindable to a list control that derives from the
<see cref="T:System.Web.UI.WebControls.BaseDataList" /> class.</para>
</summary>
<param name="type">A <see cref="T:System.Type" qualify="true" /> object that contains the data type to test.</param>
<returns>
<para>
<see langword="true " />if the
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>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.BaseDataList.OnSelectedIndexChanged(System.EventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.BaseDataList.SelectedIndexChanged" /> event of a <see cref="T:System.Web.UI.WebControls.BaseDataList" />. This
allows you to create a custom handler for the event.</para>
</summary>
<param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains the event data.</param>
</member>
<member name="P:System.Web.UI.WebControls.BaseDataList.CellPadding">
<summary>
<para>Gets or sets the amount of space between the contents of a cell and the
cell's border.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.BaseDataList.CellSpacing">
<summary>
<para>Gets or sets the amount of space between cells.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.BaseDataList.Controls">
<summary>
<para>Gets a <see cref="T:System.Web.UI.ControlCollection" qualify="true" /> that contains
a collection of child controls in a data
listing control. </para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.BaseDataList.DataKeys">
<summary>
<para> Gets a <see cref="T:System.Web.UI.WebControls.DataKeyCollection" /> that stores the key values of each record (displayed
as a row) in a data listing control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.BaseDataList.DataKeyField">
<summary>
<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>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.BaseDataList.DataMember">
<summary>
<para> Gets or sets the specific data member in a multimember
data source to bind to a data listing
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.BaseDataList.DataSource">
<summary>
<para> Gets or sets the source containing a list of values used to populate
the items within the control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.BaseDataList.GridLines">
<summary>
<para>Gets or sets a value that specifies whether the border between the cells of a data listing control is displayed.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.BaseDataList.HorizontalAlign">
<summary>
<para> Gets or sets the horizontal alignment of a data listing control within
its container.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.BaseDataList.SelectedIndexChanged">
<summary>
<para>Occurs when a different item is selected in a data listing control between posts to the server.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.BorderStyle">
<summary>
<para> Specifies the border style of a control.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.BorderStyle.NotSet">
<summary>
<para> No set border style.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.BorderStyle.None">
<summary>
<para> No border.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.BorderStyle.Dotted">
<summary>
<para> A dotted line border.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.BorderStyle.Dashed">
<summary>
<para> A dashed line border.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.BorderStyle.Solid">
<summary>
<para> A solid line border.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.BorderStyle.Double">
<summary>
<para> A double solid line border.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.BorderStyle.Groove">
<summary>
<para> A grooved border for a sunken border appearance.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.BorderStyle.Ridge">
<summary>
<para> A ridged border for a raised border appearance.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.BorderStyle.Inset">
<summary>
<para> An inset border for a sunken control appearance.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.BorderStyle.Outset">
<summary>
<para> An outset border for a raised control appearance.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.BoundColumn">
<summary>
<para>A column type for the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control that is bound to a field in a data
source.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.DataGridColumn">
<summary>
<para>Serves as the base class for the different column types of the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.DataGridColumn.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.DataGridColumn.Initialize">
<summary>
<para>Provides the base implementation to reset a column derived from the <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> class to its initial
state.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.DataGridColumn.InitializeCell(System.Web.UI.WebControls.TableCell,System.Int32,System.Web.UI.WebControls.ListItemType)">
<summary>
<para>Provides the base implementation to reset the specified
cell from a column derived from the <see cref="T:System.Web.UI.WebControls.DataGridColumn" />
class its
initial values.</para>
</summary>
<param name="cell">A <see cref="T:System.Web.UI.WebControls.TableCell" /> that represents the cell to reset.</param>
<param name=" columnIndex">The column number where the cell is located.</param>
<param name=" itemType">One of the <see cref="T:System.Web.UI.WebControls.ListItemType" /> values.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataGridColumn.LoadViewState(System.Object)">
<summary>
<para>Loads the state of the <see cref="T:System.Web.UI.WebControls.DataGridColumn" />.</para>
</summary>
<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>
</member>
<member name="M:System.Web.UI.WebControls.DataGridColumn.TrackViewState">
<summary>
<para>Causes tracking of view-state changes to the server
control so they can be stored in the server control's <see cref="T:System.Web.UI.StateBag" qualify="true" />
object.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.DataGridColumn.OnColumnChanged">
<summary>
<para> Calls the <see cref="!:System.Web.UI.Design.WebControls.DataGridDesigner.OnColumnsChanged" qualify="true" /> method.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.DataGridColumn.SaveViewState">
<summary>
<para>Saves the current state of the <see cref="T:System.Web.UI.WebControls.DataGridColumn" />.</para>
</summary>
<returns>
<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>
</returns>
</member>
<member name="P:System.Web.UI.WebControls.DataGridColumn.DesignMode">
<summary>
<para>Gets a value that indicates whether the column is in design mode.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridColumn.FooterStyle">
<summary>
<para>Gets the style properties for the footer section of the column.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridColumn.FooterText">
<summary>
<para> Gets or sets the text displayed in the footer section of
the column.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridColumn.HeaderImageUrl">
<summary>
<para>Gets or sets the location of an image to display
in the header section of the column.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridColumn.HeaderStyle">
<summary>
<para>Gets the style properties for the header section of the
column.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridColumn.HeaderText">
<summary>
<para>Gets or sets the text displayed in the header section of
the column.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridColumn.ItemStyle">
<summary>
<para>Gets the style properties for the item cells of the
column.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridColumn.Owner">
<summary>
<para>Gets the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control that the column is a member of.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridColumn.SortExpression">
<summary>
<para> Gets or sets the name of the field or expression to pass to
the <see cref="M:System.Web.UI.WebControls.DataGrid.OnSortCommand(System.Web.UI.WebControls.DataGridSortCommandEventArgs)" /> method when a column is selected
for
sorting.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridColumn.ViewState">
<summary>
<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>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridColumn.Visible">
<summary>
<para>Gets or sets a value that indicates whether the column
is visible in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.BoundColumn.thisExpr">
<summary>
<para> Represents the string "!". This field is read-only. </para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.BoundColumn.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.BoundColumn" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.BoundColumn.FormatDataValue(System.Object)">
<summary>
<para>Converts the specified value to the format indicated by
the <see cref="P:System.Web.UI.WebControls.BoundColumn.DataFormatString" /> property.</para>
</summary>
<param name="dataValue">The value to format.</param>
<returns>
<para>The specified value converted to the format indicated by
the <see cref="P:System.Web.UI.WebControls.BoundColumn.DataFormatString" /> property.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.BoundColumn.Initialize">
<summary>
<para> Resets the <see cref="T:System.Web.UI.WebControls.BoundColumn" /> to its initial state.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.BoundColumn.InitializeCell(System.Web.UI.WebControls.TableCell,System.Int32,System.Web.UI.WebControls.ListItemType)">
<summary>
<para> Resets the specified cell in the <see cref="T:System.Web.UI.WebControls.BoundColumn" />
to its initial state.</para>
</summary>
<param name="cell">A <see cref="T:System.Web.UI.WebControls.TableCell" /> object that represents the cell to reset.</param>
<param name=" columnIndex">The column number where the cell is located.</param>
<param name=" itemType">One of the <see cref="T:System.Web.UI.WebControls.ListItemType" /> values.</param>
</member>
<member name="P:System.Web.UI.WebControls.BoundColumn.DataField">
<summary>
<para> Gets or sets the field name from the data source to
bind to the <see cref="T:System.Web.UI.WebControls.BoundColumn" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.BoundColumn.DataFormatString">
<summary>
<para>Gets or sets the string that specifies the display format for items in the
column.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.BoundColumn.ReadOnly">
<summary>
<para>Gets or sets a value that indicates whether the items
in the <see cref="T:System.Web.UI.WebControls.BoundColumn" />
can be edited.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.Button">
<summary>
<para>Displays a push button control on the Web page.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.Button.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Button" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.Button.OnClick(System.EventArgs)">
<summary>
<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>
</summary>
<param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains the event data.</param>
</member>
<member name="M:System.Web.UI.WebControls.Button.OnCommand(System.Web.UI.WebControls.CommandEventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.Button.Command" /> event of the <see cref="T:System.Web.UI.WebControls.Button" />
control.</para>
</summary>
<param name="e">A <see cref="T:System.Web.UI.WebControls.CommandEventArgs" /> that contains the event data.</param>
</member>
<member name="P:System.Web.UI.WebControls.Button.CommandName">
<summary>
<para>Gets or sets the command name associated with the <see cref="T:System.Web.UI.WebControls.Button" /> control that
is passed to the <see cref="E:System.Web.UI.WebControls.Button.Command" />
event.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Button.CommandArgument">
<summary>
<para> Gets or sets an optional parameter passed to the <see cref="E:System.Web.UI.WebControls.Button.Command" />
event along with the associated <see cref="P:System.Web.UI.WebControls.Button.CommandName" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Button.CausesValidation">
<summary>
<para>Gets or sets a value indicating whether validation is
performed when the <see cref="T:System.Web.UI.WebControls.Button" /> control is clicked.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Button.Text">
<summary>
<para>Gets or sets the text caption displayed in the <see cref="T:System.Web.UI.WebControls.Button" /> control.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.Button.Click">
<summary>
<para>Occurs when the <see cref="T:System.Web.UI.WebControls.Button" /> control is clicked.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.Button.Command">
<summary>
<para>Occurs when the <see cref="T:System.Web.UI.WebControls.Button" /> control is clicked.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.ButtonColumn">
<summary>
<para>A column type for the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control that contains a user-defined command
button, such as <see langword="Add" /> or <see langword="Remove" />, that
corresponds with each row in the
column.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.ButtonColumn.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.ButtonColumn" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.ButtonColumn.FormatDataTextValue(System.Object)">
<summary>
<para>Converts the specified value to the format indicated by the <see cref="P:System.Web.UI.WebControls.ButtonColumn.DataTextFormatString" /> property.</para>
</summary>
<param name="dataTextValue">The value to format.</param>
<returns>
<para>The specified value converted to the format indicated by
the <see cref="P:System.Web.UI.WebControls.ButtonColumn.DataTextFormatString" /> property.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.ButtonColumn.Initialize">
<summary>
<para>Resets the <see cref="T:System.Web.UI.WebControls.ButtonColumn" /> to its initial state.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.ButtonColumn.InitializeCell(System.Web.UI.WebControls.TableCell,System.Int32,System.Web.UI.WebControls.ListItemType)">
<summary>
<para> Resets a cell in the <see cref="T:System.Web.UI.WebControls.ButtonColumn" /> to its initial state.</para>
</summary>
<param name="cell">A <see cref="T:System.Web.UI.WebControls.TableCell" /> that represents the cell to reset.</param>
<param name=" columnIndex">The column number where the cell is located.</param>
<param name=" itemType">One of the <see cref="T:System.Web.UI.WebControls.ListItemType" /> values.</param>
</member>
<member name="P:System.Web.UI.WebControls.ButtonColumn.ButtonType">
<summary>
<para>Gets or sets the type of button to display in the
<see cref="T:System.Web.UI.WebControls.ButtonColumn" />
column.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ButtonColumn.CommandName">
<summary>
<para>Gets or sets a string that represents the command to
perform when a button in the <see cref="T:System.Web.UI.WebControls.ButtonColumn" qualify="true" />
is clicked.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ButtonColumn.DataTextField">
<summary>
<para>Gets or sets the field name from a data source to bind
to the <see cref="T:System.Web.UI.WebControls.ButtonColumn" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ButtonColumn.DataTextFormatString">
<summary>
<para> Gets or sets the string that specifies
the display format for the caption in each command button.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ButtonColumn.Text">
<summary>
<para>Gets or sets the caption displayed in the command
buttons of the <see cref="T:System.Web.UI.WebControls.ButtonColumn" />.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.ButtonColumnType">
<summary>
<para>Specifies the button type for the <see cref="T:System.Web.UI.WebControls.ButtonColumn" />
object.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ButtonColumnType.LinkButton">
<summary>
<para>A column
of hyperlink style buttons.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ButtonColumnType.PushButton">
<summary>
<para> A column of push buttons.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.Calendar">
<summary>
<para> Displays a single month calendar that allows the user to
select dates and move to the next or previous month.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.Calendar.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Calendar" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.Calendar.OnDayRender(System.Web.UI.WebControls.TableCell,System.Web.UI.WebControls.CalendarDay)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.Calendar.DayRender" /> event of the <see cref="T:System.Web.UI.WebControls.Calendar" /> control
and allows you to provide a custom handler for the <see cref="E:System.Web.UI.WebControls.Calendar.DayRender" /> event.</para>
</summary>
<param name="cell">A <see cref="T:System.Web.UI.WebControls.TableCell" /> that contains information about the cell to render.</param>
<param name=" day">A <see cref="T:System.Web.UI.WebControls.CalendarDay" /> that contains information about the day to render.</param>
</member>
<member name="M:System.Web.UI.WebControls.Calendar.OnSelectionChanged">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.Calendar.SelectionChanged" />event of the <see cref="T:System.Web.UI.WebControls.Calendar" /> control
and allows you to provide a
custom handler for the <see cref="E:System.Web.UI.WebControls.Calendar.SelectionChanged" /> event.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.Calendar.OnVisibleMonthChanged(System.DateTime,System.DateTime)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.Calendar.VisibleMonthChanged" />event of the <see cref="T:System.Web.UI.WebControls.Calendar" /> control
and allows you to provide a
custom handler for the <see cref="E:System.Web.UI.WebControls.Calendar.VisibleMonthChanged" />
event.</para>
</summary>
<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>
<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>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.CellPadding">
<summary>
<para>Gets or sets the amount of space between the contents of a cell and the cell's border.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.CellSpacing">
<summary>
<para> Gets or sets the amount
of space between cells.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.DayHeaderStyle">
<summary>
<para> Gets the style properties for the section that displays the day of the week.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.DayNameFormat">
<summary>
<para>Gets or sets the
name format of days of the week.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.DayStyle">
<summary>
<para> Gets the style properties for the days in the displayed month.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.FirstDayOfWeek">
<summary>
<para> Gets or sets the day of the week to display in the
first day column of the <see cref="T:System.Web.UI.WebControls.Calendar" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.NextMonthText">
<summary>
<para>Gets or sets the text displayed for the next month
navigation control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.NextPrevFormat">
<summary>
<para>Gets or sets the format of the next and previous
month navigation elements in the title section of the <see cref="T:System.Web.UI.WebControls.Calendar" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.NextPrevStyle">
<summary>
<para> Gets the style properties for the next and previous month navigation
elements.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.OtherMonthDayStyle">
<summary>
<para>Gets the style properties for the days on the <see cref="T:System.Web.UI.WebControls.Calendar" /> control
that are not in the displayed month.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.PrevMonthText">
<summary>
<para>Gets or sets the text displayed for the previous month navigation
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.SelectedDate">
<summary>
<para> Gets or sets the selected
date.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.SelectedDates">
<summary>
<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" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.SelectedDayStyle">
<summary>
<para> Gets the style properties for the selected dates.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.SelectionMode">
<summary>
<para> Gets or sets the date selection mode on the
<see cref="T:System.Web.UI.WebControls.Calendar" /> control that specifies
whether the user can select a single day, a week, or an entire month.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.SelectMonthText">
<summary>
<para> Gets or sets the text displayed for the month
selection element in the selector column.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.SelectorStyle">
<summary>
<para>Gets the style properties for the week and month
selector column.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.SelectWeekText">
<summary>
<para> Gets or sets the text displayed for the week
selection element in the selector column.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.ShowDayHeader">
<summary>
<para> Gets or sets a value
indicating whether the heading for the days of the week is displayed.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.ShowGridLines">
<summary>
<para>Gets or sets a value indicating whether the days on the
<see cref="T:System.Web.UI.WebControls.Calendar" />
control are separated with grid lines.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.ShowNextPrevMonth">
<summary>
<para>Gets or sets a value indicating whether the <see cref="T:System.Web.UI.WebControls.Calendar" /> control
displays the next and previous month navigation
elements in the title section.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.ShowTitle">
<summary>
<para> Gets or
sets a value indicating whether the title section is displayed.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.TitleFormat">
<summary>
<para> Gets or sets the title format for the title
section.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.TitleStyle">
<summary>
<para>Gets the style properties of the title heading for the <see cref="T:System.Web.UI.WebControls.Calendar" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.TodayDayStyle">
<summary>
<para>Gets the style properties for today's date on the
<see cref="T:System.Web.UI.WebControls.Calendar" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.TodaysDate">
<summary>
<para> Gets or sets the value for today's date.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.VisibleDate">
<summary>
<para>Gets or sets the date that specifies the month to
display on the <see cref="T:System.Web.UI.WebControls.Calendar" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Calendar.WeekendDayStyle">
<summary>
<para>Gets the style properties for the weekend dates on the
<see cref="T:System.Web.UI.WebControls.Calendar" />
control.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.Calendar.DayRender">
<summary>
<para>Occurs when each day is created in the control hierarchy for the <see cref="T:System.Web.UI.WebControls.Calendar" />
control.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.Calendar.SelectionChanged">
<summary>
<para>Occurs when the user selects a day, a week, or an entire month by clicking the date selector controls. </para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.Calendar.VisibleMonthChanged">
<summary>
<para>Occurs when the user clicks on the next or previous
month navigation controls on the title heading.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.CalendarDay">
<summary>
<para> Represents a date in the <see cref="T:System.Web.UI.WebControls.Calendar" /> control.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.CalendarDay.#ctor(System.DateTime,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.CalendarDay" /> class.</para>
</summary>
<param name="date">A <see cref="T:System.DateTime" qualify="true" /> object that contains the date represented by an instance of this class.</param>
<param name=" isWeekend">
<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>
<param name=" isToday">
<see langword="true" /> to indicate that the date represented by an instance of this class is the current date; otherwise, <see langword="false" />.</param>
<param name=" isSelected">
<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>
<param name=" isOtherMonth">
<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>
<param name=" dayNumberText">The day number for the date represented by this class.</param>
</member>
<member name="P:System.Web.UI.WebControls.CalendarDay.Date">
<summary>
<para> Gets the date represented by an instance of this class. This
property is read-only.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.CalendarDay.DayNumberText">
<summary>
<para> Gets the string equivalent of the day number for the
date represented by an instance of the <see cref="T:System.Web.UI.WebControls.CalendarDay" /> class. This property is read-only.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.CalendarDay.IsOtherMonth">
<summary>
<para>Gets a value that indicates whether the date represented
by an instance of this class is in a month other than the month
displayed in the <see cref="T:System.Web.UI.WebControls.Calendar" />
control. This
property is read-only.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.CalendarDay.IsSelectable">
<summary>
<para>Gets or sets a value that indicates whether the date
represented by an instance of this class can be selected in the <see cref="T:System.Web.UI.WebControls.Calendar" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.CalendarDay.IsSelected">
<summary>
<para> Gets a value that indicates whether the date represented by
an instance of this class is selected in the <see cref="T:System.Web.UI.WebControls.Calendar" /> control. This property is read-only.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.CalendarDay.IsToday">
<summary>
<para>Gets a value that indicates whether the date represented by
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>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.CalendarDay.IsWeekend">
<summary>
<para> Gets a value that indicates whether the date represented by an instance
of this class is a either Saturday or Sunday. This property is read-only.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.CalendarSelectionMode">
<summary>
<para> Specifies the date selection mode of the <see cref="T:System.Web.UI.WebControls.Calendar" />
control.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.CalendarSelectionMode.None">
<summary>
<para> No dates can be selected on the <see cref="T:System.Web.UI.WebControls.Calendar" /> control.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.CalendarSelectionMode.Day">
<summary>
<para> A single date can be
selected on the <see cref="T:System.Web.UI.WebControls.Calendar" />
control.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.CalendarSelectionMode.DayWeek">
<summary>
<para> A single date or
entire week can be selected on the <see cref="T:System.Web.UI.WebControls.Calendar" />
control.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.CalendarSelectionMode.DayWeekMonth">
<summary>
<para>
A single date, week, or entire month can be selected on the <see cref="T:System.Web.UI.WebControls.Calendar" />
control.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.CheckBox">
<summary>
<para> Displays a check box that allows the user to
select a <see langword="true" /> or <see langword="false" />
condition.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.CheckBox.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.CheckBox" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.CheckBox.OnCheckedChanged(System.EventArgs)">
<summary>
<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
allows you to handle the event
directly.</para>
</summary>
<param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains the event data.</param>
</member>
<member name="P:System.Web.UI.WebControls.CheckBox.AutoPostBack">
<summary>
<para>Gets or sets a value indicating whether the <see cref="T:System.Web.UI.WebControls.CheckBox" /> state
automatically posts back to the server
when
clicked.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.CheckBox.Checked">
<summary>
<para> Gets or sets a value indicating whether the
<see cref="T:System.Web.UI.WebControls.CheckBox" /> control
is checked.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.CheckBox.Text">
<summary>
<para>Gets or sets the text label associated with the <see cref="T:System.Web.UI.WebControls.CheckBox" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.CheckBox.TextAlign">
<summary>
<para> Gets or sets
the alignment of the text label associated with the <see cref="T:System.Web.UI.WebControls.CheckBox" /> control.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.CheckBox.CheckedChanged">
<summary>
<para>Occurs when the value of the <see cref="P:System.Web.UI.WebControls.CheckBox.Checked" /> property changes between
posts
to the server.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.CheckBoxList">
<summary>
<para>Creates a multi selection check box group that can be
dynamically created by binding the control to a data source.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.ListControl">
<summary>
<para> Serves
as the abstract base class that defines the properties,
methods, and events common for all list-type controls.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.ListControl.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.ListControl" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.ListControl.OnSelectedIndexChanged(System.EventArgs)">
<summary>
<para> Raises the <see cref="E:System.Web.UI.WebControls.ListControl.SelectedIndexChanged" /> event.</para>
</summary>
<param name="e">An <see cref="T:System.EventArgs" qualify="true" /> that contains the event data. </param>
</member>
<member name="P:System.Web.UI.WebControls.ListControl.AutoPostBack">
<summary>
<para> Gets or
sets a value indicating whether a postback to the server automatically occurs
when the user changes the list selection.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ListControl.DataMember">
<summary>
<para>Gets or sets the specific table in the <see cref="P:System.Web.UI.WebControls.ListControl.DataSource" /> to bind to the
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ListControl.DataSource">
<summary>
<para>
Gets or sets the data source
that populates the items of the list control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ListControl.DataTextField">
<summary>
<para> Gets or sets the field of the
data source that provides the text content of the list items.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ListControl.DataTextFormatString">
<summary>
<para> Gets or sets the formatting string used to control how data bound to the
list control is displayed.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ListControl.DataValueField">
<summary>
<para> Gets or sets the field of the data source that provides the value of each
list item.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ListControl.Items">
<summary>
<para>
Gets the collection of items
in the
list control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ListControl.SelectedIndex">
<summary>
<para> Gets or sets the lowest ordinal index of the selected items in the
list.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ListControl.SelectedItem">
<summary>
<para>Gets the selected item with the lowest index in the list control. </para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.ListControl.SelectedIndexChanged">
<summary>
<para>Occurs when the selection on the list changes and is posted back to the
server.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.IRepeatInfoUser">
<summary>
<para> Defines the properties and methods that must be implemented by any list control that
repeats a list of items.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.IRepeatInfoUser.GetItemStyle(System.Web.UI.WebControls.ListItemType,System.Int32)">
<summary>
<para>Retrieves the style of the specified item type at the
specified index in the list control.</para>
</summary>
<param name="itemType">One of the <see cref="T:System.Web.UI.WebControls.ListItemType" /> enumeration values.</param>
<param name=" repeatIndex">An ordinal index that specifies the location of the item in the list control.</param>
<returns>
<para>A <see cref="T:System.Web.UI.WebControls.Style" />
that represents the style of the specified item type at
the specified index in the
list control.</para>
</returns>
</member>
<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)">
<summary>
<para>Renders an item in the list with the specified information.</para>
</summary>
<param name=" itemType">One of the <see cref="T:System.Web.UI.WebControls.ListItemType" /> enumeration values.</param>
<param name=" repeatIndex">An ordinal index that specifies the location of the item in the list control.</param>
<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>
<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>
</member>
<member name="P:System.Web.UI.WebControls.IRepeatInfoUser.HasHeader">
<summary>
<para>Gets a value indicating whether the list control contains a
heading section.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.IRepeatInfoUser.HasFooter">
<summary>
<para>Gets a value indicating whether the list control contains
a footer section.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.IRepeatInfoUser.HasSeparators">
<summary>
<para>Gets a value indicating whether the list control contains a separator between
items in
the list.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.IRepeatInfoUser.RepeatedItemCount">
<summary>
<para>Gets the number of items in the list control.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.CheckBoxList.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> class.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.CheckBoxList.CellPadding">
<summary>
<para> Gets or sets the distance (in pixels) between the border
and contents of the cell.
</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.CheckBoxList.CellSpacing">
<summary>
<para> Gets or sets the
distance (in pixels) between cells.
</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.CheckBoxList.RepeatColumns">
<summary>
<para>Gets or sets the number of columns to display in the
<see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.CheckBoxList.RepeatDirection">
<summary>
<para> Gets or sets a value that indicates whether the control displays
vertically or horizontally.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.CheckBoxList.RepeatLayout">
<summary>
<para> Gets or sets the layout of the check
boxes.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.CheckBoxList.TextAlign">
<summary>
<para> Gets or
sets the text alignment for the check boxes within the group.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.DataGridColumnCollection">
<summary>
<para>A collection of <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived column objects that represent
the columns in a <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.
This class cannot be
inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.DataGridColumnCollection.#ctor(System.Web.UI.WebControls.DataGrid,System.Collections.ArrayList)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" /> class.</para>
</summary>
<param name="owner">The <see cref="T:System.Web.UI.WebControls.DataGrid" /> control that corresponds with this collection.</param>
<param name=" columns">A <see cref="T:System.Collections.ArrayList" qualify="true" /> object that stores the collection of columns.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataGridColumnCollection.Add(System.Web.UI.WebControls.DataGridColumn)">
<summary>
<para>Appends the specified <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived column object to the end of the
<see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" />.</para>
</summary>
<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>
</member>
<member name="M:System.Web.UI.WebControls.DataGridColumnCollection.AddAt(System.Int32,System.Web.UI.WebControls.DataGridColumn)">
<summary>
<para>Inserts a <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived column object in the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" />
at the specified index.</para>
</summary>
<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>
<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>
</member>
<member name="M:System.Web.UI.WebControls.DataGridColumnCollection.Clear">
<summary>
<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>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.DataGridColumnCollection.CopyTo(System.Array,System.Int32)">
<summary>
<para>Copies the items from the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" /> to the specified <see cref="T:System.Array" qualify="true" />
object, starting at
the specified index in the <see cref="T:System.Array" qualify="true" /> object.</para>
</summary>
<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>
<param name=" index">The first position in the specified <see cref="T:System.Array" qualify="true" /> object to receive the copied contents.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataGridColumnCollection.GetEnumerator">
<summary>
<para>Returns an <see cref="T:System.Collections.IEnumerator" qualify="true" /> interface that contains all
<see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived
column objects in the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" />.</para>
</summary>
<returns>
<para>A <see cref="T:System.Collections.IEnumerator" qualify="true" /> interface that contains all <see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived
column objects in the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.DataGridColumnCollection.IndexOf(System.Web.UI.WebControls.DataGridColumn)">
<summary>
<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>
</summary>
<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>
<returns>
<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
<see cref="T:System.Web.UI.WebControls.DataGridColumn" /> derived object is not found.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.DataGridColumnCollection.RemoveAt(System.Int32)">
<summary>
<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
index.</para>
</summary>
<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>
</member>
<member name="M:System.Web.UI.WebControls.DataGridColumnCollection.Remove(System.Web.UI.WebControls.DataGridColumn)">
<summary>
<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>
</summary>
<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>
</member>
<member name="P:System.Web.UI.WebControls.DataGridColumnCollection.Count">
<summary>
<para>Gets the number of columns in the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridColumnCollection.IsReadOnly">
<summary>
<para>Gets a value that indicates whether the columns in the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" />
can be modified.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridColumnCollection.IsSynchronized">
<summary>
<para>Gets a value indicating whether access to the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" /> is synchronized (thread-safe).</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridColumnCollection.SyncRoot">
<summary>
<para>Gets the object that can be used to synchronize access
to the <see cref="T:System.Web.UI.WebControls.DataGridColumnCollection" />. </para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridColumnCollection.Item(System.Int32)">
<summary>
<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
index.</para>
</summary>
<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>
</member>
<member name="T:System.Web.UI.WebControls.CommandEventArgs">
<summary>
<para>Provides data for the <see langword="Command" /> event.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.CommandEventArgs.#ctor(System.Web.UI.WebControls.CommandEventArgs)">
<summary>
<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>
</summary>
<param name="e">A <see cref="T:System.Web.UI.WebControls.CommandEventArgs" /> that contains the event data.</param>
</member>
<member name="M:System.Web.UI.WebControls.CommandEventArgs.#ctor(System.String,System.Object)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.CommandEventArgs" /> class with the specified command name
and argument.</para>
</summary>
<param name="commandName">The name of the command.</param>
<param name=" argument">A <see cref="T:System.Object" qualify="true" /> that contains the arguments for the command.</param>
</member>
<member name="P:System.Web.UI.WebControls.CommandEventArgs.CommandName">
<summary>
<para> Gets the name of the command.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.CommandEventArgs.CommandArgument">
<summary>
<para> Gets the argument for the command.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.CommandEventHandler">
<summary>
<para>Represents the method that will handle
the <see langword="Command" /> event.</para>
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:System.Web.UI.WebControls.CommandEventArgs" /> that contains the event data.</param>
</member>
<member name="T:System.Web.UI.WebControls.CompareValidator">
<summary>
<para> Compares the value entered by the user into an input control with
the value entered into another input control or a constant value.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.CompareValidator.ControlToCompare">
<summary>
<para> Gets or sets the input control to compare with the input control being validated.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.CompareValidator.Operator">
<summary>
<para>Gets or sets the comparison operation to perform.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.CompareValidator.ValueToCompare">
<summary>
<para>Gets or sets a constant value to compare with the value entered by the user into the input control being validated.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.CustomValidator">
<summary>
<para> Performs user-defined validation on an input control.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.CustomValidator.OnServerValidate(System.String)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.CustomValidator.ServerValidate" /> event for the <see cref="T:System.Web.UI.WebControls.CustomValidator" />
control.</para>
</summary>
<param name="value">The value to validate.</param>
<returns>
<para>
<see langword="true" /> if the value
specified by the <paramref name="value" /> parameter passes validation; otherwise, <see langword="false" />.</para>
</returns>
</member>
<member name="P:System.Web.UI.WebControls.CustomValidator.ClientValidationFunction">
<summary>
<para> Gets or sets the name of the custom client-side script function used
for validation.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.CustomValidator.ServerValidate">
<summary>
<para>Occurs when validation is performed on the
server.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.DataGrid">
<summary>
<para> A data bound list control that displays the items from
data source in a table. The <see cref="T:System.Web.UI.WebControls.DataGrid" />
control allows you to select, sort, and
edit these items.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.DataGrid.SortCommandName">
<summary>
<para> Represents the <see langword="Sort" />
command name. This field is read-only.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.DataGrid.SelectCommandName">
<summary>
<para> Represents the <see langword="Select " />command name. This field is read-only.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.DataGrid.EditCommandName">
<summary>
<para> Represents the <see langword="Edit" />
command name. This field is read-only.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.DataGrid.DeleteCommandName">
<summary>
<para> Represents the <see langword="Delete" /> command name. This field is read-only.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.DataGrid.UpdateCommandName">
<summary>
<para> Represents the <see langword="Update" /> command name. This field is read-only.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.DataGrid.CancelCommandName">
<summary>
<para> Represents the <see langword="Cancel" /> command name. This field is read-only.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.DataGrid.PageCommandName">
<summary>
<para> Represents the <see langword="Page " />command name. This field is read-only.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.DataGrid.NextPageCommandArgument">
<summary>
<para> Represents the <see langword="Next" /> command argument. This field is read-only.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.DataGrid.PrevPageCommandArgument">
<summary>
<para> Represents the <see langword="Prev" /> command argument. This field is read-only.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.DataGrid.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataGrid" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.DataGrid.OnCancelCommand(System.Web.UI.WebControls.DataGridCommandEventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.DataGrid.CancelCommand" /> event. This allows you to
provide a custom handler for the event.</para>
</summary>
<param name="e">A <see cref="T:System.Web.UI.WebControls.DataGridCommandEventArgs" /> that contains event data.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataGrid.OnDeleteCommand(System.Web.UI.WebControls.DataGridCommandEventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.DataGrid.DeleteCommand" /> event. This allows you to
provide a custom handler for the event.</para>
</summary>
<param name="e">A <see cref="T:System.Web.UI.WebControls.DataGridCommandEventArgs" /> that contains event data.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataGrid.OnEditCommand(System.Web.UI.WebControls.DataGridCommandEventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.DataGrid.EditCommand" /> event. This allows you to
provide a custom handler for the event.</para>
</summary>
<param name="e">A <see cref="T:System.Web.UI.WebControls.DataGridCommandEventArgs" /> that contains event data.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataGrid.OnItemCommand(System.Web.UI.WebControls.DataGridCommandEventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.DataGrid.ItemCommand" /> event. This allows you to
provide a custom handler for the event. This allows you to
provide a custom handler for the event.</para>
</summary>
<param name="e">A <see cref="T:System.Web.UI.WebControls.DataGridCommandEventArgs" /> that contains event data.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataGrid.OnItemCreated(System.Web.UI.WebControls.DataGridItemEventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.DataGrid.ItemCreated" /> event. This allows you to
provide a custom handler for the event.</para>
</summary>
<param name="e">A <see cref="T:System.Web.UI.WebControls.DataGridItemEventArgs" /> that contains event data.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataGrid.OnItemDataBound(System.Web.UI.WebControls.DataGridItemEventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.DataGrid.ItemDataBound" /> event. This allows you to
provide a custom handler for the event.</para>
</summary>
<param name="e">A <see cref="T:System.Web.UI.WebControls.DataGridItemEventArgs" /> that contains event data.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataGrid.OnPageIndexChanged(System.Web.UI.WebControls.DataGridPageChangedEventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.DataGrid.PageIndexChanged" /> event. This allows you to
provide a custom handler for the event.</para>
</summary>
<param name="e">A <see cref="T:System.Web.UI.WebControls.DataGridPageChangedEventArgs" /> that contains event data.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataGrid.OnSortCommand(System.Web.UI.WebControls.DataGridSortCommandEventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.DataGrid.SortCommand" /> event. This allows you to
provide a custom handler for the event.</para>
</summary>
<param name="e">A <see cref="T:System.Web.UI.WebControls.DataGridSortCommandEventArgs" /> that contains event data.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataGrid.OnUpdateCommand(System.Web.UI.WebControls.DataGridCommandEventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.DataGrid.UpdateCommand" /> event. This allows you to
provide a custom handler for the event.</para>
</summary>
<param name="e">A <see cref="T:System.Web.UI.WebControls.DataGridCommandEventArgs" /> that contains event data.</param>
</member>
<member name="P:System.Web.UI.WebControls.DataGrid.AllowCustomPaging">
<summary>
<para>Gets or sets a value that indicates whether custom paging is enabled.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGrid.AllowPaging">
<summary>
<para>Gets or sets a value that indicates whether paging is enabled.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGrid.AllowSorting">
<summary>
<para>Gets or sets a value that indicates whether sorting is enabled.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGrid.AlternatingItemStyle">
<summary>
<para>Gets the style properties for alternating items in the
<see cref="T:System.Web.UI.WebControls.DataGrid" />
control. </para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGrid.AutoGenerateColumns">
<summary>
<para>Gets or sets a value that indicates whether <see cref="T:System.Web.UI.WebControls.BoundColumn" />
objects are automatically created and displayed in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control for each field in the data
source.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGrid.BackImageUrl">
<summary>
<para>Gets or sets the URL of an image to display in the
background of the <see cref="T:System.Web.UI.WebControls.DataGrid" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGrid.CurrentPageIndex">
<summary>
<para> Gets or sets the index of the currently displayed page. </para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGrid.Columns">
<summary>
<para>Gets a collection of objects that represent the columns of
the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGrid.EditItemIndex">
<summary>
<para> Gets or sets the index of an item in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control to edit.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGrid.EditItemStyle">
<summary>
<para> Gets the style properties of the item selected for editing in the
<see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGrid.FooterStyle">
<summary>
<para> Gets the style properties of the footer section in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGrid.HeaderStyle">
<summary>
<para> Gets the style properties of the heading section in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGrid.Items">
<summary>
<para>Gets a collection of <see cref="T:System.Web.UI.WebControls.DataGridItem" /> objects that
represent the individual items in the <see cref="T:System.Web.UI.WebControls.DataGrid" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGrid.ItemStyle">
<summary>
<para> Gets the style properties of the items in the
<see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGrid.PageCount">
<summary>
<para> Gets the total number of pages required to display
the items in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGrid.PagerStyle">
<summary>
<para> Gets the style properties of the paging section of the
<see cref="T:System.Web.UI.WebControls.DataGrid" />
control. </para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGrid.PageSize">
<summary>
<para>Gets or sets the number of items to display on a single
page of the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGrid.SelectedIndex">
<summary>
<para>Gets or sets the index of the selected item in the
<see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGrid.SelectedItem">
<summary>
<para>Gets a <see cref="T:System.Web.UI.WebControls.DataGridItem" /> object that
represents the selected item in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGrid.SelectedItemStyle">
<summary>
<para> Gets the style properties of the currently selected
item in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGrid.ShowFooter">
<summary>
<para> Gets or sets a value that indicates whether the footer is displayed in the
<see cref="T:System.Web.UI.WebControls.DataGrid" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGrid.ShowHeader">
<summary>
<para> Gets or sets a value that indicates whether the header is displayed in the
<see cref="T:System.Web.UI.WebControls.DataGrid" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGrid.VirtualItemCount">
<summary>
<para>Gets or sets the virtual number of items in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control
when custom paging is used.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.DataGrid.CancelCommand">
<summary>
<para> Occurs when the <see langword="Cancel" /> button is
clicked for an item in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.DataGrid.DeleteCommand">
<summary>
<para>Occurs when the <see langword="Delete" /> button is
clicked for an item in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.DataGrid.EditCommand">
<summary>
<para>Occurs when the <see langword="Edit" /> button is clicked
for an item in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.DataGrid.ItemCommand">
<summary>
<para>Occurs when any button is clicked in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.DataGrid.ItemCreated">
<summary>
<para>Occurs on the server when an item in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control is created.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.DataGrid.ItemDataBound">
<summary>
<para> Occurs after an item is data bound to
the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.DataGrid.PageIndexChanged">
<summary>
<para>Occurs when one of the page selection elements is clicked.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.DataGrid.SortCommand">
<summary>
<para>Occurs when a column is sorted.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.DataGrid.UpdateCommand">
<summary>
<para>Occurs when the <see langword="Update" /> button is
clicked for an item in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.DataGridCommandEventArgs">
<summary>
<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" />
control. This class cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.DataGridCommandEventArgs.#ctor(System.Web.UI.WebControls.DataGridItem,System.Object,System.Web.UI.WebControls.CommandEventArgs)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataGridCommandEventArgs" />
class.</para>
</summary>
<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>
<param name=" commandSource">The source of the command.</param>
<param name=" originalArgs">A <see cref="T:System.Web.UI.WebControls.CommandEventArgs" /> that contains the event data.</param>
</member>
<member name="P:System.Web.UI.WebControls.DataGridCommandEventArgs.CommandSource">
<summary>
<para> Gets the source of the command.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridCommandEventArgs.Item">
<summary>
<para> Gets the item containing the command source in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.DataGridCommandEventHandler">
<summary>
<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>
</summary>
<param name="source">The source of the event.</param>
<param name=" e">A <see cref="T:System.Web.UI.WebControls.DataGridCommandEventArgs" /> that contains the event data.</param>
</member>
<member name="T:System.Web.UI.WebControls.DataGridItem">
<summary>
<para> Represents an item (row) in the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.TableRow">
<summary>
<para> Represents a row in a <see cref="T:System.Web.UI.WebControls.Table" />
control.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.TableRow.#ctor">
<summary>
<para> Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.TableRow" /> class.
</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TableRow.Cells">
<summary>
<para> Gets a collection of <see cref="T:System.Web.UI.WebControls.TableCell" />
objects that represent the cells of a row in a
<see cref="T:System.Web.UI.WebControls.Table" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TableRow.HorizontalAlign">
<summary>
<para> Gets or sets the horizontal alignment of the contents in the row.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TableRow.VerticalAlign">
<summary>
<para>Gets or sets the vertical alignment of the contents in the row.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.TableRow.CellControlCollection.Add(System.Web.UI.Control)">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.TableRow.CellControlCollection.AddAt(System.Int32,System.Web.UI.Control)">
<summary>
<para>Adds the specified <see cref="T:System.Web.UI.Control" /> object to the collection. The new control is added
to the array at the specified index location.</para>
</summary>
<param name=" index">The location in the array to add the child control.</param>
<param name="child">The <see langword="Control" /> object to add to the collection.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataGridItem.#ctor(System.Int32,System.Int32,System.Web.UI.WebControls.ListItemType)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataGridItem" /> class.</para>
</summary>
<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>
<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>
<param name="itemType">One of the <see cref="T:System.Web.UI.WebControls.ListItemType" /> values.</param>
</member>
<member name="P:System.Web.UI.WebControls.DataGridItem.DataItem">
<summary>
<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" />
control. </para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridItem.DataSetIndex">
<summary>
<para> Gets the index number the
<see cref="T:System.Web.UI.WebControls.DataGridItem" /> object from the bound data
source.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridItem.ItemIndex">
<summary>
<para> Gets the index of the
<see cref="T:System.Web.UI.WebControls.DataGridItem" /> object from the <see cref="P:System.Web.UI.WebControls.DataGrid.Items" />
collection of the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control. </para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridItem.ItemType">
<summary>
<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>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.DataGridItemCollection">
<summary>
<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>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.DataGridItemCollection.#ctor(System.Collections.ArrayList)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataGridItemCollection" /> class.</para>
</summary>
<param name="items">A <see cref="T:System.Collections.ArrayList" qualify="true" /> object that contains the items with which to initialize the collection. </param>
</member>
<member name="M:System.Web.UI.WebControls.DataGridItemCollection.CopyTo(System.Array,System.Int32)">
<summary>
<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,
starting at the specified index in the <see cref="T:System.Array" qualify="true" /> object.</para>
</summary>
<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>
<param name=" index">The first position in the specified <see cref="T:System.Array" qualify="true" /> object to receive the copied contents.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataGridItemCollection.GetEnumerator">
<summary>
<para>Returns 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>
</summary>
<returns>
<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>
</returns>
</member>
<member name="P:System.Web.UI.WebControls.DataGridItemCollection.Count">
<summary>
<para>Gets the number of <see cref="T:System.Web.UI.WebControls.DataGridItem" /> objects in the collection.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridItemCollection.IsReadOnly">
<summary>
<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" />
can be modified. </para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridItemCollection.IsSynchronized">
<summary>
<para>Gets a value indicating whether access to the <see cref="T:System.Web.UI.WebControls.DataGridItemCollection" />
is synchronized (thread-safe).</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridItemCollection.SyncRoot">
<summary>
<para>Gets the object that can be used to synchronize access to
the <see cref="T:System.Web.UI.WebControls.DataGridItemCollection" />. </para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridItemCollection.Item(System.Int32)">
<summary>
<para>Gets the <see cref="T:System.Web.UI.WebControls.DataGridItem" /> object at the specified index in the
collection.</para>
</summary>
<param name="index">The zero-based index of the <see cref="T:System.Web.UI.WebControls.DataGridItem" /> object to retrieve from the collection.</param>
</member>
<member name="T:System.Web.UI.WebControls.DataGridItemEventArgs">
<summary>
<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.
This class cannot be
inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.DataGridItemEventArgs.#ctor(System.Web.UI.WebControls.DataGridItem)">
<summary>
<para>Initializes a new instance of <see cref="T:System.Web.UI.WebControls.DataGridItemEventArgs" /> class.</para>
</summary>
<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>
</member>
<member name="P:System.Web.UI.WebControls.DataGridItemEventArgs.Item">
<summary>
<para> Gets the referenced item in the <see cref="T:System.Web.UI.WebControls.DataGrid" />
control when the event is raised.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.DataGridItemEventHandler">
<summary>
<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>
</summary>
<param name="sender">The source of the event.</param>
<param name=" e">A <see cref="T:System.Web.UI.WebControls.DataGridItemEventArgs" /> than contains the event data.</param>
</member>
<member name="T:System.Web.UI.WebControls.LinkButton">
<summary>
<para> Displays a hyperlink style button control on a Web page.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.LinkButton.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.LinkButton" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.LinkButton.OnClick(System.EventArgs)">
<summary>
<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>
</summary>
<param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains the event data.</param>
</member>
<member name="M:System.Web.UI.WebControls.LinkButton.OnCommand(System.Web.UI.WebControls.CommandEventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.LinkButton.Command" /> event of
the <see cref="T:System.Web.UI.WebControls.LinkButton" /> control.</para>
</summary>
<param name="e">A <see cref="T:System.Web.UI.WebControls.CommandEventArgs" /> that contains the event data.</param>
</member>
<member name="P:System.Web.UI.WebControls.LinkButton.CommandName">
<summary>
<para>Gets or sets the command name associated with the
<see cref="T:System.Web.UI.WebControls.LinkButton" /> control.
This value is passed to the <see cref="E:System.Web.UI.WebControls.LinkButton.Command" /> event handler along with the
<see cref="P:System.Web.UI.WebControls.LinkButton.CommandArgument" />
property.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.LinkButton.CommandArgument">
<summary>
<para> Gets or sets an optional argument passed to the
<see cref="E:System.Web.UI.WebControls.LinkButton.Command" /> event handler along with the
associated <see cref="P:System.Web.UI.WebControls.LinkButton.CommandName" />
property.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.LinkButton.CausesValidation">
<summary>
<para>Gets or sets a value indicating whether validation is
performed when the <see cref="T:System.Web.UI.WebControls.LinkButton" />
control is clicked.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.LinkButton.Text">
<summary>
<para>Gets or sets the text caption displayed on the <see cref="T:System.Web.UI.WebControls.LinkButton" /> control.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.LinkButton.Click">
<summary>
<para>Occurs when the <see cref="T:System.Web.UI.WebControls.LinkButton" /> control is clicked.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.LinkButton.Command">
<summary>
<para>Occurs when the <see cref="T:System.Web.UI.WebControls.Button" />
control is clicked.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.DataGridPageChangedEventArgs">
<summary>
<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.
This class cannot be
inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.DataGridPageChangedEventArgs.#ctor(System.Object,System.Int32)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataGridPageChangedEventArgs" /> class.</para>
</summary>
<param name="commandSource">The source of the command.</param>
<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>
</member>
<member name="P:System.Web.UI.WebControls.DataGridPageChangedEventArgs.CommandSource">
<summary>
<para> Gets the source of the command.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridPageChangedEventArgs.NewPageIndex">
<summary>
<para>Gets the index of the page selected by the user in the page
selection element of the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.DataGridPageChangedEventHandler">
<summary>
<para>Represents the method that will handle the <see cref="E:System.Web.UI.WebControls.DataGrid.PageIndexChanged" />
event of the <see cref="T:System.Web.UI.WebControls.DataGrid" />
control.</para>
</summary>
<param name="source">The source of the event.</param>
<param name=" e">A <see cref="T:System.Web.UI.WebControls.DataGridPageChangedEventArgs" /> that contains the event data.</param>
</member>
<member name="T:System.Web.UI.WebControls.DataGridPagerStyle">
<summary>
<para>Specifies the style for the pager of the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control. This class cannot be inherited.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.TableItemStyle">
<summary>
<para> Represents the style properties
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>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.Style">
<summary>
<para> Represents the style of a
Web server control.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.Style.#ctor">
<summary>
<para> Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Style" /> class using default values.
</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.Style.#ctor(System.Web.UI.StateBag)">
<summary>
<para> Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Style" /> class with the
specified state bag information.
</para>
</summary>
<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>
</member>
<member name="M:System.Web.UI.WebControls.Style.AddAttributesToRender(System.Web.UI.HtmlTextWriter)">
<summary>
<para> Adds HTML attributes and styles that need to be rendered
to the specified <see cref="T:System.Web.UI.HtmlTextWriter" qualify="true" />. This method is primarily used by control
developers.</para>
</summary>
<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>
</member>
<member name="M:System.Web.UI.WebControls.Style.AddAttributesToRender(System.Web.UI.HtmlTextWriter,System.Web.UI.WebControls.WebControl)">
<summary>
<para> Adds HTML attributes and styles that need to be rendered
to the specified <see cref="T:System.Web.UI.HtmlTextWriter" qualify="true" /> and Web
server control. This method is primarily used by control
developers.</para>
</summary>
<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>
<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>
</member>
<member name="M:System.Web.UI.WebControls.Style.CopyFrom(System.Web.UI.WebControls.Style)">
<summary>
<para>Duplicates the style properties of the specified
<see cref="T:System.Web.UI.WebControls.Style" /> into the instance of the <see cref="T:System.Web.UI.WebControls.Style" /> class that this
method is called from.</para>
</summary>
<param name="s">A <see cref="T:System.Web.UI.WebControls.Style" /> that represents the style to copy.</param>
</member>
<member name="M:System.Web.UI.WebControls.Style.MergeWith(System.Web.UI.WebControls.Style)">
<summary>
<para> Combines the style properties of the specified
<see cref="T:System.Web.UI.WebControls.Style" /> with the instance of the <see cref="T:System.Web.UI.WebControls.Style" /> class that this
method is called from.</para>
</summary>
<param name="s">A <see cref="T:System.Web.UI.WebControls.Style" /> that represents the style to combine.</param>
</member>
<member name="M:System.Web.UI.WebControls.Style.Reset">
<summary>
<para> Removes any defined style elements from the state bag.
</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Style.BackColor">
<summary>
<para>Gets or sets the background color of the Web server control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Style.BorderColor">
<summary>
<para>Gets or sets the border color of the Web server control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Style.BorderWidth">
<summary>
<para>Gets or sets the border width of the Web server control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Style.BorderStyle">
<summary>
<para>Gets or sets the border style of the Web server control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Style.CssClass">
<summary>
<para>Gets or sets the CSS class rendered by the Web server control on the client.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Style.Font">
<summary>
<para>Gets the font properties associated with the Web server control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Style.ForeColor">
<summary>
<para>Gets or sets the foreground color (typically the color of the text) of the Web
server control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Style.Height">
<summary>
<para> Gets or sets the height of the Web server control.
</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Style.Width">
<summary>
<para> Gets or sets the width of the Web server control.
</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Style.IsTrackingViewState">
<summary>
<para> Returns a value indicating whether
any style elements have been defined in the state bag.
</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.TableItemStyle.#ctor">
<summary>
<para>Creates a new instance of the <see cref="T:System.Web.UI.WebControls.TableItemStyle" /> class using default values.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.TableItemStyle.#ctor(System.Web.UI.StateBag)">
<summary>
<para> Creates a new instance of the <see cref="T:System.Web.UI.WebControls.TableItemStyle" /> class with the
specified state bag.
</para>
</summary>
<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>
</member>
<member name="M:System.Web.UI.WebControls.TableItemStyle.CopyFrom(System.Web.UI.WebControls.Style)">
<summary>
<para>Duplicates the style properties of the specified
<see cref="T:System.Web.UI.WebControls.Style" /> into the instance of the <see cref="T:System.Web.UI.WebControls.TableItemStyle" /> class that this
method is called from.</para>
</summary>
<param name="s">A <see cref="T:System.Web.UI.WebControls.Style" /> that represents the style to copy.</param>
</member>
<member name="M:System.Web.UI.WebControls.TableItemStyle.MergeWith(System.Web.UI.WebControls.Style)">
<summary>
<para> Combines the style properties of the specified
<see cref="T:System.Web.UI.WebControls.Style" /> into the instance of the <see cref="T:System.Web.UI.WebControls.TableItemStyle" /> class that this
method is called from.</para>
</summary>
<param name="s">A <see cref="T:System.Web.UI.WebControls.Style" /> that represents the style to combine.</param>
</member>
<member name="M:System.Web.UI.WebControls.TableItemStyle.Reset">
<summary>
<para> Removes any defined style elements from the state bag.
</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TableItemStyle.HorizontalAlign">
<summary>
<para>Gets or sets the horizontal alignment of the contents in a cell.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TableItemStyle.VerticalAlign">
<summary>
<para>Gets or sets the vertical alignment of the contents in a cell.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TableItemStyle.Wrap">
<summary>
<para>Gets or sets a value indicating whether the contents of a cell wrap in the cell.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.DataGridPagerStyle.CopyFrom(System.Web.UI.WebControls.Style)">
<summary>
<para> Copies the style of the specified <see cref="T:System.Web.UI.WebControls.Style" /> object into this instance of the
<see cref="T:System.Web.UI.WebControls.DataGridPagerStyle" /> class.</para>
</summary>
<param name="s">The <see cref="T:System.Web.UI.WebControls.Style" /> object to copy from.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataGridPagerStyle.MergeWith(System.Web.UI.WebControls.Style)">
<summary>
<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>
</summary>
<param name="s">The <see cref="T:System.Web.UI.WebControls.Style" /> object to merge with.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataGridPagerStyle.Reset">
<summary>
<para>Restores the <see cref="T:System.Web.UI.WebControls.DataGridPagerStyle" /> object to its default values.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridPagerStyle.Mode">
<summary>
<para> Gets or sets a value that specifies
whether the pager element displays buttons that link to the next
and previous page, or numeric buttons that link directly to a page.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridPagerStyle.NextPageText">
<summary>
<para> Gets or sets the text displayed for the next page
button.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridPagerStyle.PageButtonCount">
<summary>
<para>Gets or sets the number of numeric buttons to display concurrently in the pager element
of the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridPagerStyle.Position">
<summary>
<para> Gets or sets the position of the pager element in the <see cref="T:System.Web.UI.WebControls.DataGrid" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridPagerStyle.PrevPageText">
<summary>
<para> Gets or sets the text displayed for the previous
page button.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridPagerStyle.Visible">
<summary>
<para> Gets or sets a value indicating whether the pager
is displayed in the <see cref="T:System.Web.UI.WebControls.DataGrid" />
control.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.DataGridSortCommandEventArgs">
<summary>
<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.
This class cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.DataGridSortCommandEventArgs.#ctor(System.Object,System.Web.UI.WebControls.DataGridCommandEventArgs)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataGridSortCommandEventArgs" /> class.</para>
</summary>
<param name="commandSource">The source of the command.</param>
<param name=" dce">A <see cref="T:System.Web.UI.WebControls.DataGridCommandEventArgs" /> that contains the event data. </param>
</member>
<member name="P:System.Web.UI.WebControls.DataGridSortCommandEventArgs.CommandSource">
<summary>
<para> Gets the source of the command. </para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataGridSortCommandEventArgs.SortExpression">
<summary>
<para> Gets the expression used to sort the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.DataGridSortCommandEventHandler">
<summary>
<para>Represents the method that will handle the <see cref="E:System.Web.UI.WebControls.DataGrid.SortCommand" />
event of the <see cref="T:System.Web.UI.WebControls.DataGrid" />
control.</para>
</summary>
<param name="source">The source of the event.</param>
<param name="e">A <see cref="T:System.Web.UI.WebControls.DataGridSortCommandEventArgs" /> that contains the event data.</param>
</member>
<member name="T:System.Web.UI.WebControls.Table">
<summary>
<para>Constructs a table and defines its properties.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.Table.#ctor">
<summary>
<para>
Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Table" /> class.
</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Table.BackImageUrl">
<summary>
<para>Indicates the URL of the background image to display
behind the table. The image will be tiled if it is smaller than the table.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Table.CellSpacing">
<summary>
<para>Gets or
sets
the distance (in pixels) between table cells.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Table.CellPadding">
<summary>
<para>Gets or sets
the distance (in pixels) between the border and
the contents of the table cell.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Table.GridLines">
<summary>
<para>Gets or sets a value that specifies the grid line style to display in the <see cref="T:System.Web.UI.WebControls.Table" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Table.HorizontalAlign">
<summary>
<para>Gets or sets the horizontal alignment of the table within the page.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Table.Rows">
<summary>
<para> Gets the collection of rows within
the table.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.Table.RowControlCollection.Add(System.Web.UI.Control)">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.Table.RowControlCollection.AddAt(System.Int32,System.Web.UI.Control)">
<summary>
<para>Adds the specified <see cref="T:System.Web.UI.Control" /> object to the collection. The new control is added
to the array at the specified index location.</para>
</summary>
<param name=" index">The location in the array to add the child control.</param>
<param name="child">The <see langword="Control" /> object to add to the collection.</param>
</member>
<member name="T:System.Web.UI.WebControls.DataKeyCollection">
<summary>
<para>Represents a collection that contains the key field of each record in a data source. This class cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.DataKeyCollection.#ctor(System.Collections.ArrayList)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataKeyCollection" /> class.</para>
</summary>
<param name="keys">A <see cref="T:System.Collections.ArrayList" qualify="true" /> that contains key fields from the data source.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataKeyCollection.CopyTo(System.Array,System.Int32)">
<summary>
<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,
starting at the specified index in the <see cref="T:System.Array" qualify="true" /> object.</para>
</summary>
<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>
<param name=" index">The first position in the specified <see cref="T:System.Array" qualify="true" /> object to receive the copied contents.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataKeyCollection.GetEnumerator">
<summary>
<para>Creates a <see cref="T:System.Collections.IEnumerator" qualify="true" /> implemented object that contains all
key fields in the <see cref="T:System.Web.UI.WebControls.DataKeyCollection" />.</para>
</summary>
<returns>
<para> A <see cref="T:System.Collections.IEnumerator" qualify="true" /> implemented object that contains all
key fields in the <see cref="T:System.Web.UI.WebControls.DataKeyCollection" />.</para>
</returns>
</member>
<member name="P:System.Web.UI.WebControls.DataKeyCollection.Count">
<summary>
<para> Gets the number of items in the collection.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataKeyCollection.IsReadOnly">
<summary>
<para>Gets a value indicating whether items in the <see cref="T:System.Web.UI.WebControls.DataKeyCollection" />
can be modified.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataKeyCollection.IsSynchronized">
<summary>
<para> Gets a value indicating whether the <see cref="T:System.Web.UI.WebControls.DataKeyCollection" />
is synchronized (thread-safe).</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataKeyCollection.SyncRoot">
<summary>
<para>Gets the object used to synchronize access to the <see cref="T:System.Web.UI.WebControls.DataKeyCollection" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataKeyCollection.Item(System.Int32)">
<summary>
<para> Gets the key field at the specified index in the collection.</para>
</summary>
<param name="index"> The zero-based index of the key field to retrieve from the collection.</param>
</member>
<member name="T:System.Web.UI.WebControls.DataList">
<summary>
<para>A data bound list control that displays items using templates.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.DataList.SelectCommandName">
<summary>
<para>Represents the <see langword="Select" /> command name. This field is read-only.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.DataList.EditCommandName">
<summary>
<para>Represents the <see langword="Edit" /> command name. This field is read-only.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.DataList.UpdateCommandName">
<summary>
<para>Represents the <see langword="Update" /> command name. This field is read-only.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.DataList.CancelCommandName">
<summary>
<para> Represents the <see langword="Cancel" /> command name. This field is read-only.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.DataList.DeleteCommandName">
<summary>
<para>Represents the <see langword="Delete" /> command name. This field is read-only.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.DataList.#ctor">
<summary>
<para> Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataList" /> class.
</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.DataList.OnCancelCommand(System.Web.UI.WebControls.DataListCommandEventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.DataList.CancelCommand" /> event. This allows you to
provide a custom handler for the event.</para>
</summary>
<param name="e">A <see cref="T:System.Web.UI.WebControls.DataListCommandEventArgs" /> that contains event data.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataList.OnDeleteCommand(System.Web.UI.WebControls.DataListCommandEventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.DataList.DeleteCommand" /> event. This allows you to
provide a custom handler for the event.</para>
</summary>
<param name="e">A <see cref="T:System.Web.UI.WebControls.DataListCommandEventArgs" /> that contains event data.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataList.OnEditCommand(System.Web.UI.WebControls.DataListCommandEventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.DataList.EditCommand" /> event. This allows you to
provide a custom handler for the event.</para>
</summary>
<param name="e">A <see cref="T:System.Web.UI.WebControls.DataListCommandEventArgs" /> that contains event data.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataList.OnItemCommand(System.Web.UI.WebControls.DataListCommandEventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.DataList.ItemCommand" /> event. This allows you to
provide a custom handler for the event.</para>
</summary>
<param name="e">A <see cref="T:System.Web.UI.WebControls.DataListCommandEventArgs" /> that contains event data.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataList.OnItemCreated(System.Web.UI.WebControls.DataListItemEventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.DataList.ItemCreated" /> event. This allows you to
provide a custom handler for the event.</para>
</summary>
<param name="e">A <see cref="T:System.Web.UI.WebControls.DataListItemEventArgs" /> that contains event data.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataList.OnItemDataBound(System.Web.UI.WebControls.DataListItemEventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.DataList.ItemDataBound" /> event. This allows you to
provide a custom handler for the event.</para>
</summary>
<param name="e">A <see cref="T:System.Web.UI.WebControls.DataListItemEventArgs" /> that contains event data.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataList.OnUpdateCommand(System.Web.UI.WebControls.DataListCommandEventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.DataList.UpdateCommand" /> event. This allows you to
provide a custom handler for the event.</para>
</summary>
<param name="e">A <see cref="T:System.Web.UI.WebControls.DataListItemEventArgs" /> that contains event data.</param>
</member>
<member name="P:System.Web.UI.WebControls.DataList.AlternatingItemStyle">
<summary>
<para>Gets the style properties for alternating items in the <see cref="T:System.Web.UI.WebControls.DataList" />
control. </para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataList.AlternatingItemTemplate">
<summary>
<para> Gets or sets the template for alternating items in the <see cref="T:System.Web.UI.WebControls.DataList" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataList.EditItemIndex">
<summary>
<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>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataList.EditItemStyle">
<summary>
<para> Gets the style properties for the item selected for
editing in the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataList.EditItemTemplate">
<summary>
<para> Gets or sets the template for the item selected for editing in the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataList.ExtractTemplateRows">
<summary>
<para>Gets or sets a
value that indicates whether the rows of a <see cref="T:System.Web.UI.WebControls.Table" /> control,
defined in each template of a <see cref="T:System.Web.UI.WebControls.DataList" />
control, are extracted and displayed.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataList.FooterStyle">
<summary>
<para>Gets the style properties for the footer section of the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataList.FooterTemplate">
<summary>
<para> Gets or sets the template for the footer section of the <see cref="T:System.Web.UI.WebControls.DataList" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataList.GridLines">
<summary>
<para>Gets or sets the grid line style for the <see cref="T:System.Web.UI.WebControls.DataList" /> control
when the <see cref="P:System.Web.UI.WebControls.DataList.RepeatLayout" />
property is set to <see langword="RepeatLayout.Table" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataList.HeaderStyle">
<summary>
<para>Gets the style properties for the heading section of the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataList.HeaderTemplate">
<summary>
<para> Gets or sets the template for the heading section of the <see cref="T:System.Web.UI.WebControls.DataList" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataList.Items">
<summary>
<para>Gets a collection of <see cref="T:System.Web.UI.WebControls.DataListItem" /> objects representing the individual
items within the control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataList.ItemStyle">
<summary>
<para>Gets the style properties for the items in the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataList.ItemTemplate">
<summary>
<para> Gets or sets the template for the items in the <see cref="T:System.Web.UI.WebControls.DataList" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataList.RepeatColumns">
<summary>
<para>Gets or sets the number of columns to display in the
<see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataList.RepeatDirection">
<summary>
<para>Gets or sets whether the <see cref="T:System.Web.UI.WebControls.DataList" /> control displays vertically or horizontally.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataList.RepeatLayout">
<summary>
<para> Gets or sets whether the control is displayed in a table
or flow layout.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataList.SelectedIndex">
<summary>
<para> Gets or sets the index of the selected item in the
<see cref="T:System.Web.UI.WebControls.DataList" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataList.SelectedItem">
<summary>
<para>Gets the selected item in the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataList.SelectedItemStyle">
<summary>
<para> Gets the style properties for the selected item
in the <see cref="T:System.Web.UI.WebControls.DataList" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataList.SelectedItemTemplate">
<summary>
<para> Gets or sets the template for the selected item in the <see cref="T:System.Web.UI.WebControls.DataList" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataList.SeparatorStyle">
<summary>
<para>Gets the style properties of the separator between each item in the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataList.SeparatorTemplate">
<summary>
<para> Gets or sets the template for the separator between the items of the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataList.ShowFooter">
<summary>
<para>Gets or sets a value indicating whether the footer section is
displayed in the <see cref="T:System.Web.UI.WebControls.DataList" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataList.ShowHeader">
<summary>
<para> Gets or sets a value indicating whether the header section is displayed in the <see cref="T:System.Web.UI.WebControls.DataList" />
control.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.DataList.CancelCommand">
<summary>
<para>Occurs when the <see langword="Cancel" /> button is clicked
for an item in the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.DataList.DeleteCommand">
<summary>
<para>Occurs when the <see langword="Delete" /> button is clicked
for an item in the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.DataList.EditCommand">
<summary>
<para>Occurs when the <see langword="Edit" /> button is clicked
for an item in the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.DataList.ItemCommand">
<summary>
<para>Occurs when any button is clicked in the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.DataList.ItemCreated">
<summary>
<para>Occurs on the server when an item in the <see cref="T:System.Web.UI.WebControls.DataList" /> control is created.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.DataList.ItemDataBound">
<summary>
<para>Occurs when an item is data bound to the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.DataList.UpdateCommand">
<summary>
<para>Occurs when the <see langword="Update" /> button is clicked
for an item in the <see cref="T:System.Web.UI.WebControls.DataList" /> control.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.DataListCommandEventArgs">
<summary>
<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.
This class cannot be
inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.DataListCommandEventArgs.#ctor(System.Web.UI.WebControls.DataListItem,System.Object,System.Web.UI.WebControls.CommandEventArgs)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataListCommandEventArgs" /> class.</para>
</summary>
<param name="item">The selected item from the <see cref="T:System.Web.UI.WebControls.DataList" />.</param>
<param name=" commandSource">The source of the command.</param>
<param name=" originalArgs">A <see cref="T:System.Web.UI.WebControls.CommandEventArgs" /> that contains the original event data.</param>
</member>
<member name="P:System.Web.UI.WebControls.DataListCommandEventArgs.Item">
<summary>
<para> Gets the item containing the command source in the <see cref="T:System.Web.UI.WebControls.DataList" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataListCommandEventArgs.CommandSource">
<summary>
<para>Gets the source of the command.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.DataListCommandEventHandler">
<summary>
<para>Represents the method that will handle 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 a <see cref="T:System.Web.UI.WebControls.DataList" />
control.</para>
</summary>
<param name="source">The source of the event.</param>
<param name="e">A <see cref="T:System.Web.UI.WebControls.DataListCommandEventArgs" /> that contains the event data.</param>
</member>
<member name="T:System.Web.UI.WebControls.DataListItem">
<summary>
<para>Represents an item in the <see cref="T:System.Web.UI.WebControls.DataList" /> control. </para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.DataListItem.#ctor(System.Int32,System.Web.UI.WebControls.ListItemType)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataListItem" /> class.</para>
</summary>
<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>
<param name="itemType">One of the <see cref="T:System.Web.UI.WebControls.ListItemType" /> values.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataListItem.RenderItem(System.Web.UI.HtmlTextWriter,System.Boolean,System.Boolean)">
<summary>
<para>Displays the <see cref="T:System.Web.UI.WebControls.DataListItem" /> object on the client.</para>
</summary>
<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>
<param name=" extractRows">
<see langword="true" /> to extract rows; otherwise <see langword="false" />.</param>
<param name=" tableLayout">
<see langword="true" /> to display as a table; otherwise <see langword="false" />. </param>
</member>
<member name="P:System.Web.UI.WebControls.DataListItem.DataItem">
<summary>
<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>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataListItem.ItemIndex">
<summary>
<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
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataListItem.ItemType">
<summary>
<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>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.DataListItemCollection">
<summary>
<para>Represents the collection of <see cref="T:System.Web.UI.WebControls.DataListItem" /> objects in the
<see cref="T:System.Web.UI.WebControls.DataList" /> control. This class cannot be
inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.DataListItemCollection.#ctor(System.Collections.ArrayList)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataListItemCollection" /> class.</para>
</summary>
<param name="items">A <see cref="T:System.Collections.ArrayList" qualify="true" /> object that contains the items with which to initialize the collection.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataListItemCollection.CopyTo(System.Array,System.Int32)">
<summary>
<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,
starting at the specified index in the <see cref="T:System.Array" qualify="true" /> object.</para>
</summary>
<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>
<param name=" index">The first position in the specified <see cref="T:System.Array" qualify="true" /> object to receive the copied contents.</param>
</member>
<member name="M:System.Web.UI.WebControls.DataListItemCollection.GetEnumerator">
<summary>
<para>Returns 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>
</summary>
<returns>
<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>
</returns>
</member>
<member name="P:System.Web.UI.WebControls.DataListItemCollection.Count">
<summary>
<para>Gets the number of <see cref="T:System.Web.UI.WebControls.DataListItem" /> objects in the collection.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataListItemCollection.IsReadOnly">
<summary>
<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>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataListItemCollection.IsSynchronized">
<summary>
<para>Gets a value indicating whether access to the <see cref="T:System.Web.UI.WebControls.DataListItemCollection" /> is synchronized (thread-safe).</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataListItemCollection.SyncRoot">
<summary>
<para>Gets the object that can be used to synchronize access
to the <see cref="T:System.Web.UI.WebControls.DataListItemCollection" /> collection. </para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DataListItemCollection.Item(System.Int32)">
<summary>
<para>Gets a <see cref="T:System.Web.UI.WebControls.DataListItem" /> object at the specified index in the
collection.</para>
</summary>
<param name="index">The index of the <see cref="T:System.Web.UI.WebControls.DataListItem" /> in the collection to retrieve.</param>
</member>
<member name="T:System.Web.UI.WebControls.DataListItemEventArgs">
<summary>
<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.
This class cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.DataListItemEventArgs.#ctor(System.Web.UI.WebControls.DataListItem)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DataListItemEventArgs" /> class.</para>
</summary>
<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>
</member>
<member name="P:System.Web.UI.WebControls.DataListItemEventArgs.Item">
<summary>
<para> Gets the referenced item in the <see cref="T:System.Web.UI.WebControls.DataList" />
control when the event is raised.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.DataListItemEventHandler">
<summary>
<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" />
events of the <see cref="T:System.Web.UI.WebControls.DataList" />
control.</para>
</summary>
<param name="sender">The source of the event.</param>
<param name=" e">A <see cref="T:System.Web.UI.WebControls.DataListItemEventArgs" /> that contains the event data.</param>
</member>
<member name="T:System.Web.UI.WebControls.DayRenderEventArgs">
<summary>
<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.
This class cannot be
inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.DayRenderEventArgs.#ctor(System.Web.UI.WebControls.TableCell,System.Web.UI.WebControls.CalendarDay)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DayRenderEventArgs" /> class.</para>
</summary>
<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>
<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>
</member>
<member name="P:System.Web.UI.WebControls.DayRenderEventArgs.Cell">
<summary>
<para> Gets the <see cref="T:System.Web.UI.WebControls.TableCell" /> object that represents
the cell being rendered in the <see cref="T:System.Web.UI.WebControls.Calendar" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DayRenderEventArgs.Day">
<summary>
<para> Gets the <see cref="T:System.Web.UI.WebControls.CalendarDay" /> that represents the day
being rendered in the <see cref="T:System.Web.UI.WebControls.Calendar" /> control.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.DayRenderEventHandler">
<summary>
<para>Represents the method that will handle the <see cref="E:System.Web.UI.WebControls.Calendar.DayRender" />
event of the
<see cref="T:System.Web.UI.WebControls.Calendar" />
control.</para>
</summary>
<param name="sender">The source of the event.</param>
<param name=" e">A <see cref="T:System.Web.UI.WebControls.DayRenderEventArgs" /> that contains the event data.</param>
</member>
<member name="T:System.Web.UI.WebControls.DayNameFormat">
<summary>
<para> Specifies the display format for the days of the week on a <see cref="T:System.Web.UI.WebControls.Calendar" />
control.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.DayNameFormat.Full">
<summary>
<para>The days of the week displayed in full format. For example, Tuesday.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.DayNameFormat.Short">
<summary>
<para>The days of the week displayed in abbreviated format. For example, Tues.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.DayNameFormat.FirstLetter">
<summary>
<para>The days of the week displayed with just the first letter. For example, T.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.DayNameFormat.FirstTwoLetters">
<summary>
<para>The days of the week displayed with just the first two letters. For example, Tu.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.DropDownList">
<summary>
<para> Represents a control that allows the user to select a single item from a
drop-down list.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.DropDownList.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.DropDownList" /> class.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DropDownList.BorderColor">
<summary>
<para>Gets or sets the border color of the control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DropDownList.BorderStyle">
<summary>
<para>Gets or sets the border style of the control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DropDownList.BorderWidth">
<summary>
<para> Gets or sets the border width for the control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DropDownList.SelectedIndex">
<summary>
<para> Gets or sets the index of the selected item
in the <see cref="T:System.Web.UI.WebControls.DropDownList" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.DropDownList.ToolTip">
<summary>
<para>Gets or sets the ToolTip text displayed when the mouse pointer
rests over the control. </para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.EditCommandColumn">
<summary>
<para>A special column type for
the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control that contains the
<see langword="Edit" /> command buttons
for editing data items in each
row.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.EditCommandColumn.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.EditCommandColumn" /> class.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.EditCommandColumn.ButtonType">
<summary>
<para>Gets or sets the button type for the column.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.EditCommandColumn.CancelText">
<summary>
<para>Gets or sets the text to display for the
<see langword="Cancel" /> command button in the <see cref="T:System.Web.UI.WebControls.EditCommandColumn" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.EditCommandColumn.EditText">
<summary>
<para>Gets or sets the text to display for the
<see langword="Edit" /> command button in the
<see cref="T:System.Web.UI.WebControls.EditCommandColumn" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.EditCommandColumn.UpdateText">
<summary>
<para>Gets or sets the text to display for the
<see langword="Update" /> command
button in the <see cref="T:System.Web.UI.WebControls.EditCommandColumn" />.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.FirstDayOfWeek">
<summary>
<para> Specifies the day to display as the first day of the week on the <see cref="T:System.Web.UI.WebControls.Calendar" />
control.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FirstDayOfWeek.Sunday">
<summary>
<para>The first day of the week is Sunday.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FirstDayOfWeek.Monday">
<summary>
<para>The first day of the week is Monday.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FirstDayOfWeek.Tuesday">
<summary>
<para>The first day of the week is Tuesday.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FirstDayOfWeek.Wednesday">
<summary>
<para>The first day of the week is Wednesday.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FirstDayOfWeek.Thursday">
<summary>
<para>The first day of the week is Thursday.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FirstDayOfWeek.Friday">
<summary>
<para>The first day of the week is Friday.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FirstDayOfWeek.Saturday">
<summary>
<para>The first day of the week is Saturday.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FirstDayOfWeek.Default">
<summary>
<para> The first day of the week is specified by the system settings.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.FontNamesConverter">
<summary>
<para>Converts a string containing a list of font names to an array of strings containing the individual
names. It also performs the reverse function.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.FontNamesConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
<para>Determines whether this converter can convert an object of the specified data type to an array of strings containing individual font names. </para>
</summary>
<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>
<param name=" sourceType">A <see cref="T:System.Type" qualify="true" /> that represents the data type to convert from.</param>
<returns>
<para>
<see langword="true" /> if the type can be converted; otherwise,
<see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.FontNamesConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
<para> Converts a string that represents a list of font
names into an array of strings containing individual font names. </para>
</summary>
<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>
<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>
<param name=" value">A <see cref="T:System.Object" qualify="true" /> that represents the source string to convert from.</param>
<returns>
<para>A <see cref="T:System.Object" qualify="true" /> that represents the array of strings containing
the individual font names. </para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.FontNamesConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
<para> Creates a string that represents a list of
font names from an array of strings containing individual font names.</para>
</summary>
<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>
<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>
<param name=" value">A <see cref="T:System.Object" qualify="true" /> that represents the source array of strings to convert from.</param>
<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>
<returns>
<para>A <see cref="T:System.Object" qualify="true" /> that represents a
string containing a list
of font names.</para>
</returns>
</member>
<member name="T:System.Web.UI.WebControls.FontInfo">
<summary>
<para>Encapsulates the font properties of text. This class cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.FontInfo.CopyFrom(System.Web.UI.WebControls.FontInfo)">
<summary>
<para>Duplicates the font properties of the specified <see cref="T:System.Web.UI.WebControls.FontInfo" />
into the instance of the <see cref="T:System.Web.UI.WebControls.FontInfo" /> class
that this method is called from. </para>
</summary>
<param name="f">A <see cref="T:System.Web.UI.WebControls.FontInfo" /> that contains the font properties to duplicate.</param>
</member>
<member name="M:System.Web.UI.WebControls.FontInfo.MergeWith(System.Web.UI.WebControls.FontInfo)">
<summary>
<para>Combines the font properties of the specified <see cref="T:System.Web.UI.WebControls.FontInfo" />
with the instance of the <see cref="T:System.Web.UI.WebControls.FontInfo" /> class
that this method is called
from. </para>
</summary>
<param name="f">A <see cref="T:System.Web.UI.WebControls.FontInfo" /> that contains the font properties to combine.</param>
</member>
<member name="M:System.Web.UI.WebControls.FontInfo.ToString">
<summary>
<para> Returns a string that contains the font name and size
for an instance of the <see cref="T:System.Web.UI.WebControls.FontInfo" />
class.</para>
</summary>
<returns>
<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>
</returns>
</member>
<member name="P:System.Web.UI.WebControls.FontInfo.Bold">
<summary>
<para>Gets or sets a value that indicates whether the font is bold.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.FontInfo.Italic">
<summary>
<para>Gets or sets a value that indicates whether the font is italic.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.FontInfo.Name">
<summary>
<para>Gets or sets the primary font name.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.FontInfo.Names">
<summary>
<para>Gets or sets an ordered array of font names. </para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.FontInfo.Overline">
<summary>
<para>Gets or sets a value that indicates whether the font is overlined.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.FontInfo.Size">
<summary>
<para>Gets or sets the font size.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.FontInfo.Strikeout">
<summary>
<para>Gets or sets a value that indicates whether the font is strikethrough.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.FontInfo.Underline">
<summary>
<para>Gets or sets a value that indicates whether the font is underlined.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.FontSize">
<summary>
<para> Specifies the font
sizes defined by HTML 4.0.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FontSize.NotSet">
<summary>
<para>
The font size is not set.
</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FontSize.AsUnit">
<summary>
<para>The font size is specified by a point value.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FontSize.Smaller">
<summary>
<para> The font size is one size smaller than the parent element.
</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FontSize.Larger">
<summary>
<para> The font size is one size larger than the parent element.
</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FontSize.XXSmall">
<summary>
<para> The font size is two sizes smaller than the base font size.
</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FontSize.XSmall">
<summary>
<para> The font size is one size smaller than the base font size.
</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FontSize.Small">
<summary>
<para> The base font size determined by the browser.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FontSize.Medium">
<summary>
<para> The font size is one size larger than the default font size.
</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FontSize.Large">
<summary>
<para> The font size is two sizes larger than the base font size.
</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FontSize.XLarge">
<summary>
<para> The font size is three sizes larger than the base font size.
</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FontSize.XXLarge">
<summary>
<para> The font size is four sizes larger than the base font size.
</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.FontUnit">
<summary>
<para>Represents the size of a font.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FontUnit.Empty">
<summary>
<para>Represents an empty <see cref="T:System.Web.UI.WebControls.FontUnit" /> object. </para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FontUnit.Smaller">
<summary>
<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.Smaller" />. </para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FontUnit.Larger">
<summary>
<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>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FontUnit.XXSmall">
<summary>
<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>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FontUnit.XSmall">
<summary>
<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>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FontUnit.Small">
<summary>
<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>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FontUnit.Medium">
<summary>
<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>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FontUnit.Large">
<summary>
<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>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FontUnit.XLarge">
<summary>
<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>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.FontUnit.XXLarge">
<summary>
<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>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.FontUnit.#ctor(System.Web.UI.WebControls.FontSize)">
<summary>
<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.FontSize" />.</para>
</summary>
<param name="type">One of the <see cref="T:System.Web.UI.WebControls.FontSize" /> values.</param>
</member>
<member name="M:System.Web.UI.WebControls.FontUnit.#ctor(System.Web.UI.WebControls.Unit)">
<summary>
<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>
</summary>
<param name="value">A <see cref="T:System.Web.UI.WebControls.Unit" /> that specifies the font size.</param>
</member>
<member name="M:System.Web.UI.WebControls.FontUnit.#ctor(System.Int32)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.FontUnit" /> class with the specified font size.</para>
</summary>
<param name="value">The size of the font.</param>
</member>
<member name="M:System.Web.UI.WebControls.FontUnit.#ctor(System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.FontUnit" /> class with the specified font size.</para>
</summary>
<param name="value">A string representation of one of the <see cref="T:System.Web.UI.WebControls.FontSize" /> values.</param>
</member>
<member name="M:System.Web.UI.WebControls.FontUnit.#ctor(System.String,System.Globalization.CultureInfo)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.FontUnit" /> class with the specified font size and
<see cref="T:System.Globalization.CultureInfo" qualify="true" /> object.</para>
</summary>
<param name="value">A string representation of one of the <see cref="T:System.Web.UI.WebControls.FontSize" /> values.</param>
<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>
</member>
<member name="M:System.Web.UI.WebControls.FontUnit.GetHashCode">
<summary>
<para>Returns the hash code for this instance.</para>
</summary>
<returns>
<para>A 32-bit signed integer that represents the hash code.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.FontUnit.Equals(System.Object)">
<summary>
<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
from.</para>
</summary>
<param name="obj">A <see cref="T:System.Object" qualify="true" /> that contains the object to compare to this instance. </param>
<returns>
<para>
<see langword="true" /> if 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
from; otherwise, <see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.FontUnit.op_Equality(System.Web.UI.WebControls.FontUnit,System.Web.UI.WebControls.FontUnit)">
<summary>
<para>Compares two <see cref="T:System.Web.UI.WebControls.FontUnit" /> objects for equality.</para>
</summary>
<param name="left">A <see cref="T:System.Web.UI.WebControls.FontUnit" /> on the left of the operator that contains font properties.</param>
<param name=" right">A <see cref="T:System.Web.UI.WebControls.FontUnit" /> on the right of the operator that contains font properties.</param>
<returns>
<para>
<see langword="true" /> if both <see cref="T:System.Web.UI.WebControls.FontUnit" /> objects are equal; otherwise,
<see langword="false" />. </para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.FontUnit.op_Inequality(System.Web.UI.WebControls.FontUnit,System.Web.UI.WebControls.FontUnit)">
<summary>
<para>Compares two <see cref="T:System.Web.UI.WebControls.FontUnit" /> objects
for inequality.</para>
</summary>
<param name="left">A <see cref="T:System.Web.UI.WebControls.FontUnit" /> that contains font properties on the left of the operator.</param>
<param name=" right">A <see cref="T:System.Web.UI.WebControls.FontUnit" /> that contains font properties on the right of the operator.</param>
<returns>
<para>
<see langword="true" /> if both <see cref="T:System.Web.UI.WebControls.FontUnit" /> objects are not
equal; otherwise, <see langword="false" />. </para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.FontUnit.Parse(System.String)">
<summary>
<para> Converts the specified string to
its <see cref="T:System.Web.UI.WebControls.FontUnit" /> equivalent.</para>
</summary>
<param name="s">A string representation of one of the <see cref="T:System.Web.UI.WebControls.FontSize" /> values.</param>
<returns>
<para>A <see cref="T:System.Web.UI.WebControls.FontUnit" />
that represents the font size specified
by the <paramref name="s" /> parameter.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.FontUnit.Parse(System.String,System.Globalization.CultureInfo)">
<summary>
<para>Converts the specified string to its <see cref="T:System.Web.UI.WebControls.FontUnit" /> equivalent in the specified culture.</para>
</summary>
<param name="s">A string representation of one of the <see cref="T:System.Web.UI.WebControls.FontSize" /> values.</param>
<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>
<returns>
<para>A <see cref="T:System.Web.UI.WebControls.FontUnit" /> that represents the font size
specified by the <paramref name="s" />
parameter in the culture specified by the <paramref name="culture" /> parameter.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.FontUnit.Point(System.Int32)">
<summary>
<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>
</summary>
<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>
<returns>
<para>A <see cref="T:System.Web.UI.WebControls.FontUnit" />
that represents the font size specified by the <paramref name="n" />
parameter.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.FontUnit.ToString">
<summary>
<para>Converts the <see cref="T:System.Web.UI.WebControls.FontUnit" /> object to the
default string representation.</para>
</summary>
<returns>
<para>The string representation of the <see cref="T:System.Web.UI.WebControls.FontUnit" /> object.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.FontUnit.ToString(System.Globalization.CultureInfo)">
<summary>
<para>Converts the <see cref="T:System.Web.UI.WebControls.FontUnit" /> object to a string
representation, using the specified <see cref="T:System.Globalization.CultureInfo" qualify="true" />.</para>
</summary>
<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>
<returns>
<para>The string representation of the <see cref="T:System.Web.UI.WebControls.FontUnit" /> object in the specified culture.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.FontUnit.op_Implicit(System.Int32)~System.Web.UI.WebControls.FontUnit">
<summary>
<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>
</summary>
<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>
<returns>
<para>A <see cref="T:System.Web.UI.WebControls.FontUnit" /> of type <see cref="T:System.Drawing.Point" qualify="true" /> that represents the
font size specified the <paramref name="n" /> parameter.</para>
</returns>
</member>
<member name="P:System.Web.UI.WebControls.FontUnit.IsEmpty">
<summary>
<para>Gets a value that indicates whether the font size has been set.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.FontUnit.Type">
<summary>
<para>Gets a <see cref="T:System.Web.UI.WebControls.FontSize" /> enumeration value that represents the font size.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.FontUnit.Unit">
<summary>
<para>Gets a <see cref="T:System.Web.UI.WebControls.Unit" /> that represents
the font size. </para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.FontUnitConverter">
<summary>
<para>Converts a <see cref="T:System.Web.UI.WebControls.FontUnit" /> to an object with another data type.
It also converts an object with another data type to a <see cref="T:System.Web.UI.WebControls.FontUnit" />.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.FontUnitConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
<para> Determines whether a data type can be converted to a <see cref="T:System.Web.UI.WebControls.FontUnit" />.</para>
</summary>
<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>
<param name=" sourceType">A <see cref="T:System.Type" qualify="true" /> that represents the data type to check.</param>
<returns>
<para>
<see langword="true" /> if the data
type specified by the <paramref name="sourceType" />
parameter can be converted to a <see cref="T:System.Web.UI.WebControls.FontUnit" />;
otherwise, <see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.FontUnitConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
<para> Converts an object to a <see cref="T:System.Web.UI.WebControls.FontUnit" /> in a specific culture.</para>
</summary>
<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>
<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>
<param name=" value">The object to convert to a <see cref="T:System.Web.UI.WebControls.FontUnit" />.</param>
<returns>
<para>A <see cref="T:System.Object" qualify="true" />
that represents the converted value.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.FontUnitConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
<para> Converts a <see cref="T:System.Web.UI.WebControls.FontUnit" /> to an object with a different data
type. </para>
</summary>
<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>
<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>
<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>
<param name=" destinationType">A <see cref="T:System.Type" qualify="true" /> that represents the data type to convert to.</param>
<returns>
<para>A <see cref="T:System.Object" qualify="true" />
that represents the converted value.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.FontUnitConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)">
<summary>
<para>Returns a <see cref="T:System.ComponentModel.TypeConverter.StandardValuesCollection" qualify="true" />
containing the standard values
for a <see cref="T:System.Web.UI.WebControls.FontUnit" />, using the specified format
context.</para>
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" qualify="true" /> that provides information about the context of a type converter.</param>
<returns>
<para> A <see cref="T:System.ComponentModel.TypeConverter.StandardValuesCollection" qualify="true" />
containing
the standard values for a <see cref="T:System.Web.UI.WebControls.FontUnit" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.FontUnitConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)">
<summary>
<para> Returns whether the
<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
of values, using the specified format
context.</para>
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" qualify="true" /> that provides information about the context of a type converter.</param>
<returns>
<para>
<see langword="false" /> for all cases.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.FontUnitConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)">
<summary>
<para>Returns whether the instance of the <see cref="T:System.Web.UI.WebControls.FontUnitConverter" /> class that this method is called from
supports a standard set of values that can be picked from a list, using the specified format
context.</para>
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" qualify="true" /> that provides information about the context of a type converter.</param>
<returns>
<para>
<see langword="true" /> for all cases.</para>
</returns>
</member>
<member name="T:System.Web.UI.WebControls.GridLines">
<summary>
<para> Specifies the grid line styles for controls displaying items in a table structure.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.GridLines.None">
<summary>
<para> No grid lines rendered.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.GridLines.Horizontal">
<summary>
<para> Only horizontal grid lines rendered.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.GridLines.Vertical">
<summary>
<para> Only vertical grid lines rendered.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.GridLines.Both">
<summary>
<para> Both horizontal and vertical grid lines rendered.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.HorizontalAlign">
<summary>
<para> Specifies the horizonal alignment of items within a container.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.HorizontalAlign.NotSet">
<summary>
<para> The horizontal alignment is not set.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.HorizontalAlign.Left">
<summary>
<para> The contents of a container are left justified.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.HorizontalAlign.Center">
<summary>
<para> The contents of a container are centered.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.HorizontalAlign.Right">
<summary>
<para> The contents of a container are right justified.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.HorizontalAlign.Justify">
<summary>
<para> The contents
of a container are uniformly spread out and aligned with both the left and right margins.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.HyperLinkControlBuilder">
<summary>
<para>Interacts with the parser to build a <see cref="T:System.Web.UI.WebControls.HyperLink" /> control.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.HyperLinkControlBuilder.AllowWhitespaceLiterals">
<summary>
<para> Gets a value that indicates whether white spaces are allowed in literals
for this control.</para>
</summary>
<returns>
<para>Overloaded to always returns <see langword="false" /> to indicate that white spaces are not
allowed.</para>
</returns>
</member>
<member name="T:System.Web.UI.WebControls.HyperLink">
<summary>
<para> A control that displays a link to another Web page.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.HyperLink.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.HyperLink" /> class.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.HyperLink.ImageUrl">
<summary>
<para> Gets or sets the path to an image to
display for the <see cref="T:System.Web.UI.WebControls.HyperLink" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.HyperLink.NavigateUrl">
<summary>
<para>Gets or sets the URL to link to when the <see cref="T:System.Web.UI.WebControls.HyperLink" /> control is clicked.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.HyperLink.Target">
<summary>
<para>Gets or sets the target window or frame to display
the Web page content linked to when the <see cref="T:System.Web.UI.WebControls.HyperLink" /> control is
clicked.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.HyperLink.Text">
<summary>
<para> Gets or sets the text caption for the <see cref="T:System.Web.UI.WebControls.HyperLink" /> control.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.HyperLinkColumn">
<summary>
<para>A column type for the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control that
contains a hyperlink for each
item in the column.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.HyperLinkColumn.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.HyperLinkColumn" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.HyperLinkColumn.FormatDataNavigateUrlValue(System.Object)">
<summary>
<para>Formats a data-bound URL using the format specified by the <see cref="P:System.Web.UI.WebControls.HyperLinkColumn.DataNavigateUrlFormatString" /> property.</para>
</summary>
<param name="dataUrlValue">The data-bound URL to format.</param>
<returns>
<para>The data-bound URL in the format specified by the
<see cref="P:System.Web.UI.WebControls.HyperLinkColumn.DataNavigateUrlFormatString" /> property.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.HyperLinkColumn.FormatDataTextValue(System.Object)">
<summary>
<para>Formats a data-bound text caption using the format specified by the <see cref="P:System.Web.UI.WebControls.HyperLinkColumn.DataTextFormatString" /> property.</para>
</summary>
<param name="dataTextValue">The data-bound URL to format.</param>
<returns>
<para>The data-bound text caption in the format specified by the
<see cref="P:System.Web.UI.WebControls.HyperLinkColumn.DataTextFormatString" /> property.</para>
</returns>
</member>
<member name="P:System.Web.UI.WebControls.HyperLinkColumn.DataNavigateUrlField">
<summary>
<para> Gets or sets the field from a data source to bind
to the URL of the hyperlinks in the <see cref="T:System.Web.UI.WebControls.HyperLinkColumn" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.HyperLinkColumn.DataNavigateUrlFormatString">
<summary>
<para> Gets or
sets the display format for the URL of the hyperlinks in the <see cref="T:System.Web.UI.WebControls.HyperLinkColumn" />
when the URL is data-bound to a field in a data
source.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.HyperLinkColumn.DataTextField">
<summary>
<para> Gets or sets the field from a data source to bind to
the text caption of the hyperlinks in the <see cref="T:System.Web.UI.WebControls.HyperLinkColumn" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.HyperLinkColumn.DataTextFormatString">
<summary>
<para> Gets or sets the display format
for the text caption of the hyperlinks in the <see cref="T:System.Web.UI.WebControls.HyperLinkColumn" />
column.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.HyperLinkColumn.NavigateUrl">
<summary>
<para>Gets or sets the URL to link to when a hyperlink in
the column<see langword=" " /> is clicked.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.HyperLinkColumn.Target">
<summary>
<para>Gets or sets the target window or frame to display the Web page content linked
to when the hyperlink in the column is clicked.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.HyperLinkColumn.Text">
<summary>
<para>Gets or sets the text caption to display for the hyperlinks in the column.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.Image">
<summary>
<para> Displays an image on a Web page.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.Image.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Image" /> class.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Image.AlternateText">
<summary>
<para>Gets or sets the alternate text displayed in the <see cref="T:System.Web.UI.WebControls.Image" />
control when the image is unavailable. Browsers that support the ToolTips feature display this text as a ToolTip.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Image.Font">
<summary>
<para> Gets the font properties for the text associated with the control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Image.Enabled">
<summary>
<para>Gets or sets a value indicating whether the control is enabled.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Image.ImageAlign">
<summary>
<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>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Image.ImageUrl">
<summary>
<para>Gets or sets the location of an image to display in
the <see cref="T:System.Web.UI.WebControls.Image" />
control.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.ImageAlign">
<summary>
<para>Specifies the alignment of an
image in relation to the text of a Web page.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ImageAlign.NotSet">
<summary>
<para>
The alignment is not set.
</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ImageAlign.Left">
<summary>
<para>The image is aligned on the left edge of the Web page with
text wrapping on the right.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ImageAlign.Right">
<summary>
<para>The image is aligned on the right edge of the Web page
with text wrapping on the left.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ImageAlign.Baseline">
<summary>
<para>The lower edge of the image is aligned with the lower edge of the first line
of text.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ImageAlign.Top">
<summary>
<para> The upper edge of the image is aligned with the upper edge of the highest element on the same line.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ImageAlign.Middle">
<summary>
<para>The middle of the image is aligned with the lower edge of
the first line of text.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ImageAlign.Bottom">
<summary>
<para>The lower edge of the image is aligned with the lower edge of the first line of text.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ImageAlign.AbsBottom">
<summary>
<para>The lower edge of the image is aligned with the lower
edge of the largest element on the same line.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ImageAlign.AbsMiddle">
<summary>
<para> The middle of the image is aligned with the middle of the largest element on the
same line.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ImageAlign.TextTop">
<summary>
<para>The upper edge of the image is aligned with the upper edge of the highest text on the same
line.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.ImageButton">
<summary>
<para> A control that displays an image and responds
to mouse clicks on the image.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.ImageButton.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.ImageButton" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.ImageButton.OnClick(System.Web.UI.ImageClickEventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.ImageButton.Click" /> event
and allows you to handle the <see cref="E:System.Web.UI.WebControls.ImageButton.Click" /> event directly.</para>
</summary>
<param name="e">A <see cref="T:System.Web.UI.ImageClickEventArgs" qualify="true" /> that contains the event data.</param>
</member>
<member name="M:System.Web.UI.WebControls.ImageButton.OnCommand(System.Web.UI.WebControls.CommandEventArgs)">
<summary>
<para>Raises the <see cref="E:System.Web.UI.WebControls.ImageButton.Command" /> event
and allows you to handle the <see cref="E:System.Web.UI.WebControls.ImageButton.Command" /> event directly.</para>
</summary>
<param name="e">A <see cref="T:System.Web.UI.WebControls.CommandEventArgs" /> that contains the event data.</param>
</member>
<member name="P:System.Web.UI.WebControls.ImageButton.CommandName">
<summary>
<para>Gets or sets the command name associated with the <see cref="T:System.Web.UI.WebControls.ImageButton" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ImageButton.CommandArgument">
<summary>
<para>Gets or sets an optional argument that provides
additional information about the
<see cref="P:System.Web.UI.WebControls.ImageButton.CommandName" />
property.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ImageButton.CausesValidation">
<summary>
<para>Gets or sets a value indicating whether validation is
performed when the <see cref="T:System.Web.UI.WebControls.ImageButton" />
control is clicked.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.ImageButton.Click">
<summary>
<para>Occurs when the <see cref="T:System.Web.UI.WebControls.ImageButton" /> is clicked.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.ImageButton.Command">
<summary>
<para>Occurs when the <see cref="T:System.Web.UI.WebControls.ImageButton" /> is clicked.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.LabelControlBuilder">
<summary>
<para>Interacts with the parser to build a <see cref="T:System.Web.UI.WebControls.Label" />
control.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.LinkButtonControlBuilder">
<summary>
<para>Interacts with the parser to build a <see cref="T:System.Web.UI.WebControls.LinkButton" />
control.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.ListBox">
<summary>
<para> Represents a list box control that allows single or multiple item
selection.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.ListBox.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.ListBox" /> class.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ListBox.BorderColor">
<summary>
<para>Gets or sets the border color of the control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ListBox.BorderStyle">
<summary>
<para>Gets or sets the border style of the control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ListBox.BorderWidth">
<summary>
<para>Gets or sets the border width for the control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ListBox.Rows">
<summary>
<para> Gets or sets the number of rows displayed in the
<see cref="T:System.Web.UI.WebControls.ListBox" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ListBox.SelectionMode">
<summary>
<para>Gets or sets the selection mode of the <see cref="T:System.Web.UI.WebControls.ListBox" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ListBox.ToolTip">
<summary>
<para>Gets or sets the ToolTip text displayed when the mouse
pointer rests over the control.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.ListItemControlBuilder">
<summary>
<para>Interacts with the parser to build a <see cref="T:System.Web.UI.WebControls.ListItem" /> control.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.ListItemControlBuilder.AllowWhitespaceLiterals">
<summary>
<para>Determines whether white spaces in the text
associated with the <see cref="T:System.Web.UI.WebControls.ListItem" /> are
represented by <see cref="T:System.Web.UI.LiteralControl" qualify="true" />
objects.</para>
</summary>
<returns>
<para>
<see langword="false" /> for all cases.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.ListItemControlBuilder.HtmlDecodeLiterals">
<summary>
<para>Determines whether HTML entities in the text associated with the <see cref="T:System.Web.UI.WebControls.ListItem" /> are converted to their
equivalent characters when the text is parsed.</para>
</summary>
<returns>
<para>
<see langword="true" /> for all cases.</para>
</returns>
</member>
<member name="T:System.Web.UI.WebControls.ListItem">
<summary>
<para> Represents a data item in a data-bound
list control. This class cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.ListItem.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.ListItem" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.ListItem.#ctor(System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.ListItem" /> class with the specified text data.</para>
</summary>
<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>
</member>
<member name="M:System.Web.UI.WebControls.ListItem.#ctor(System.String,System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.ListItem" /> class with the
specified text and value data.</para>
</summary>
<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>
<param name="value">The value associated with the <see cref="T:System.Web.UI.WebControls.ListItem" />.</param>
</member>
<member name="M:System.Web.UI.WebControls.ListItem.FromString(System.String)">
<summary>
<para>Creates a <see cref="T:System.Web.UI.WebControls.ListItem" /> from the specified text.</para>
</summary>
<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>
<returns>
<para>A <see cref="T:System.Web.UI.WebControls.ListItem" /> that represents the
text specified by the <paramref name="s" /> parameter.</para>
</returns>
</member>
<member name="P:System.Web.UI.WebControls.ListItem.Attributes">
<summary>
<para> Gets
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>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ListItem.Selected">
<summary>
<para>Gets or sets a value indicating whether the
item is selected.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ListItem.Text">
<summary>
<para> Gets or sets the text displayed in a list control for the
item represented by the <see cref="T:System.Web.UI.WebControls.ListItem" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ListItem.Value">
<summary>
<para>Gets or sets the value associated with the <see cref="T:System.Web.UI.WebControls.ListItem" />.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.ListItemCollection">
<summary>
<para>A collection of <see cref="T:System.Web.UI.WebControls.ListItem" /> objects in a list control. This class cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.ListItemCollection.#ctor">
<summary>
<para>Initializes a new instance of the
<see cref="T:System.Web.UI.WebControls.ListItemCollection" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.ListItemCollection.Add(System.String)">
<summary>
<para>Appends a <see cref="T:System.Web.UI.WebControls.ListItem" /> to the end of the collection that represents the specified string.</para>
</summary>
<param name="item">A <see cref="T:System.String" qualify="true" /> that represents the item to add to the end of the collection.</param>
</member>
<member name="M:System.Web.UI.WebControls.ListItemCollection.Add(System.Web.UI.WebControls.ListItem)">
<summary>
<para>Appends the specified <see cref="T:System.Web.UI.WebControls.ListItem" /> to the end of the collection.</para>
</summary>
<param name="item">The <see cref="T:System.Web.UI.WebControls.ListItem" /> to append to the collection.</param>
</member>
<member name="M:System.Web.UI.WebControls.ListItemCollection.AddRange(System.Web.UI.WebControls.ListItem[])">
<summary>
<para>Adds the items in an array of
<see cref="T:System.Web.UI.WebControls.ListItem" /> objects to the collection.</para>
</summary>
<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>
</member>
<member name="M:System.Web.UI.WebControls.ListItemCollection.Clear">
<summary>
<para>Removes all <see cref="T:System.Web.UI.WebControls.ListItem" /> objects from the collection.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.ListItemCollection.Contains(System.Web.UI.WebControls.ListItem)">
<summary>
<para> Determines whether the
collection contains the specified item.</para>
</summary>
<param name="item">A <see cref="T:System.Web.UI.WebControls.ListItem" /> to search for in the collection. </param>
<returns>
<para>
<see langword="true" /> if the
collection contains the specified item; otherwise, <see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.ListItemCollection.CopyTo(System.Array,System.Int32)">
<summary>
<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
index.</para>
</summary>
<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>
<param name=" index">The first index in the specified <see cref="T:System.Array" qualify="true" /> to receive the items.</param>
</member>
<member name="M:System.Web.UI.WebControls.ListItemCollection.FindByText(System.String)">
<summary>
<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>
</summary>
<param name="text">The text to search for.</param>
<returns>
<para>A <see cref="T:System.Web.UI.WebControls.ListItem" />
that contains the text specified by the <paramref name="text" /> parameter.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.ListItemCollection.FindByValue(System.String)">
<summary>
<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>
</summary>
<param name="value">The value to search for.</param>
<returns>
<para>A <see cref="T:System.Web.UI.WebControls.ListItem" />
that contains the value specified by the <paramref name="value" /> parameter.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.ListItemCollection.GetEnumerator">
<summary>
<para>Returns a <see cref="T:System.Collections.IEnumerator" qualify="true" /> implemented object that contains
all <see cref="T:System.Web.UI.WebControls.ListItem" /> objects in the <see cref="T:System.Web.UI.WebControls.ListItemCollection" />.</para>
</summary>
<returns>
<para>A <see cref="T:System.Collections.IEnumerator" qualify="true" /> implemented object that contains
all <see cref="T:System.Web.UI.WebControls.ListItem" /> objects in the <see cref="T:System.Web.UI.WebControls.ListItemCollection" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.ListItemCollection.IndexOf(System.Web.UI.WebControls.ListItem)">
<summary>
<para> Determines the index value that represents the
position of the specified <see cref="T:System.Web.UI.WebControls.ListItem" /> in the collection.</para>
</summary>
<param name="item">A <see cref="T:System.Web.UI.WebControls.ListItem" /> to search for in the collection.</param>
<returns>
<para> The index position of the specified <see cref="T:System.Web.UI.WebControls.ListItem" /> in the
collection. </para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.ListItemCollection.Insert(System.Int32,System.String)">
<summary>
<para>Inserts a <see cref="T:System.Web.UI.WebControls.ListItem" /> which represents the specified string in the collection at the specified index
location.</para>
</summary>
<param name=" index">The location in the collection to insert the <see cref="T:System.Web.UI.WebControls.ListItem" />.</param>
<param name=" item">A <see cref="T:System.String" qualify="true" /> that represents the item to insert in the collection.</param>
</member>
<member name="M:System.Web.UI.WebControls.ListItemCollection.Insert(System.Int32,System.Web.UI.WebControls.ListItem)">
<summary>
<para>Inserts the specified <see cref="T:System.Web.UI.WebControls.ListItem" /> in the collection at the specified
index location.</para>
</summary>
<param name=" index">The location in the collection to insert the <see cref="T:System.Web.UI.WebControls.ListItem" />.</param>
<param name=" item">The <see cref="T:System.Web.UI.WebControls.ListItem" /> to add to the collection.</param>
</member>
<member name="M:System.Web.UI.WebControls.ListItemCollection.RemoveAt(System.Int32)">
<summary>
<para>Removes the <see cref="T:System.Web.UI.WebControls.ListItem" /> at the specified index from
the collection.</para>
</summary>
<param name="index"> The index of the <see cref="T:System.Web.UI.WebControls.ListItem" /> to remove.</param>
</member>
<member name="M:System.Web.UI.WebControls.ListItemCollection.Remove(System.String)">
<summary>
<para>Removes a <see cref="T:System.Web.UI.WebControls.ListItem" /> from the collection that represents the specified string.</para>
</summary>
<param name="item">A <see cref="T:System.String" qualify="true" /> that represents the item to remove from the collection.</param>
</member>
<member name="M:System.Web.UI.WebControls.ListItemCollection.Remove(System.Web.UI.WebControls.ListItem)">
<summary>
<para>Removes the specified <see cref="T:System.Web.UI.WebControls.ListItem" /> from the collection.</para>
</summary>
<param name="item">The <see cref="T:System.Web.UI.WebControls.ListItem" /> to remove from the collection.</param>
</member>
<member name="P:System.Web.UI.WebControls.ListItemCollection.Item(System.Int32)">
<summary>
<para>Gets a <see cref="T:System.Web.UI.WebControls.ListItem" /> at the specified index in
the collection.</para>
</summary>
<param name="index">The zero-based index of the <see cref="T:System.Web.UI.WebControls.ListItem" /> to retrieve from the collection.</param>
</member>
<member name="P:System.Web.UI.WebControls.ListItemCollection.Capacity">
<summary>
<para>Gets the or sets the maximum number of items that the
<see cref="T:System.Web.UI.WebControls.ListItemCollection" /> can store.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ListItemCollection.Count">
<summary>
<para>Gets the number of <see cref="T:System.Web.UI.WebControls.ListItem" /> objects in the collection.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ListItemCollection.IsReadOnly">
<summary>
<para>Gets a value indicating whether the <see cref="T:System.Web.UI.WebControls.ListItemCollection" /> is read-only.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ListItemCollection.IsSynchronized">
<summary>
<para>Gets a value indicating whether access to the <see cref="T:System.Web.UI.WebControls.ListItemCollection" /> is synchronized
(thread-safe).</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ListItemCollection.SyncRoot">
<summary>
<para>Gets the object that can be used to synchronize access
to the <see cref="T:System.Web.UI.WebControls.ListItemCollection" />.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.ListItemType">
<summary>
<para>Specifies the type of an item in a list control.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ListItemType.Header">
<summary>
<para> A header for the
list control. It is not data-bound.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ListItemType.Footer">
<summary>
<para> A footer for the
list control. It is not data-bound.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ListItemType.Item">
<summary>
<para>An item in the list control. It is data-bound.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ListItemType.AlternatingItem">
<summary>
<para> An item
in
alternating (zero-based even-indexed) cells. It is data-bound.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ListItemType.SelectedItem">
<summary>
<para> A selected item in
the list control. It is data-bound.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ListItemType.EditItem">
<summary>
<para> An item in a list
control currently in edit mode. It is data-bound.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ListItemType.Separator">
<summary>
<para> A separator between items in a list control. It is not data-bound.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ListItemType.Pager">
<summary>
<para> A pager that displays the controls to navigate to different pages associated
with the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control. It is not
data-bound.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.ListSelectionMode">
<summary>
<para>Specifies the selection mode of the <see cref="T:System.Web.UI.WebControls.ListBox" /> control.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ListSelectionMode.Single">
<summary>
<para> Single item selection mode.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ListSelectionMode.Multiple">
<summary>
<para> Multiple item selection mode.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.LiteralControlBuilder">
<summary>
<para>Interacts with the parser to build a <see cref="T:System.Web.UI.WebControls.Literal" /> control.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.LiteralControlBuilder.AppendSubBuilder(System.Web.UI.ControlBuilder)">
<summary>
<para>Adds the builders of all child
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" />
object.</para>
</summary>
<param name="subBuilder">The <see cref="T:System.Web.UI.ControlBuilder" qualify="true" /> object to add the child control builders to. </param>
</member>
<member name="M:System.Web.UI.WebControls.LiteralControlBuilder.AllowWhitespaceLiterals">
<summary>
<para>Determines whether white spaces in the text associated
with the <see cref="T:System.Web.UI.WebControls.Literal" /> control
are represented by <see cref="T:System.Web.UI.LiteralControl" qualify="true" /> objects.</para>
</summary>
<returns>
<para>
<see langword="false" /> for all cases.</para>
</returns>
</member>
<member name="T:System.Web.UI.WebControls.Literal">
<summary>
<para>Reserves a location on the Web page to display static text.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Literal.Text">
<summary>
<para>Gets or sets the caption displayed in the <see cref="T:System.Web.UI.WebControls.Literal" /> control.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.MonthChangedEventArgs">
<summary>
<para>Provides data for the <see cref="E:System.Web.UI.WebControls.Calendar.VisibleMonthChanged" />
event of a <see cref="T:System.Web.UI.WebControls.Calendar" />. This
class cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.MonthChangedEventArgs.#ctor(System.DateTime,System.DateTime)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.MonthChangedEventArgs" /> class.</para>
</summary>
<param name="newDate">
<para> The date that determines the month currently displayed by the <see cref="T:System.Web.UI.WebControls.Calendar" />.</para>
</param>
<param name="previousDate">
<para>The date that determines the month previously displayed by the <see cref="T:System.Web.UI.WebControls.Calendar" />.</para>
</param>
</member>
<member name="P:System.Web.UI.WebControls.MonthChangedEventArgs.NewDate">
<summary>
<para> Gets the date that determines the currently
displayed month in the <see cref="T:System.Web.UI.WebControls.Calendar" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.MonthChangedEventArgs.PreviousDate">
<summary>
<para> Gets the date that determined the previously displayed
month in the <see cref="T:System.Web.UI.WebControls.Calendar" />.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.MonthChangedEventHandler">
<summary>
<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>
</summary>
<param name="sender">The source of the event.</param>
<param name=" e">A <see cref="T:System.Web.UI.WebControls.MonthChangedEventArgs" /> that contains the event data.</param>
</member>
<member name="T:System.Web.UI.WebControls.NextPrevFormat">
<summary>
<para> Represents the display format for the
previous and next month navigation controls within the <see cref="T:System.Web.UI.WebControls.Calendar" />.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.NextPrevFormat.CustomText">
<summary>
<para> Custom text format for the month navigation controls
on the <see cref="T:System.Web.UI.WebControls.Calendar" />.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.NextPrevFormat.ShortMonth">
<summary>
<para>Abbreviated
month name
format for the month navigation controls on the <see cref="T:System.Web.UI.WebControls.Calendar" />. For example,
"Jan".</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.NextPrevFormat.FullMonth">
<summary>
<para>Full month name format for the month navigation controls
on the <see cref="T:System.Web.UI.WebControls.Calendar" />. For
example, "January".</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.PagedDataSource">
<summary>
<para>Encapsulates the properties of the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control
that allow
it to perform paging. This class cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.PagedDataSource.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.PagedDataSource" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.PagedDataSource.CopyTo(System.Array,System.Int32)">
<summary>
<para>Copies all the items from the data source to the
specified <see cref="T:System.Array" qualify="true" />, starting at the specified index in the <see cref="T:System.Array" qualify="true" />.</para>
</summary>
<param name=" array">A zero-based <see cref="T:System.Array" qualify="true" /> that receives the copied items from the data source.</param>
<param name=" index">The first position in the specified <see cref="T:System.Array" qualify="true" /> to receive the copied contents.</param>
</member>
<member name="M:System.Web.UI.WebControls.PagedDataSource.GetEnumerator">
<summary>
<para>Returns a <see cref="T:System.Collections.IEnumerator" qualify="true" /> implemented object that contains all items in the data source.</para>
</summary>
<returns>
<para>A <see cref="T:System.Collections.IEnumerator" qualify="true" /> implemented object that contains
all items in the data source.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.PagedDataSource.GetItemProperties(System.ComponentModel.PropertyDescriptor[])">
<summary>
<para>Returns the <see cref="T:System.ComponentModel.PropertyDescriptorCollection" qualify="true" />
that represents the properties on each item used to bind data.</para>
</summary>
<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>
<returns>
<para> The <see cref="T:System.ComponentModel.PropertyDescriptorCollection" qualify="true" /> that
represents the properties on each item used to bind data.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.PagedDataSource.GetListName(System.ComponentModel.PropertyDescriptor[])">
<summary>
<para>Returns the name of the list. This method does not apply to this class.</para>
</summary>
<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>
<returns>
<para>
<see cref="F:System.String.Empty" qualify="true" /> for all cases.</para>
</returns>
</member>
<member name="P:System.Web.UI.WebControls.PagedDataSource.AllowCustomPaging">
<summary>
<para> Gets or sets a
value indicating whether custom paging is enabled.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.PagedDataSource.AllowPaging">
<summary>
<para> Gets or sets a value indicating whether paging is enabled.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.PagedDataSource.Count">
<summary>
<para> Gets
the number of items to
be used from the data source.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.PagedDataSource.CurrentPageIndex">
<summary>
<para> Gets or sets the index of the current page.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.PagedDataSource.DataSource">
<summary>
<para> Gets or sets the data source.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.PagedDataSource.DataSourceCount">
<summary>
<para> Gets the number of items in the data source.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.PagedDataSource.FirstIndexInPage">
<summary>
<para>Gets the first index in the page.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.PagedDataSource.IsCustomPagingEnabled">
<summary>
<para>Gets a value indicating whether custom
paging is enabled.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.PagedDataSource.IsFirstPage">
<summary>
<para>Gets a value indicating whether the current page
is the first page.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.PagedDataSource.IsLastPage">
<summary>
<para>Gets a value indicating whether the current page is the last page.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.PagedDataSource.IsPagingEnabled">
<summary>
<para>Gets a value indicating whether paging is enabled.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.PagedDataSource.IsReadOnly">
<summary>
<para>Gets a value indicating whether the data source is read-only.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.PagedDataSource.IsSynchronized">
<summary>
<para>Gets a value indicating whether access to the data source is
synchronized (thread-safe).</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.PagedDataSource.PageCount">
<summary>
<para>Gets the total number of pages necessary to display all
items in the data source.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.PagedDataSource.PageSize">
<summary>
<para>Gets or sets the number of items to display on a single page.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.PagedDataSource.SyncRoot">
<summary>
<para> Gets the object that can be
used to synchronize access to the collection.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.PagedDataSource.VirtualCount">
<summary>
<para>Gets or sets the virtual number of items in the data
source when custom paging is used.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.PagerMode">
<summary>
<para> Represents the mode of the pager for accessing various
pages within the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.PagerMode.NextPrev">
<summary>
<para>A pager with <see langword="Previous" /> and
<see langword="Next" /> buttons to
access the next and previous pages.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.PagerMode.NumericPages">
<summary>
<para> A pager with numbered buttons to access pages directly.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.PagerPosition">
<summary>
<para> Specifies the position of the pager
for accessing various pages within the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.PagerPosition.Bottom">
<summary>
<para>A pager positioned at the bottom of the <see cref="T:System.Web.UI.WebControls.DataGrid" />.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.PagerPosition.Top">
<summary>
<para>A pager positioned at the top of the <see cref="T:System.Web.UI.WebControls.DataGrid" />.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.PagerPosition.TopAndBottom">
<summary>
<para> Pagers positioned at both the top and the bottom of the <see cref="T:System.Web.UI.WebControls.DataGrid" />.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.Panel">
<summary>
<para> Represents
a control that acts as a container for other controls.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.Panel.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Panel" /> class.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Panel.BackImageUrl">
<summary>
<para> Gets or sets the URL of the background image for the panel
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Panel.HorizontalAlign">
<summary>
<para> Gets or sets the horizontal alignment of the contents within the panel.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Panel.Wrap">
<summary>
<para>
Gets or sets a value
indicating whether the content wraps within the panel.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.PlaceHolderControlBuilder">
<summary>
<para>Interacts with the parser to build a <see cref="T:System.Web.UI.WebControls.PlaceHolder" /> control.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.PlaceHolder">
<summary>
<para>A container to store dynamically added server controls on the Web page.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.RadioButton">
<summary>
<para> Represents a radio button
control.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.RadioButton.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.RadioButton" /> class.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.RadioButton.GroupName">
<summary>
<para> Gets
or sets the name of the group that the radio button belongs to.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.RadioButtonList">
<summary>
<para>Represents a list control that encapsulates a group of
radio button controls.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.RadioButtonList.#ctor">
<summary>
<para>Initializes a new instance of a <see cref="T:System.Web.UI.WebControls.RadioButtonList" /> class.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.RadioButtonList.CellPadding">
<summary>
<para>Gets or sets the distance (in pixels) between the border
and the
contents of the table cell.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.RadioButtonList.CellSpacing">
<summary>
<para>Gets or sets the distance (in
pixels) between adjacent table cells.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.RadioButtonList.RepeatColumns">
<summary>
<para>Gets or sets the number of columns to display
in the <see cref="T:System.Web.UI.WebControls.RadioButtonList" />
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.RadioButtonList.RepeatDirection">
<summary>
<para> Gets or sets the direction that the radio
buttons within the group are displayed.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.RadioButtonList.RepeatLayout">
<summary>
<para>Gets or sets the layout of radio buttons within the
group.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.RadioButtonList.TextAlign">
<summary>
<para> Gets
or sets the text alignment for the radio buttons within the group.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.RangeValidator">
<summary>
<para> Checks whether the value of an
input control is within a specified range of values.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.RangeValidator.MaximumValue">
<summary>
<para> Gets or sets the maximum value of the validation range.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.RangeValidator.MinimumValue">
<summary>
<para> Gets or sets the minimum value of the validation range.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.RegularExpressionValidator">
<summary>
<para>Validates whether the value of an associated input control matches the pattern
specified by a regular expression.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.RegularExpressionValidator.ValidationExpression">
<summary>
<para> Gets or sets the regular expression that determines the pattern used to validate a field.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.RepeatDirection">
<summary>
<para> Specifies the direction in which items of a list control are displayed.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.RepeatDirection.Horizontal">
<summary>
<para> Items of a list are displayed horizontally in rows from left to right, then top to bottom, until all items are rendered.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.RepeatDirection.Vertical">
<summary>
<para>Items of a list are displayed vertically in columns from top to bottom,
and then left to right, until all items are rendered.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.Repeater">
<summary>
<para> A data-bound list control that allows custom layout by repeating
a specified template for each item
displayed in the
list.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.Repeater.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Repeater" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.Repeater.OnItemCommand(System.Web.UI.WebControls.RepeaterCommandEventArgs)">
<summary>
<para> Raises the <see cref="E:System.Web.UI.WebControls.Repeater.ItemCommand" /> event.</para>
</summary>
<param name="e">The <see cref="T:System.Web.UI.WebControls.RepeaterCommandEventArgs" /> that contains the event data.</param>
</member>
<member name="M:System.Web.UI.WebControls.Repeater.OnItemCreated(System.Web.UI.WebControls.RepeaterItemEventArgs)">
<summary>
<para> Raises the <see cref="E:System.Web.UI.WebControls.Repeater.ItemCreated" /> event.</para>
</summary>
<param name="e">The <see cref="T:System.Web.UI.WebControls.RepeaterItemEventArgs" /> that contains the event data.</param>
</member>
<member name="M:System.Web.UI.WebControls.Repeater.OnItemDataBound(System.Web.UI.WebControls.RepeaterItemEventArgs)">
<summary>
<para> Raises the <see cref="E:System.Web.UI.WebControls.Repeater.ItemDataBound" />
event.</para>
</summary>
<param name="e">The <see cref="T:System.Web.UI.WebControls.RepeaterItemEventArgs" /> that contains the event data.</param>
</member>
<member name="P:System.Web.UI.WebControls.Repeater.AlternatingItemTemplate">
<summary>
<para> Gets or sets the <see cref="T:System.Web.UI.ITemplate" qualify="true" /> that defines how alternating (zero-based odd-indexed) items
are rendered. </para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Repeater.Controls">
<summary>
<para> Gets a <see cref="T:System.Web.UI.ControlCollection" qualify="true" /> that contains the
child controls of the <see cref="T:System.Web.UI.WebControls.Repeater" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Repeater.DataMember">
<summary>
<para>Gets or sets the specific table in the <see cref="P:System.Web.UI.WebControls.Repeater.DataSource" /> to bind to the
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Repeater.DataSource">
<summary>
<para> Gets or sets the data source that provides data for
populating the list.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Repeater.FooterTemplate">
<summary>
<para>Gets or sets the <see cref="T:System.Web.UI.ITemplate" qualify="true" /> that defines how the control footer is
rendered. </para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Repeater.HeaderTemplate">
<summary>
<para> Gets or sets the <see cref="T:System.Web.UI.ITemplate" qualify="true" /> that defines how the control header is rendered. </para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Repeater.Items">
<summary>
<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>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Repeater.ItemTemplate">
<summary>
<para> Gets or sets the <see cref="T:System.Web.UI.ITemplate" qualify="true" /> that defines how items are rendered. </para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Repeater.SeparatorTemplate">
<summary>
<para> Gets or sets the <see cref="T:System.Web.UI.ITemplate" qualify="true" /> that defines how
separators between items are rendered.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.Repeater.ItemCommand">
<summary>
<para>Occurs when a button is clicked in the <see cref="T:System.Web.UI.WebControls.Repeater" /> control.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.Repeater.ItemCreated">
<summary>
<para> Occurs when an item is created in the <see cref="T:System.Web.UI.WebControls.Repeater" /> control.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.Repeater.ItemDataBound">
<summary>
<para>Occurs after an item in the <see cref="T:System.Web.UI.WebControls.Repeater" /> is data-bound but before it is
rendered on the page.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.RepeaterCommandEventArgs">
<summary>
<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>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.RepeaterCommandEventArgs.#ctor(System.Web.UI.WebControls.RepeaterItem,System.Object,System.Web.UI.WebControls.CommandEventArgs)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.RepeaterCommandEventArgs" />
class.</para>
</summary>
<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>
<param name="commandSource">The command source. The <see cref="P:System.Web.UI.WebControls.RepeaterCommandEventArgs.CommandSource" /> property is set to this value.</param>
<param name="originalArgs">The original event arguments.</param>
</member>
<member name="P:System.Web.UI.WebControls.RepeaterCommandEventArgs.Item">
<summary>
<para> Gets the <see cref="T:System.Web.UI.WebControls.RepeaterItem" /> associated with the event. </para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.RepeaterCommandEventArgs.CommandSource">
<summary>
<para> Gets the source of the command. </para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.RepeaterCommandEventHandler">
<summary>
<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>
</summary>
<param name="source">The source of the event.</param>
<param name=" e">A <see cref="T:System.Web.UI.WebControls.RepeaterCommandEventArgs" /> that contains the event data.</param>
</member>
<member name="T:System.Web.UI.WebControls.RepeaterItem">
<summary>
<para>Represents an item in the <see cref="T:System.Web.UI.WebControls.Repeater" /> control.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.RepeaterItem.#ctor(System.Int32,System.Web.UI.WebControls.ListItemType)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.RepeaterItem" />
class.</para>
</summary>
<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>
<param name=" itemType">One of the <see cref="T:System.Web.UI.WebControls.ListItemType" /> values.</param>
</member>
<member name="P:System.Web.UI.WebControls.RepeaterItem.DataItem">
<summary>
<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>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.RepeaterItem.ItemIndex">
<summary>
<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
control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.RepeaterItem.ItemType">
<summary>
<para>Gets the type of the item in the <see cref="T:System.Web.UI.WebControls.Repeater" /> control.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.RepeaterItemCollection">
<summary>
<para>Represents a collection of <see cref="T:System.Web.UI.WebControls.RepeaterItem" /> objects in the
<see cref="T:System.Web.UI.WebControls.Repeater" /> control. This class cannot be
inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.RepeaterItemCollection.#ctor(System.Collections.ArrayList)">
<summary>
<para>Initializes a new instance of
the <see cref="T:System.Web.UI.WebControls.RepeaterItemCollection" /> class.</para>
</summary>
<param name="items">A <see cref="T:System.Collections.ArrayList" qualify="true" /> object that contains the items with which to initialize the collection. </param>
</member>
<member name="M:System.Web.UI.WebControls.RepeaterItemCollection.CopyTo(System.Array,System.Int32)">
<summary>
<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,
starting at the specified index in the <see cref="T:System.Array" qualify="true" />
object.</para>
</summary>
<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>
<param name=" index">The first position in the specified <see cref="T:System.Array" qualify="true" /> object to receive the copied contents.</param>
</member>
<member name="M:System.Web.UI.WebControls.RepeaterItemCollection.GetEnumerator">
<summary>
<para>Returns 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>
</summary>
<returns>
<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>
</returns>
</member>
<member name="P:System.Web.UI.WebControls.RepeaterItemCollection.Count">
<summary>
<para>Gets the number of <see cref="T:System.Web.UI.WebControls.RepeaterItem" /> objects in the collection.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.RepeaterItemCollection.IsReadOnly">
<summary>
<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>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.RepeaterItemCollection.IsSynchronized">
<summary>
<para>Gets a value indicating whether access to the <see cref="T:System.Web.UI.WebControls.RepeaterItemCollection" /> is synchronized (thread-safe).</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.RepeaterItemCollection.SyncRoot">
<summary>
<para>Gets the object that can be used to synchronize access
to the <see cref="T:System.Web.UI.WebControls.RepeaterItemCollection" />
collection.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.RepeaterItemCollection.Item(System.Int32)">
<summary>
<para>Gets the <see cref="T:System.Web.UI.WebControls.RepeaterItem" /> object at the specified index in
the collection.</para>
</summary>
<param name="index">The zero-based index of the <see cref="T:System.Web.UI.WebControls.RepeaterItem" /> object to retrieve in the collection.</param>
</member>
<member name="T:System.Web.UI.WebControls.RepeaterItemEventArgs">
<summary>
<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>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.RepeaterItemEventArgs.#ctor(System.Web.UI.WebControls.RepeaterItem)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.RepeaterItemEventArgs" /> class.</para>
</summary>
<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>
</member>
<member name="P:System.Web.UI.WebControls.RepeaterItemEventArgs.Item">
<summary>
<para> Gets the <see cref="T:System.Web.UI.WebControls.RepeaterItem" /> associated with the event.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.RepeaterItemEventHandler">
<summary>
<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>
</summary>
<param name="sender">The source of the event.</param>
<param name=" e">A <see cref="T:System.Web.UI.WebControls.RepeaterItemEventArgs" /> that contains the event data.</param>
</member>
<member name="T:System.Web.UI.WebControls.RepeatInfo">
<summary>
<para>Encapsulates the information used to render a list control that repeats
a list of items.
This class cannot be inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.RepeatInfo.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.RepeatInfo" />
class.</para>
</summary>
</member>
<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)">
<summary>
<para>Renders a list control that repeats a list of
items, using the specified
information.</para>
</summary>
<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>
<param name=" user">An <see cref="T:System.Web.UI.WebControls.IRepeatInfoUser" /> implemented object that represents the control to render.</param>
<param name=" controlStyle">A <see cref="T:System.Web.UI.WebControls.Style" /> that represents the style in which to display the items.</param>
<param name=" baseControl">The control from which to copy base attributes.</param>
</member>
<member name="P:System.Web.UI.WebControls.RepeatInfo.OuterTableImplied">
<summary>
<para>Gets or sets a value indicating whether items should be rendered as if they are contained
in a table.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.RepeatInfo.RepeatColumns">
<summary>
<para> Gets or sets the number of columns to render.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.RepeatInfo.RepeatDirection">
<summary>
<para>Gets or sets a value that specifies whether
the items are displayed vertically or horizontally.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.RepeatInfo.RepeatLayout">
<summary>
<para> Gets or sets a
value specifying whether items are displayed in a table.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.RepeatLayout">
<summary>
<para> Specifies the layout of items in a list control.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.RepeatLayout.Table">
<summary>
<para> Items are displayed in a table.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.RepeatLayout.Flow">
<summary>
<para> Items are displayed without a table structure.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.RequiredFieldValidator">
<summary>
<para> Makes the associated input control a required field.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.RequiredFieldValidator.InitialValue">
<summary>
<para>
Gets or sets the initial value of the associated input control. </para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.SelectedDatesCollection">
<summary>
<para>Encapsulates a collection of <see cref="T:System.DateTime" qualify="true" />
objects that represent the selected dates in a <see cref="T:System.Web.UI.WebControls.Calendar" /> control. This class cannot be
inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.SelectedDatesCollection.#ctor(System.Collections.ArrayList)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" /> class
with the specified date list.</para>
</summary>
<param name="dateList">A <see cref="T:System.Collections.ArrayList" qualify="true" /> that represents a collection of dates.</param>
</member>
<member name="M:System.Web.UI.WebControls.SelectedDatesCollection.Add(System.DateTime)">
<summary>
<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>
</summary>
<param name="date">The <see cref="T:System.DateTime" qualify="true" /> to add to the collection.</param>
</member>
<member name="M:System.Web.UI.WebControls.SelectedDatesCollection.Clear">
<summary>
<para>Removes all <see cref="T:System.DateTime" qualify="true" /> objects from the collection.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.SelectedDatesCollection.Contains(System.DateTime)">
<summary>
<para>Returns a value indicating whether the
<see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" /> contains the specified
<see cref="T:System.DateTime" qualify="true" /> object.</para>
</summary>
<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>
<returns>
<para>
<see langword="true" /> if the
<see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" /> contains
the specified <see cref="T:System.DateTime" qualify="true" />;
otherwise, <see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.SelectedDatesCollection.GetEnumerator">
<summary>
<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>
</summary>
<returns>
<para>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>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.SelectedDatesCollection.CopyTo(System.Array,System.Int32)">
<summary>
<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
index.</para>
</summary>
<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>
<param name=" index">The first index in the specified <see cref="T:System.Array" qualify="true" /> to receive the items.</param>
</member>
<member name="M:System.Web.UI.WebControls.SelectedDatesCollection.Remove(System.DateTime)">
<summary>
<para>Removes the specified <see cref="T:System.DateTime" qualify="true" /> object from the <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" />.</para>
</summary>
<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>
</member>
<member name="M:System.Web.UI.WebControls.SelectedDatesCollection.SelectRange(System.DateTime,System.DateTime)">
<summary>
<para>Adds the specified range of dates to the <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" />.</para>
</summary>
<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>
<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>
</member>
<member name="P:System.Web.UI.WebControls.SelectedDatesCollection.Count">
<summary>
<para>Gets the number of <see cref="T:System.DateTime" qualify="true" /> objects in the <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.SelectedDatesCollection.Item(System.Int32)">
<summary>
<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>
</summary>
<param name=" index">An ordinal index value that specifies which <see cref="T:System.DateTime" qualify="true" /> to return.</param>
</member>
<member name="P:System.Web.UI.WebControls.SelectedDatesCollection.SyncRoot">
<summary>
<para>Gets the object that can be used to synchronize access
to the <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.SelectedDatesCollection.IsReadOnly">
<summary>
<para>Gets a value indicating whether the <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" /> is read-only.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.SelectedDatesCollection.IsSynchronized">
<summary>
<para>Gets a value indicating whether access to the <see cref="T:System.Web.UI.WebControls.SelectedDatesCollection" /> is synchronized
(thread-safe).</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.ServerValidateEventArgs">
<summary>
<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>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.ServerValidateEventArgs.#ctor(System.String,System.Boolean)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.ServerValidateEventArgs" /> class.</para>
</summary>
<param name="value">The value to validate.</param>
<param name=" isValid">
<see langword="true" /> to indicate that the value passes validation; otherwise, <see langword="false" />.</param>
</member>
<member name="P:System.Web.UI.WebControls.ServerValidateEventArgs.Value">
<summary>
<para>Gets the value to validate in the custom event
handler for the <see cref="E:System.Web.UI.WebControls.CustomValidator.ServerValidate" /> event.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ServerValidateEventArgs.IsValid">
<summary>
<para> Gets or sets whether the value
specified by the <see cref="P:System.Web.UI.WebControls.ServerValidateEventArgs.Value" /> property passes validation.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.ServerValidateEventHandler">
<summary>
<para>Represents the method that will handle the <see cref="E:System.Web.UI.WebControls.CustomValidator.ServerValidate" /> event of a
<see cref="T:System.Web.UI.WebControls.CustomValidator" /> control.</para>
</summary>
<param name="source">The source of the event.</param>
<param name=" args">A <see cref="T:System.Web.UI.WebControls.ServerValidateEventArgs" /> that contains the event data.</param>
</member>
<member name="T:System.Web.UI.WebControls.TableCellControlBuilder">
<summary>
<para>Interacts with the parser to build a <see cref="T:System.Web.UI.WebControls.TableCell" /> control.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.TableCell">
<summary>
<para>Represents a cell in a <see cref="T:System.Web.UI.WebControls.Table" /> control.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.TableCell.#ctor">
<summary>
<para> Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.TableCell" /> class.
</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TableCell.ColumnSpan">
<summary>
<para>Gets or sets the number of columns in the <see cref="T:System.Web.UI.WebControls.Table" />
control that the cell spans.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TableCell.HorizontalAlign">
<summary>
<para>Gets or sets
the horizontal alignment of the contents in the cell.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TableCell.RowSpan">
<summary>
<para>Gets or sets the number of rows in the <see cref="T:System.Web.UI.WebControls.Table" />
control that the cell spans.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TableCell.Text">
<summary>
<para> Gets or sets the text contents of the cell.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TableCell.VerticalAlign">
<summary>
<para>Gets or sets the vertical alignment of the contents in the cell.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TableCell.Wrap">
<summary>
<para> Gets or sets a value that indicates whether the
content of the cell wrap in the cell.
</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.TableCellCollection">
<summary>
<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
<see cref="T:System.Web.UI.WebControls.Table" /> control. This class cannot be
inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.TableCellCollection.Add(System.Web.UI.WebControls.TableCell)">
<summary>
<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>
</summary>
<param name="cell">The <see cref="T:System.Web.UI.WebControls.TableCell" /> to add to the collection.</param>
<returns>
<para>The index number of the <see cref="T:System.Web.UI.WebControls.TableCell" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.TableCellCollection.AddAt(System.Int32,System.Web.UI.WebControls.TableCell)">
<summary>
<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
index location.</para>
</summary>
<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>
<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>
</member>
<member name="M:System.Web.UI.WebControls.TableCellCollection.AddRange(System.Web.UI.WebControls.TableCell[])">
<summary>
<para>Appends the <see cref="T:System.Web.UI.WebControls.TableCell" /> objects from the specifed array to
the end of the collection.</para>
</summary>
<param name="cells">The array containing the <see cref="T:System.Web.UI.WebControls.TableCell" /> objects to add to the collection.</param>
</member>
<member name="M:System.Web.UI.WebControls.TableCellCollection.Clear">
<summary>
<para>Removes all <see cref="T:System.Web.UI.WebControls.TableCell" /> objects from the <see cref="T:System.Web.UI.WebControls.TableCellCollection" />.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.TableCellCollection.GetCellIndex(System.Web.UI.WebControls.TableCell)">
<summary>
<para> Returns a value that represents the index of the
specified <see cref="T:System.Web.UI.WebControls.TableCell" /> from the <see cref="T:System.Web.UI.WebControls.TableCellCollection" />.</para>
</summary>
<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>
<returns>
<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
default is -1, which indicates that a match has not been
found.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.TableCellCollection.GetEnumerator">
<summary>
<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>
</summary>
<returns>
<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>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.TableCellCollection.CopyTo(System.Array,System.Int32)">
<summary>
<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
index in the <see cref="T:System.Array" qualify="true" />.</para>
</summary>
<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>
<param name=" index">The first index in the specified <see cref="T:System.Array" qualify="true" /> to receive the items.</param>
</member>
<member name="M:System.Web.UI.WebControls.TableCellCollection.Remove(System.Web.UI.WebControls.TableCell)">
<summary>
<para>Removes the specified <see cref="T:System.Web.UI.WebControls.TableCell" /> from the <see cref="T:System.Web.UI.WebControls.TableCellCollection" />.</para>
</summary>
<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>
</member>
<member name="M:System.Web.UI.WebControls.TableCellCollection.RemoveAt(System.Int32)">
<summary>
<para>Removes a <see cref="T:System.Web.UI.WebControls.TableCell" /> from the <see cref="T:System.Web.UI.WebControls.TableCellCollection" /> at
the specified index.</para>
</summary>
<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>
</member>
<member name="P:System.Web.UI.WebControls.TableCellCollection.Count">
<summary>
<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>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TableCellCollection.Item(System.Int32)">
<summary>
<para>Gets a <see cref="T:System.Web.UI.WebControls.TableCell" /> from the
<see cref="T:System.Web.UI.WebControls.TableCellCollection" /> at the
specified index.</para>
</summary>
<param name="index">An ordinal index value that specifies the <see cref="T:System.Web.UI.WebControls.TableCell" /> to return.</param>
</member>
<member name="P:System.Web.UI.WebControls.TableCellCollection.SyncRoot">
<summary>
<para>Gets the object that can be used to synchronize access
to the <see cref="T:System.Web.UI.WebControls.TableCellCollection" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TableCellCollection.IsReadOnly">
<summary>
<para>Gets a value indicating whether the <see cref="T:System.Web.UI.WebControls.TableCellCollection" /> is read-only.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TableCellCollection.IsSynchronized">
<summary>
<para>Gets a value indicating whether access to
the <see cref="T:System.Web.UI.WebControls.TableCellCollection" /> is synchronized
(thread-safe).</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.TableHeaderCell">
<summary>
<para> Represents a heading cell within a <see cref="T:System.Web.UI.WebControls.Table" />
control.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.TableHeaderCell.#ctor">
<summary>
<para> Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.TableHeaderCell" /> class.
</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.TableRowCollection">
<summary>
<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
inherited.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.TableRowCollection.Add(System.Web.UI.WebControls.TableRow)">
<summary>
<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>
</summary>
<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>
<returns>
<para>The index of the <see cref="T:System.Web.UI.WebControls.TableRow" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.TableRowCollection.AddAt(System.Int32,System.Web.UI.WebControls.TableRow)">
<summary>
<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
index location.</para>
</summary>
<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>
<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>
</member>
<member name="M:System.Web.UI.WebControls.TableRowCollection.AddRange(System.Web.UI.WebControls.TableRow[])">
<summary>
<para>Appends the <see cref="T:System.Web.UI.WebControls.TableRow" /> objects from the specifed array to
the end of the collection.</para>
</summary>
<param name="rows">The array containing the <see cref="T:System.Web.UI.WebControls.TableRow" /> objects to add to the collection.</param>
</member>
<member name="M:System.Web.UI.WebControls.TableRowCollection.Clear">
<summary>
<para>Removes all <see cref="T:System.Web.UI.WebControls.TableRow" /> controls from the <see cref="T:System.Web.UI.WebControls.TableRowCollection" />.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.TableRowCollection.GetRowIndex(System.Web.UI.WebControls.TableRow)">
<summary>
<para> Returns a value that represents the index of the specified
<see cref="T:System.Web.UI.WebControls.TableRow" /> from
the <see cref="T:System.Web.UI.WebControls.TableRowCollection" />. </para>
</summary>
<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>
<returns>
<para>The ordinal index position of the specified <see cref="T:System.Web.UI.WebControls.TableRow" /> within
the collection. The default is -1, which indicates that the specified <see cref="T:System.Web.UI.WebControls.TableRow" /> has
not been found.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.TableRowCollection.GetEnumerator">
<summary>
<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>
</summary>
<returns>
<para> A
<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>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.TableRowCollection.CopyTo(System.Array,System.Int32)">
<summary>
<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
the specified index in the <see cref="T:System.Array" qualify="true" />.</para>
</summary>
<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>
<param name=" index">The first position in the specified <see cref="T:System.Array" qualify="true" /> to receive copied contents.</param>
</member>
<member name="M:System.Web.UI.WebControls.TableRowCollection.Remove(System.Web.UI.WebControls.TableRow)">
<summary>
<para>Removes the specified <see cref="T:System.Web.UI.WebControls.TableRow" /> from the <see cref="T:System.Web.UI.WebControls.TableRowCollection" />.</para>
</summary>
<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>
</member>
<member name="M:System.Web.UI.WebControls.TableRowCollection.RemoveAt(System.Int32)">
<summary>
<para>Removes a <see cref="T:System.Web.UI.WebControls.TableRow" /> from the <see cref="T:System.Web.UI.WebControls.TableRowCollection" /> at the
specified index.</para>
</summary>
<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>
</member>
<member name="P:System.Web.UI.WebControls.TableRowCollection.Count">
<summary>
<para>Gets
the number of <see cref="T:System.Web.UI.WebControls.TableRow" /> objects in the <see cref="T:System.Web.UI.WebControls.TableRowCollection" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TableRowCollection.Item(System.Int32)">
<summary>
<para>Gets a <see cref="T:System.Web.UI.WebControls.TableRow" /> from the
<see cref="T:System.Web.UI.WebControls.TableRowCollection" /> at the
specified index.</para>
</summary>
<param name="index">An ordinal index value that specifies which <see cref="T:System.Web.UI.WebControls.TableRow" /> to return.</param>
</member>
<member name="P:System.Web.UI.WebControls.TableRowCollection.SyncRoot">
<summary>
<para>Gets the object that can be used to synchronize access to
the <see cref="T:System.Web.UI.WebControls.TableRowCollection" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TableRowCollection.IsReadOnly">
<summary>
<para>Gets a value indicating whether the <see cref="T:System.Web.UI.WebControls.TableRowCollection" /> is read-only.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TableRowCollection.IsSynchronized">
<summary>
<para>Gets a value indicating whether access to the <see cref="T:System.Web.UI.WebControls.TableRowCollection" /> is synchronized
(thread-safe).</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.TableStyle">
<summary>
<para>Represents the style for a table control. This class is primarily used by control developers.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.TableStyle.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.TableStyle" /> class using default values.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.TableStyle.#ctor(System.Web.UI.StateBag)">
<summary>
<para> Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.TableStyle" /> class with the
specified state bag information.
</para>
</summary>
<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>
</member>
<member name="P:System.Web.UI.WebControls.TableStyle.BackImageUrl">
<summary>
<para> Gets or sets the URL
of an image to display in the background of a table control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TableStyle.CellPadding">
<summary>
<para>Gets or sets the amount of space between the contents of the
cell and the cell's border.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TableStyle.CellSpacing">
<summary>
<para>Gets or sets the distance between table cells.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TableStyle.GridLines">
<summary>
<para> Gets or sets a value that specifies whether
the border between the cells of the table control is displayed.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TableStyle.HorizontalAlign">
<summary>
<para>Gets or sets the horizontal alignment of the table within its container.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.TargetConverter">
<summary>
<para> Converts a value representing the location (target) to
display the content resulting from a Web navigation to a string. It also
converts a string to a target value.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.TemplateColumn">
<summary>
<para>Represents a column type for the <see cref="T:System.Web.UI.WebControls.DataGrid" /> control that allows you
to customize the layout of controls in the column.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.TemplateColumn.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.TemplateColumn" /> class.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TemplateColumn.EditItemTemplate">
<summary>
<para>Gets or sets the template for displaying the item
selected for editing in a <see cref="T:System.Web.UI.WebControls.TemplateColumn" />. </para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TemplateColumn.FooterTemplate">
<summary>
<para> Gets or sets the
template for displaying the footer section of the <see cref="T:System.Web.UI.WebControls.TemplateColumn" />. </para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TemplateColumn.HeaderTemplate">
<summary>
<para> Gets or sets
the template for displaying the heading section of the <see cref="T:System.Web.UI.WebControls.TemplateColumn" />. </para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TemplateColumn.ItemTemplate">
<summary>
<para> Gets or sets the template
for displaying a data item in a <see cref="T:System.Web.UI.WebControls.TemplateColumn" />. </para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.TextAlign">
<summary>
<para> Specifies whether the text associated with a check box or radio button
control appears to the left or to the right of the control.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.TextAlign.Left">
<summary>
<para> Text associated with a check box or radio button control appears to the left of the control.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.TextAlign.Right">
<summary>
<para> Text associated with a check box or radio button control appears to
the right of the control.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.TextBoxControlBuilder">
<summary>
<para>Interacts with the parser to build a <see cref="T:System.Web.UI.WebControls.TextBox" /> control.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.TextBoxControlBuilder.HtmlDecodeLiterals">
<summary>
<para>Checks whether the literal string of the <see cref="T:System.Web.UI.WebControls.TextBox" /> control must be HTML decoded.</para>
</summary>
<returns>
<para>
<see langword="true" /> for all cases.</para>
</returns>
</member>
<member name="T:System.Web.UI.WebControls.TextBox">
<summary>
<para>Constructs a text box and defines its properties.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.TextBox.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.TextBox" /> class.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.TextBox.OnTextChanged(System.EventArgs)">
<summary>
<para> Raises the <see cref="E:System.Web.UI.WebControls.TextBox.TextChanged" /> event.</para>
</summary>
<param name="e">A <see cref="T:System.EventArgs" qualify="true" /> that contains event information.</param>
</member>
<member name="P:System.Web.UI.WebControls.TextBox.AutoPostBack">
<summary>
<para>Gets or sets a value indicating whether an automatic
postback to the server will occur whenever the user changes the
content of the text box.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TextBox.Columns">
<summary>
<para>Gets or sets the display
width of the text box in characters.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TextBox.MaxLength">
<summary>
<para>Gets or sets the maximum number of characters allowed in the text box.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TextBox.TextMode">
<summary>
<para> Gets or sets the behavior mode of the text box.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TextBox.ReadOnly">
<summary>
<para>Gets or sets a value indicating whether the contents of
the <see cref="T:System.Web.UI.WebControls.TextBox" /> control can be changed.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TextBox.Rows">
<summary>
<para> Gets or sets the display height of a multiline text box.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TextBox.Text">
<summary>
<para> Gets
or sets the text content of the text box.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.TextBox.Wrap">
<summary>
<para>Gets or sets a value indicating whether the
text content wraps within the text box.</para>
</summary>
</member>
<member name="E:System.Web.UI.WebControls.TextBox.TextChanged">
<summary>
<para>Occurs when the content of the text box is
changed upon server postback.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.TextBoxMode">
<summary>
<para> Specifies the behavior mode of
the text box.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.TextBoxMode.SingleLine">
<summary>
<para>
Single-line entry mode.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.TextBoxMode.MultiLine">
<summary>
<para> Multi
line entry mode.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.TextBoxMode.Password">
<summary>
<para>
Password entry mode.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.TitleFormat">
<summary>
<para> Specifies the title format
for the displayed month in the <see cref="T:System.Web.UI.WebControls.Calendar" />
control.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.TitleFormat.Month">
<summary>
<para> Title displayed with only the
month but not the year. For example, "January".</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.TitleFormat.MonthYear">
<summary>
<para> Title displayed with both the
month and the year. For example, "January 2000".</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.Unit">
<summary>
<para> Represents a length
measurement.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.Unit.Empty">
<summary>
<para>Represents an empty <see cref="T:System.Web.UI.WebControls.Unit" />. This field is
read-only.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.Unit.#ctor(System.Int32)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Unit" /> structure with the specified 32-bit signed integer.</para>
</summary>
<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>
</member>
<member name="M:System.Web.UI.WebControls.Unit.#ctor(System.Double)">
<summary>
<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>
</summary>
<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>
</member>
<member name="M:System.Web.UI.WebControls.Unit.#ctor(System.Double,System.Web.UI.WebControls.UnitType)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Unit" /> structure with the specified double
precision floating point number and <see cref="T:System.Web.UI.WebControls.UnitType" />.</para>
</summary>
<param name="value">A double precision floating point number that represents the length of the <see cref="T:System.Web.UI.WebControls.Unit" />.</param>
<param name=" type">One of the <see cref="T:System.Web.UI.WebControls.UnitType" /> enumeration values.</param>
</member>
<member name="M:System.Web.UI.WebControls.Unit.#ctor(System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Unit" /> structure with the specified text.</para>
</summary>
<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>
</member>
<member name="M:System.Web.UI.WebControls.Unit.#ctor(System.String,System.Globalization.CultureInfo)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Unit" /> structure with the specified text and
<see cref="T:System.Globalization.CultureInfo" qualify="true" />.</para>
</summary>
<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>
<param name=" culture">A <see cref="T:System.Globalization.CultureInfo" qualify="true" /> that represents the culture.</param>
</member>
<member name="M:System.Web.UI.WebControls.Unit.Equals(System.Object)">
<summary>
<para>Compares this <see cref="T:System.Web.UI.WebControls.Unit" /> with the specified object.</para>
</summary>
<param name="obj">The specified object for comparison.</param>
<returns>
<para>
<see langword="true" /> if the <see cref="T:System.Web.UI.WebControls.Unit" /> that this
method is called from is equal to the specified object; otherwise,
<see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.Unit.op_Equality(System.Web.UI.WebControls.Unit,System.Web.UI.WebControls.Unit)">
<summary>
<para>Compares two <see cref="T:System.Web.UI.WebControls.Unit" /> objects to determine whether they are equal.</para>
</summary>
<param name="left">The <see cref="T:System.Web.UI.WebControls.Unit" /> on the left side of the operator.</param>
<param name=" right">The <see cref="T:System.Web.UI.WebControls.Unit" /> on the right side of the operator.</param>
<returns>
<para>
<see langword="true" /> if both <see cref="T:System.Web.UI.WebControls.Unit" /> objects are equal;
otherwise, <see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.Unit.op_Inequality(System.Web.UI.WebControls.Unit,System.Web.UI.WebControls.Unit)">
<summary>
<para>Compares two <see cref="T:System.Web.UI.WebControls.Unit" /> objects to determine whether
they are not equal.</para>
</summary>
<param name=" left">The <see cref="T:System.Web.UI.WebControls.Unit" /> on the left side of the operator.</param>
<param name=" right">The <see cref="T:System.Web.UI.WebControls.Unit" /> on the right side of the operator.</param>
<returns>
<para>
<see langword="true" /> if the <see cref="T:System.Web.UI.WebControls.Unit" /> objects are not equal;
otherwise, <see langword="false" />.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.Unit.Parse(System.String)">
<summary>
<para>Converts the specified string to a <see cref="T:System.Web.UI.WebControls.Unit" />.</para>
</summary>
<param name="s">The string to convert.</param>
<returns>
<para>A <see cref="T:System.Web.UI.WebControls.Unit" />
that
represents the specified string.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.Unit.Parse(System.String,System.Globalization.CultureInfo)">
<summary>
<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>
</summary>
<param name="s">The string to convert.</param>
<param name=" culture">A <see cref="T:System.Globalization.CultureInfo" qualify="true" /> that represents the culture.</param>
<returns>
<para>A <see cref="T:System.Web.UI.WebControls.Unit" />
that
represents the specified string.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.Unit.Percentage(System.Double)">
<summary>
<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>
</summary>
<param name="n">A double precision floating point number that represents the length of the <see cref="T:System.Web.UI.WebControls.Unit" />.</param>
<returns>
<para>A <see cref="T:System.Web.UI.WebControls.Unit" />
of type <see langword="Percentage" />
that represents the length specified by the double precision floating point number.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.Unit.Pixel(System.Int32)">
<summary>
<para>Creates a <see cref="T:System.Web.UI.WebControls.Unit" /> of type <see langword="Pixel" /> from the specified 32-bit signed integer.</para>
</summary>
<param name="n">A 32-bit signed integer that represents the length of the <see cref="T:System.Web.UI.WebControls.Unit" />.</param>
<returns>
<para>A <see cref="T:System.Web.UI.WebControls.Unit" />
of type <see langword="Pixel" /> that represents the length
specified by the <paramref name="n" />
parameter.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.Unit.Point(System.Int32)">
<summary>
<para>Creates a <see cref="T:System.Web.UI.WebControls.Unit" /> of type <see langword="Point" /> from the specified 32-bit signed integer.</para>
</summary>
<param name="n">A 32-bit signed integer that represents the length of the <see cref="T:System.Web.UI.WebControls.Unit" />.</param>
<returns>
<para>A <see cref="T:System.Web.UI.WebControls.Unit" />
of type <see langword="Point" />
that represents the length specified by the 32-bit signed integer.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.Unit.ToString(System.Globalization.CultureInfo)">
<summary>
<para>Converts a <see cref="T:System.Web.UI.WebControls.Unit" /> to a string equivalent in the
specified culture.</para>
</summary>
<param name="culture">A <see cref="T:System.Globalization.CultureInfo" qualify="true" /> that represents the culture.</param>
<returns>
<para>A <see cref="T:System.String" qualify="true" />
represents this <see cref="T:System.Web.UI.WebControls.Unit" /> in the culture specified by the
<paramref name="culture" /> parameter.</para>
</returns>
</member>
<member name="M:System.Web.UI.WebControls.Unit.op_Implicit(System.Int32)~System.Web.UI.WebControls.Unit">
<summary>
<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>
</summary>
<param name="n">A 32-bit signed integer that represents the length of the <see cref="T:System.Web.UI.WebControls.Unit" />.</param>
<returns>
<para>A <see cref="T:System.Web.UI.WebControls.Unit" /> of type
<see langword="Pixel" /> that represents the 32-bit unsigned integer
specified by the <paramref name="n" /> parameter.</para>
</returns>
</member>
<member name="P:System.Web.UI.WebControls.Unit.IsEmpty">
<summary>
<para>Gets a value indicating whether the <see cref="T:System.Web.UI.WebControls.Unit" /> is empty.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Unit.Type">
<summary>
<para> Gets the unit type of the <see cref="T:System.Web.UI.WebControls.Unit" />.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Unit.Value">
<summary>
<para>Gets the length of the <see cref="T:System.Web.UI.WebControls.Unit" />.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.UnitConverter">
<summary>
<para> Converts a <see cref="T:System.Web.UI.WebControls.Unit" /> to an object of another data
type. It also converts an object of another data type to a <see cref="T:System.Web.UI.WebControls.Unit" />.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.UnitType">
<summary>
<para> Specifies the unit of measurement.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.UnitType.Pixel">
<summary>
<para> Measurement is in pixels.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.UnitType.Point">
<summary>
<para> Measurement is in points. A point represents
1/72 of an inch.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.UnitType.Pica">
<summary>
<para> Measurement is in picas.
A pica represents 12 points.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.UnitType.Inch">
<summary>
<para> Measurement is in inches.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.UnitType.Mm">
<summary>
<para> Measurement is in millimeters.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.UnitType.Cm">
<summary>
<para> Measurement is in centimeters.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.UnitType.Percentage">
<summary>
<para> Measurement is a percentage relative to the parent element.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.UnitType.Em">
<summary>
<para> Measurement is relative to
the
height of
the parent element's font. </para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.UnitType.Ex">
<summary>
<para> Measurement is relative to the height of the lowercase
letter x of the parent
element's font. </para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.ValidatedControlConverter">
<summary>
<para> Converts a control on the Web Forms page
that can be validated with a validation control to a
string.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.ValidatedControlConverter.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.ValidatedControlConverter" /> class.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.ValidationCompareOperator">
<summary>
<para> Specifies the validation comparison operators used by
the <see cref="T:System.Web.UI.WebControls.CompareValidator" />
control.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ValidationCompareOperator.Equal">
<summary>
<para> A comparison for equality.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ValidationCompareOperator.NotEqual">
<summary>
<para> A comparison for inequality.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ValidationCompareOperator.GreaterThan">
<summary>
<para>A comparison for greater than.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ValidationCompareOperator.GreaterThanEqual">
<summary>
<para>A comparison for greater than or equal to.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ValidationCompareOperator.LessThan">
<summary>
<para> A comparison for less than.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ValidationCompareOperator.LessThanEqual">
<summary>
<para>A comparison for less than or equal to.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ValidationCompareOperator.DataTypeCheck">
<summary>
<para> A
comparison for data type only.</para>
<note type="note">
Unlike the other operators,
<see langword="DataTypeCheck" />
is a unary operation. Only the data type of the
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
when this operation is used, those
values are not checked.
</note>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.ValidationDataType">
<summary>
<para> Specifies the validation data types used by the
<see cref="T:System.Web.UI.WebControls.CompareValidator" /> and <see cref="T:System.Web.UI.WebControls.RangeValidator" />
controls.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ValidationDataType.String">
<summary>
<para> A string data type. The value is treated as a <see cref="T:System.String" qualify="true" />.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ValidationDataType.Integer">
<summary>
<para>A 32-bit signed integer data type. The
value is treated as a <see cref="T:System.Int32" qualify="true" />.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ValidationDataType.Double">
<summary>
<para> A double precision floating point number data type. The
value is treated as a <see cref="T:System.Double" qualify="true" />.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ValidationDataType.Date">
<summary>
<para> A date data type. Only numeric dates are allowed. The
time portion cannot be specified.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ValidationDataType.Currency">
<summary>
<para> A monetary data type. The value is treated as a <see cref="T:System.Decimal" qualify="true" />. However, currency and
grouping symbols are still allowed.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.ValidationSummary">
<summary>
<para> Displays
a summary of all validation errors inline on a Web page,
in a message box, or both.</para>
</summary>
</member>
<member name="M:System.Web.UI.WebControls.ValidationSummary.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.ValidationSummary" /> class.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ValidationSummary.DisplayMode">
<summary>
<para>Gets or sets the display mode of the validation summary.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ValidationSummary.EnableClientScript">
<summary>
<para>Gets or sets a value indicating whether the <see cref="T:System.Web.UI.WebControls.ValidationSummary" /> control updates itself using client-side
script.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ValidationSummary.ForeColor">
<summary>
<para>
Gets or sets the fore color of the control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ValidationSummary.HeaderText">
<summary>
<para> Gets or sets the header text displayed at the top
of the summary.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ValidationSummary.ShowMessageBox">
<summary>
<para> Gets or sets a value indicating
whether the validation summary is displayed in a message box.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.ValidationSummary.ShowSummary">
<summary>
<para> Gets or sets a value indicating whether
the validation summary is displayed inline.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.ValidationSummaryDisplayMode">
<summary>
<para> Specifies the validation summary display mode
used by the <see cref="T:System.Web.UI.WebControls.ValidationSummary" /> control.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ValidationSummaryDisplayMode.List">
<summary>
<para>
Validation
summary displayed in a list.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ValidationSummaryDisplayMode.BulletList">
<summary>
<para>
Validation
summary displayed in a bulleted list.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ValidationSummaryDisplayMode.SingleParagraph">
<summary>
<para>Validation summary displayed in a single paragraph.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.ValidatorDisplay">
<summary>
<para>Specifies the display behavior of error messages in validation controls.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ValidatorDisplay.None">
<summary>
<para> Validator content never displayed
inline.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ValidatorDisplay.Static">
<summary>
<para>
Validator content physically part of the page layout.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.ValidatorDisplay.Dynamic">
<summary>
<para>
Validator
content
dynamically added to the page when validation
fails.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.VerticalAlign">
<summary>
<para>Specifies the vertical alignment of an object or text in a control.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.VerticalAlign.NotSet">
<summary>
<para> Vertical alignment is not set.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.VerticalAlign.Top">
<summary>
<para> Text or object is aligned with the top of the
enclosing control.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.VerticalAlign.Middle">
<summary>
<para>
Text or object is aligned with the center of the enclosing control.</para>
</summary>
</member>
<member name="F:System.Web.UI.WebControls.VerticalAlign.Bottom">
<summary>
<para> Text or object is aligned with the bottom of the enclosing
control.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.WebColorConverter">
<summary>
<para>Converts a predefine color name or an RGB color value to and from a <see cref="T:System.Drawing.Color" qualify="true" />.</para>
</summary>
</member>
<member name="T:System.Web.UI.WebControls.Xml">
<summary>
<para> Displays an XML document without formatting or
using Extensible Stylesheet Language Transformations (XSLT).</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Xml.DocumentContent">
<summary>
<para> Sets a string that contains the XML document to
display in the <see cref="T:System.Web.UI.WebControls.Xml" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Xml.DocumentSource">
<summary>
<para>Gets or sets the path to an XML document to display in the <see cref="T:System.Web.UI.WebControls.Xml" /> control.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Xml.TransformSource">
<summary>
<para> Gets or sets the path to an Extensible Stylesheet Language Transformation (XSLT) style sheet that
formats the XML
document before it is written to the output stream.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Xml.Document">
<summary>
<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>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Xml.Transform">
<summary>
<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
the output stream.</para>
</summary>
</member>
<member name="P:System.Web.UI.WebControls.Xml.TransformArgumentList">
<summary>
<para> Gets or sets a <see cref="T:System.Xml.Xsl.XsltArgumentList" qualify="true" /> that contains a list of
optional arguments passed
to the style sheet and used during the Extensible Stylesheet Language Transformation (XSLT).</para>
</summary>
</member>
<member name="P:System.Web.Util.Counter.Value">
</member>
<member name="P:System.Web.Util.Counter.Frequency">
</member>
<member name="T:System.Web.Mail.SmtpMail">
<summary>
<para>Provides properties and methods for sending messages using the Collaboration Data Objects for Windows
2000 (CDOSYS) message component.</para>
</summary>
</member>
<member name="M:System.Web.Mail.SmtpMail.Send(System.String,System.String,System.String,System.String)">
<summary>
<para>Sends an e-mail message using the specified destination
parameters.</para>
</summary>
<param name="from">The address of the e-mail sender.</param>
<param name=" to">The address of the e-mail recipient.</param>
<param name=" subject">The subject line of the e-mail message.</param>
<param name=" messageText">The body of the e-mail message.</param>
</member>
<member name="M:System.Web.Mail.SmtpMail.Send(System.Web.Mail.MailMessage)">
<summary>
<para>Sends an e-mail message using arguments supplied in the
properties of the <see cref="T:System.Web.Mail.MailMessage" />
class.</para>
</summary>
<param name="message">The <see cref="T:System.Web.Mail.MailMessage" /> to send.</param>
</member>
<member name="P:System.Web.Mail.SmtpMail.SmtpServer">
<summary>
<para>Gets or
sets the name of the SMTP mail server to use to send all e-mail
messages.
</para>
</summary>
</member>
<member name="T:System.Web.Mail.MailFormat">
<summary>
<para>Provides enumerated values for e-mail format.</para>
</summary>
</member>
<member name="F:System.Web.Mail.MailFormat.Text">
<summary>
<para>Specifies that the e-mail format is plain text.</para>
</summary>
</member>
<member name="F:System.Web.Mail.MailFormat.Html">
<summary>
<para>Specifies that the e-mail format is HTML.</para>
</summary>
</member>
<member name="T:System.Web.Mail.MailPriority">
<summary>
<para> Specifies the priority level for the e-mail message.</para>
</summary>
</member>
<member name="F:System.Web.Mail.MailPriority.Normal">
<summary>
<para>Specifies that the e-mail message has normal priority.</para>
</summary>
</member>
<member name="F:System.Web.Mail.MailPriority.Low">
<summary>
<para>Specifies that the e-mail message has low priority.</para>
</summary>
</member>
<member name="F:System.Web.Mail.MailPriority.High">
<summary>
<para>Specifies that the e-mail message has high priority.</para>
</summary>
</member>
<member name="T:System.Web.Mail.MailEncoding">
<summary>
<para>Provides enumered values for e-mail encoding.</para>
</summary>
</member>
<member name="F:System.Web.Mail.MailEncoding.UUEncode">
<summary>
<para>Specifies that the e-mail message uses UUEncode encoding.</para>
</summary>
</member>
<member name="F:System.Web.Mail.MailEncoding.Base64">
<summary>
<para>Specifies that the e-mail message uses Base64 encoding.</para>
</summary>
</member>
<member name="T:System.Web.Mail.MailAttachment">
<summary>
<para> Provides properties and methods
for constructing an e-mail attachment.</para>
</summary>
</member>
<member name="M:System.Web.Mail.MailAttachment.#ctor(System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.Mail.MailAttachment" />
class with
the specified file name for the attachment. Sets the <see cref="T:System.Text.Encoding" />
property to UUEncode by default.</para>
</summary>
<param name="filename">The name of the attachment file.</param>
</member>
<member name="M:System.Web.Mail.MailAttachment.#ctor(System.String,System.Web.Mail.MailEncoding)">
<summary>
<para>Initializes a new instance of the <see cref="T:System.Web.Mail.MailAttachment" /> class with the specified file name and encoding
type for the attachment.</para>
</summary>
<param name="filename">The name of the attachment file.</param>
<param name=" encoding">The type of <see cref="T:System.Web.Mail.MailEncoding" /> for the attachment.</param>
</member>
<member name="P:System.Web.Mail.MailAttachment.Filename">
<summary>
<para> Gets the name of the attachment file.</para>
</summary>
</member>
<member name="P:System.Web.Mail.MailAttachment.Encoding">
<summary>
<para> Gets the type of encoding for the e-mail attachment.</para>
</summary>
</member>
<member name="T:System.Web.Mail.MailMessage">
<summary>
<para> Provides properties and methods for constructing an e-mail message.</para>
</summary>
</member>
<member name="P:System.Web.Mail.MailMessage.From">
<summary>
<para>Gets or sets the e-mail address of the sender.</para>
</summary>
</member>
<member name="P:System.Web.Mail.MailMessage.To">
<summary>
<para>Gets or sets the e-mail
address of the recipient.
</para>
</summary>
</member>
<member name="P:System.Web.Mail.MailMessage.Cc">
<summary>
<para>Gets or sets a semicolon-delimited list
of e-mail addresses that receive a carbon copy (CC) of the e-mail
message.
</para>
</summary>
</member>
<member name="P:System.Web.Mail.MailMessage.Bcc">
<summary>
<para> Gets or sets
a semicolon-delimited list of email addresses that receive a
blind carbon copy (BCC) of the e-mail message.</para>
</summary>
</member>
<member name="P:System.Web.Mail.MailMessage.Subject">
<summary>
<para>Gets or sets the
subject line of the e-mail message.
</para>
</summary>
</member>
<member name="P:System.Web.Mail.MailMessage.Priority">
<summary>
<para>Gets or sets the
priority of the e-mail message.
</para>
</summary>
</member>
<member name="P:System.Web.Mail.MailMessage.UrlContentBase">
<summary>
<para> Gets or sets the
<see langword="Content-Base" /> HTTP header, the
URL
base of
all relative URLs used within the HTML-encoded body of the e-mail
message.
</para>
</summary>
</member>
<member name="P:System.Web.Mail.MailMessage.UrlContentLocation">
<summary>
<para> Gets or sets the <see langword="Content-Location" /> HTTP header for the e-mail message.</para>
</summary>
</member>
<member name="P:System.Web.Mail.MailMessage.Body">
<summary>
<para>Gets or sets the body of the e-mail message.</para>
</summary>
</member>
<member name="P:System.Web.Mail.MailMessage.BodyFormat">
<summary>
<para>Gets or sets the content type of the
body of the e-mail message.
</para>
</summary>
</member>
<member name="P:System.Web.Mail.MailMessage.BodyEncoding">
<summary>
<para>Gets or sets the encoding type of the
body of the e-mail message.
</para>
</summary>
</member>
<member name="P:System.Web.Mail.MailMessage.Headers">
<summary>
<para>Specifies the custom
headers that are transmitted with the e-mail message.
</para>
</summary>
</member>
<member name="P:System.Web.Mail.MailMessage.Attachments">
<summary>
<para>Specifies the list of the attachments that are transmitted
with the message.</para>
</summary>
</member>
<member name="F:System.Web.Util.SymbolEqualComparer.Default">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
<member name="F:System.Web.Util.SymbolHashCodeProvider.Default">
<summary>
<para>[To be supplied.]</para>
</summary>
</member>
</members>
</doc>