UNPKG

doevisualizations

Version:

Data Visualization Library based on RequireJS and D3.js (v4+)

602 lines 235 kB
<?xml version="1.0" encoding="utf-8"?> <doc> <assembly> <name>System.Web.WebPages</name> </assembly> <members> <member name="T:System.Web.Helpers.AntiForgery"> <summary>Helps prevent malicious scripts from submitting forged page requests.</summary> </member> <member name="M:System.Web.Helpers.AntiForgery.GetHtml"> <summary>Adds an authenticating token to a form to help protect against request forgery.</summary> <returns>Returns a string that contains the encrypted token value in a hidden HTML field.</returns> <exception cref="T:System.ArgumentException">The current <see cref="T:System.Web.HttpContext" /> object is null.</exception> </member> <member name="M:System.Web.Helpers.AntiForgery.GetHtml(System.Web.HttpContextBase,System.String,System.String,System.String)"> <summary>Adds an authenticating token to a form to help protect against request forgery and lets callers specify authentication details.</summary> <returns>Returns the encrypted token value in a hidden HTML field.</returns> <param name="httpContext">The HTTP context data for a request.</param> <param name="salt">An optional string of random characters (such as Z*7g1&amp;p4) that is used to add complexity to the encryption for extra safety. The default is null.</param> <param name="domain">The domain of a web application that a request is submitted from.</param> <param name="path">The virtual root path of a web application that a request is submitted from.</param> <exception cref="T:System.ArgumentNullException"> <paramref name="httpContext" /> is null.</exception> </member> <member name="M:System.Web.Helpers.AntiForgery.GetTokens(System.String,System.String@,System.String@)"> <summary>Gets the search tokens.</summary> <param name="oldCookieToken">The previous cookie token.</param> <param name="newCookieToken">The new cookie token.</param> <param name="formToken">The form of the token.</param> </member> <member name="M:System.Web.Helpers.AntiForgery.Validate"> <summary>Validates that input data from an HTML form field comes from the user who submitted the data.</summary> <exception cref="T:System.ArgumentException">The current <see cref="T:System.Web.HttpContext" /> value is null.</exception> <exception cref="T:System.Web.Helpers.HttpAntiForgeryException">The HTTP cookie token that accompanies a valid request is missing-or-The form token is missing.-or-The form token value does not match the cookie token value.-or-The form token value does not match the cookie token value.</exception> </member> <member name="M:System.Web.Helpers.AntiForgery.Validate(System.String,System.String)"> <summary>Validates that input data from an HTML form field comes from the user who submitted the data.</summary> <param name="cookieToken">The cookie token value.</param> <param name="formToken">The token form.</param> </member> <member name="M:System.Web.Helpers.AntiForgery.Validate(System.Web.HttpContextBase,System.String)"> <summary>Validates that input data from an HTML form field comes from the user who submitted the data and lets callers specify additional validation details.</summary> <param name="httpContext">The HTTP context data for a request.</param> <param name="salt">An optional string of random characters (such as Z*7g1&amp;p4) that is used to decrypt an authentication token created by the <see cref="T:System.Web.Helpers.AntiForgery" /> class. The default is null.</param> <exception cref="T:System.ArgumentException">The current <see cref="T:System.Web.HttpContext" /> value is null.</exception> <exception cref="T:System.Web.Helpers.HttpAntiForgeryException">The HTTP cookie token that accompanies a valid request is missing.-or-The form token is missing.-or-The form token value does not match the cookie token value.-or-The form token value does not match the cookie token value.-or-The <paramref name="salt" /> value supplied does not match the <paramref name="salt" /> value that was used to create the form token.</exception> </member> <member name="T:System.Web.Helpers.AntiForgeryConfig"> <summary>Provides programmatic configuration for the anti-forgery token system.</summary> </member> <member name="P:System.Web.Helpers.AntiForgeryConfig.AdditionalDataProvider"> <summary>Gets a data provider that can provide additional data to put into all generated tokens and that can validate additional data in incoming tokens.</summary> <returns>The data provider.</returns> </member> <member name="P:System.Web.Helpers.AntiForgeryConfig.CookieName"> <summary>Gets or sets the name of the cookie that is used by the anti-forgery system.</summary> <returns>The cookie name.</returns> </member> <member name="P:System.Web.Helpers.AntiForgeryConfig.RequireSsl"> <summary>Gets or sets a value that indicates whether the anti-forgery cookie requires SSL in order to be returned to the server.</summary> <returns>true if SSL is required to return the anti-forgery cookie to the server; otherwise, false. </returns> </member> <member name="P:System.Web.Helpers.AntiForgeryConfig.SuppressIdentityHeuristicChecks"> <summary>Gets or sets a value that indicates whether the anti-forgery system should skip checking for conditions that might indicate misuse of the system.</summary> <returns>true if the anti-forgery system should not check for possible misuse; otherwise, false.</returns> </member> <member name="P:System.Web.Helpers.AntiForgeryConfig.SuppressXFrameOptionsHeader"> <summary>Specifies whether to suppress the generation of X-Frame-Options header which is used to prevent ClickJacking. By default, the X-Frame-Options header is generated with the value SAMEORIGIN. If this setting is 'true', the X-Frame-Options header will not be generated for the response.</summary> </member> <member name="P:System.Web.Helpers.AntiForgeryConfig.UniqueClaimTypeIdentifier"> <summary>If claims-based authorization is in use, gets or sets the claim type from the identity that is used to uniquely identify the user.</summary> <returns>The claim type.</returns> </member> <member name="T:System.Web.Helpers.IAntiForgeryAdditionalDataProvider"> <summary>Provides a way to include or validate custom data for anti-forgery tokens.</summary> </member> <member name="M:System.Web.Helpers.IAntiForgeryAdditionalDataProvider.GetAdditionalData(System.Web.HttpContextBase)"> <summary>Provides additional data to store for the anti-forgery tokens that are generated during this request.</summary> <returns>The supplemental data to embed in the anti-forgery token.</returns> <param name="context">Information about the current request.</param> </member> <member name="M:System.Web.Helpers.IAntiForgeryAdditionalDataProvider.ValidateAdditionalData(System.Web.HttpContextBase,System.String)"> <summary>Validates additional data that was embedded inside an incoming anti-forgery token.</summary> <returns>true if the data is valid, or false if the data is invalid.</returns> <param name="context">Information about the current request.</param> <param name="additionalData">The supplemental data that was embedded in the token.</param> </member> <member name="T:System.Web.Helpers.UnvalidatedRequestValues"> <summary>Provides access to unvalidated form values in the <see cref="T:System.Web.HttpRequest" /> object.</summary> </member> <member name="P:System.Web.Helpers.UnvalidatedRequestValues.Form"> <summary>Gets a collection of unvalidated form values that were posted from the browser.</summary> <returns>An unvalidated collection of form values.</returns> </member> <member name="P:System.Web.Helpers.UnvalidatedRequestValues.Item(System.String)"> <summary>Gets the specified unvalidated object from the collection of posted values in the <see cref="T:System.Web.HttpRequest" /> object.</summary> <returns>The specified member, or null if the specified item is not found.</returns> </member> <member name="P:System.Web.Helpers.UnvalidatedRequestValues.QueryString"> <summary>Gets a collection of unvalidated query-string values.</summary> <returns>A collection of unvalidated query-string values.</returns> </member> <member name="T:System.Web.Helpers.Validation"> <summary>Excludes fields of the Request object from being checked for potentially unsafe HTML markup and client script.</summary> </member> <member name="M:System.Web.Helpers.Validation.Unvalidated(System.Web.HttpRequest)"> <summary>Returns a version of form values, cookies, and query-string variables without checking them first for HTML markup and client script.</summary> <returns>An object that contains unvalidated versions of the form and query-string values.</returns> <param name="request">The <see cref="T:System.Web.HttpRequest" /> object that contains values to exclude from request validation.</param> </member> <member name="M:System.Web.Helpers.Validation.Unvalidated(System.Web.HttpRequest,System.String)"> <summary>Returns a value from the specified form field, cookie, or query-string variable without checking it first for HTML markup and client script.</summary> <returns>A string that contains unvalidated text from the specified field, cookie, or query-string value.</returns> <param name="request">The <see cref="T:System.Web.HttpRequest" /> object that contains values to exclude from validation.</param> <param name="key">The name of the field to exclude from validation. <paramref name="key" /> can refer to a form field, to a cookie, or to the query-string variable.</param> </member> <member name="M:System.Web.Helpers.Validation.Unvalidated(System.Web.HttpRequestBase)"> <summary>Returns all values from the Request object (including form fields, cookies, and the query string) without checking them first for HTML markup and client script.</summary> <returns>An object that contains unvalidated versions of the form, cookie, and query-string values.</returns> <param name="request">The <see cref="T:System.Web.HttpRequest" /> object that contains values to exclude from validation.</param> </member> <member name="M:System.Web.Helpers.Validation.Unvalidated(System.Web.HttpRequestBase,System.String)"> <summary>Returns the specified value from the Request object without checking it first for HTML markup and client script.</summary> <returns>A string that contains unvalidated text from the specified field, cookie, or query-string value.</returns> <param name="request">The <see cref="T:System.Web.HttpRequestBase" /> object that contains values to exclude from validation.</param> <param name="key">The name of the field to exclude from validation. <paramref name="key" /> can refer to a form field, to a cookie, or to the query-string variable.</param> </member> <member name="T:System.Web.Mvc.HttpAntiForgeryException"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary> </member> <member name="M:System.Web.Mvc.HttpAntiForgeryException.#ctor"> <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Mvc.HttpAntiForgeryException" /> class.</summary> </member> <member name="M:System.Web.Mvc.HttpAntiForgeryException.#ctor(System.String)"> <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Mvc.HttpAntiForgeryException" /> class.</summary> <param name="message">The containing message.</param> </member> <member name="M:System.Web.Mvc.HttpAntiForgeryException.#ctor(System.String,System.Exception)"> <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Mvc.HttpAntiForgeryException" /> class.</summary> <param name="message">The message.</param> <param name="innerException">The inner exception.</param> </member> <member name="T:System.Web.Mvc.ModelClientValidationEqualToRule"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary> </member> <member name="M:System.Web.Mvc.ModelClientValidationEqualToRule.#ctor(System.String,System.Object)"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary> <param name="errorMessage">The error message.</param> <param name="other">The other.</param> </member> <member name="T:System.Web.Mvc.ModelClientValidationMaxLengthRule"></member> <member name="M:System.Web.Mvc.ModelClientValidationMaxLengthRule.#ctor(System.String,System.Int32)"></member> <member name="T:System.Web.Mvc.ModelClientValidationMinLengthRule"></member> <member name="M:System.Web.Mvc.ModelClientValidationMinLengthRule.#ctor(System.String,System.Int32)"></member> <member name="T:System.Web.Mvc.ModelClientValidationRangeRule"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary> </member> <member name="M:System.Web.Mvc.ModelClientValidationRangeRule.#ctor(System.String,System.Object,System.Object)"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary> <param name="errorMessage">The error message.</param> <param name="minValue">The minimum value.</param> <param name="maxValue">The maximum value.</param> </member> <member name="T:System.Web.Mvc.ModelClientValidationRegexRule"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary> </member> <member name="M:System.Web.Mvc.ModelClientValidationRegexRule.#ctor(System.String,System.String)"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelClientValidationRegexRule" /> class.</summary> <param name="errorMessage">The exception message.</param> <param name="pattern">The pattern.</param> </member> <member name="T:System.Web.Mvc.ModelClientValidationRemoteRule"> <summary>Represents the remote rule for the validation of the model client.</summary> </member> <member name="M:System.Web.Mvc.ModelClientValidationRemoteRule.#ctor(System.String,System.String,System.String,System.String)"> <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelClientValidationRemoteRule" /> class.</summary> <param name="errorMessage">The error message.</param> <param name="url">The URL of the rule.</param> <param name="httpMethod">The HTTP method.</param> <param name="additionalFields">The additional fields used.</param> </member> <member name="T:System.Web.Mvc.ModelClientValidationRequiredRule"> <summary>Represents the required rule for the validation of the model client.</summary> </member> <member name="M:System.Web.Mvc.ModelClientValidationRequiredRule.#ctor(System.String)"> <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelClientValidationRequiredRule" /> class.</summary> <param name="errorMessage">The error message </param> </member> <member name="T:System.Web.Mvc.ModelClientValidationRule"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary> </member> <member name="M:System.Web.Mvc.ModelClientValidationRule.#ctor"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary> </member> <member name="P:System.Web.Mvc.ModelClientValidationRule.ErrorMessage"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary> </member> <member name="P:System.Web.Mvc.ModelClientValidationRule.ValidationParameters"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary> </member> <member name="P:System.Web.Mvc.ModelClientValidationRule.ValidationType"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary> </member> <member name="T:System.Web.Mvc.ModelClientValidationStringLengthRule"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a length of the validation rule of the model client.</summary> </member> <member name="M:System.Web.Mvc.ModelClientValidationStringLengthRule.#ctor(System.String,System.Int32,System.Int32)"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelClientValidationStringLengthRule" /> class.</summary> <param name="errorMessage">The error message.</param> <param name="minimumLength">The minimum length of the validation rule.</param> <param name="maximumLength">The maximum length of the validation rule.</param> </member> <member name="T:System.Web.Mvc.TagBuilder"> <summary>Contains classes and properties that are used to create HTML elements. This class is used to write helpers, such as those found in the <see cref="N:System.Web.Helpers" /> namespace.</summary> </member> <member name="M:System.Web.Mvc.TagBuilder.#ctor(System.String)"> <summary>Creates a new tag that has the specified tag name.</summary> <param name="tagName">The tag name without the "&lt;", "/", or "&gt;" delimiters.</param> <exception cref="T:System.ArgumentException"> <paramref name="tagName" /> is null or empty.</exception> </member> <member name="M:System.Web.Mvc.TagBuilder.AddCssClass(System.String)"> <summary>Adds a CSS class to the list of CSS classes in the tag.</summary> <param name="value">The CSS class to add.</param> </member> <member name="P:System.Web.Mvc.TagBuilder.Attributes"> <summary>Gets the collection of attributes.</summary> <returns>The collection of attributes.</returns> </member> <member name="M:System.Web.Mvc.TagBuilder.CreateSanitizedId(System.String)"> <summary>Replaces each invalid character in the tag ID with a valid HTML character.</summary> <returns>The sanitized tag ID, or null if <paramref name="originalId" /> is null or empty, or if <paramref name="originalId" /> does not begin with a letter.</returns> <param name="originalId">The ID that might contain characters to replace.</param> </member> <member name="M:System.Web.Mvc.TagBuilder.CreateSanitizedId(System.String,System.String)"> <summary>Replaces each invalid character in the tag ID with the specified replacement string.</summary> <returns>The sanitized tag ID, or null if <paramref name="originalId" /> is null or empty, or if <paramref name="originalId" /> does not begin with a letter.</returns> <param name="originalId">The ID that might contain characters to replace.</param> <param name="invalidCharReplacement">The replacement string.</param> <exception cref="T:System.ArgumentNullException"> <paramref name="invalidCharReplacement" /> is null.</exception> </member> <member name="M:System.Web.Mvc.TagBuilder.GenerateId(System.String)"> <summary>Generates a sanitized ID attribute for the tag by using the specified name.</summary> <param name="name">The name to use to generate an ID attribute.</param> </member> <member name="P:System.Web.Mvc.TagBuilder.IdAttributeDotReplacement"> <summary>Gets or sets a string that can be used to replace invalid HTML characters.</summary> <returns>The string to use to replace invalid HTML characters.</returns> </member> <member name="P:System.Web.Mvc.TagBuilder.InnerHtml"> <summary>Gets or sets the inner HTML value for the element.</summary> <returns>The inner HTML value for the element.</returns> </member> <member name="M:System.Web.Mvc.TagBuilder.MergeAttribute(System.String,System.String)"> <summary>Adds a new attribute to the tag.</summary> <param name="key">The key for the attribute.</param> <param name="value">The value of the attribute.</param> </member> <member name="M:System.Web.Mvc.TagBuilder.MergeAttribute(System.String,System.String,System.Boolean)"> <summary>Adds a new attribute or optionally replaces an existing attribute in the opening tag.</summary> <param name="key">The key for the attribute.</param> <param name="value">The value of the attribute.</param> <param name="replaceExisting">true to replace an existing attribute if an attribute exists that has the specified <paramref name="key" /> value, or false to leave the original attribute unchanged.</param> </member> <member name="M:System.Web.Mvc.TagBuilder.MergeAttributes``2(System.Collections.Generic.IDictionary{``0,``1})"> <summary>Adds new attributes to the tag.</summary> <param name="attributes">The collection of attributes to add.</param> <typeparam name="TKey">The type of the key object.</typeparam> <typeparam name="TValue">The type of the value object.</typeparam> </member> <member name="M:System.Web.Mvc.TagBuilder.MergeAttributes``2(System.Collections.Generic.IDictionary{``0,``1},System.Boolean)"> <summary>Adds new attributes or optionally replaces existing attributes in the tag.</summary> <param name="attributes">The collection of attributes to add or replace.</param> <param name="replaceExisting">For each attribute in <paramref name="attributes" />, true to replace the attribute if an attribute already exists that has the same key, or false to leave the original attribute unchanged.</param> <typeparam name="TKey">The type of the key object.</typeparam> <typeparam name="TValue">The type of the value object.</typeparam> </member> <member name="M:System.Web.Mvc.TagBuilder.SetInnerText(System.String)"> <summary>Sets the <see cref="P:System.Web.Mvc.TagBuilder.InnerHtml" /> property of the element to an HTML-encoded version of the specified string.</summary> <param name="innerText">The string to HTML-encode.</param> </member> <member name="P:System.Web.Mvc.TagBuilder.TagName"> <summary>Gets the tag name for this tag.</summary> <returns>The name.</returns> </member> <member name="M:System.Web.Mvc.TagBuilder.ToString"> <summary>Renders the element as a <see cref="F:System.Web.Mvc.TagRenderMode.Normal" /> element.</summary> </member> <member name="M:System.Web.Mvc.TagBuilder.ToString(System.Web.Mvc.TagRenderMode)"> <summary>Renders the HTML tag by using the specified render mode.</summary> <returns>The rendered HTML tag.</returns> <param name="renderMode">The render mode.</param> </member> <member name="T:System.Web.Mvc.TagRenderMode"> <summary>Enumerates the modes that are available for rendering HTML tags.</summary> </member> <member name="F:System.Web.Mvc.TagRenderMode.EndTag"> <summary>Represents the mode for rendering a closing tag (for example, &lt;/tag&gt;).</summary> </member> <member name="F:System.Web.Mvc.TagRenderMode.Normal"> <summary>Represents the mode for rendering normal text.</summary> </member> <member name="F:System.Web.Mvc.TagRenderMode.SelfClosing"> <summary>Represents the mode for rendering a self-closing tag (for example, &lt;tag /&gt;).</summary> </member> <member name="F:System.Web.Mvc.TagRenderMode.StartTag"> <summary>Represents the mode for rendering an opening tag (for example, &lt;tag&gt;).</summary> </member> <member name="T:System.Web.Mvc.UnobtrusiveValidationAttributesGenerator"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary> </member> <member name="M:System.Web.Mvc.UnobtrusiveValidationAttributesGenerator.GetValidationAttributes(System.Collections.Generic.IEnumerable{System.Web.Mvc.ModelClientValidationRule},System.Collections.Generic.IDictionary{System.String,System.Object})"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the validation attributes from the structure or content of <see cref="T:System.Web.Mvc.UnobtrusiveValidationAttributesGenerator" />.</summary> <param name="clientRules">The <see cref="T:System.Web.Mvc.ModelClientValidationRule" /> to be implemented.</param> <param name="results">The result of the validation.</param> </member> <member name="T:System.Web.WebPages.ApplicationPart"> <summary>Contains methods to register assemblies as application parts.</summary> </member> <member name="M:System.Web.WebPages.ApplicationPart.#ctor(System.Reflection.Assembly,System.String)"> <summary>Initializes a new instance of the <see cref="T:System.Web.WebPages.ApplicationPart" /> class by using the specified assembly and root virtual path.</summary> <param name="assembly">The assembly.</param> <param name="rootVirtualPath">The root virtual path.</param> <exception cref="T:System.ArgumentException"> <paramref name="rootVirtualPath" /> is null or empty.</exception> </member> <member name="M:System.Web.WebPages.ApplicationPart.ProcessVirtualPath(System.Reflection.Assembly,System.String,System.String)"> <summary>Resolves a path to the specified assembly or resource within an assembly by using the specified base virtual path and specified virtual path.</summary> <returns>The path of the assembly or resource.</returns> <param name="assembly">The assembly.</param> <param name="baseVirtualPath">The base virtual path.</param> <param name="virtualPath">The virtual path.</param> <exception cref="T:System.InvalidOperationException"> <paramref name="assembly" /> is not registered.</exception> </member> <member name="M:System.Web.WebPages.ApplicationPart.Register(System.Web.WebPages.ApplicationPart)"> <summary>Adds an assembly and all web pages within the assembly to the list of available application parts.</summary> <param name="applicationPart">The application part.</param> <exception cref="T:System.InvalidOperationException"> <paramref name="applicationPart" /> is already registered.</exception> </member> <member name="T:System.Web.WebPages.ApplicationStartPage"> <summary>Provides objects and methods that are used to execute and render ASP.NET Web Pages application start pages (_AppStart.cshtml or _AppStart.vbhtml files).</summary> </member> <member name="M:System.Web.WebPages.ApplicationStartPage.#ctor"> <summary>Initializes a new instance of the <see cref="T:System.Web.WebPages.ApplicationStartPage" /> class.</summary> </member> <member name="P:System.Web.WebPages.ApplicationStartPage.Application"> <summary>Gets the HTTP application object that references this application startup page.</summary> <returns>The HTTP application object that references this application startup page.</returns> </member> <member name="F:System.Web.WebPages.ApplicationStartPage.CacheKeyPrefix"> <summary>The prefix that is applied to all keys that are added to the cache by the application start page.</summary> </member> <member name="P:System.Web.WebPages.ApplicationStartPage.Context"> <summary>Gets the <see cref="T:System.Web.HttpContextBase" /> object that represents context data that is associated with this page.</summary> <returns>The current context data.</returns> </member> <member name="M:System.Web.WebPages.ApplicationStartPage.GetOutputWriter"> <summary>Returns the text writer instance that is used to render the page.</summary> <returns>The text writer.</returns> </member> <member name="P:System.Web.WebPages.ApplicationStartPage.Markup"> <summary>Gets the output from the application start page as an HTML-encoded string.</summary> <returns>The output from the application start page as an HTML-encoded string.</returns> </member> <member name="P:System.Web.WebPages.ApplicationStartPage.Output"> <summary>Gets the text writer for the page.</summary> <returns>The text writer for the page.</returns> </member> <member name="F:System.Web.WebPages.ApplicationStartPage.StartPageVirtualPath"> <summary>The path to the application start page.</summary> </member> <member name="P:System.Web.WebPages.ApplicationStartPage.VirtualPath"> <summary>Gets or sets the virtual path of the page.</summary> <returns>The virtual path.</returns> </member> <member name="M:System.Web.WebPages.ApplicationStartPage.Write(System.Object)"> <summary>Writes the string representation of the specified object as an HTML-encoded string.</summary> <param name="value">The object to encode and write.</param> </member> <member name="M:System.Web.WebPages.ApplicationStartPage.Write(System.Web.WebPages.HelperResult)"> <summary>Writes the specified <see cref="T:System.Web.WebPages.HelperResult" /> object as an HTML-encoded string.</summary> <param name="result">The helper result to encode and write.</param> </member> <member name="M:System.Web.WebPages.ApplicationStartPage.WriteLiteral(System.Object)"> <summary>Writes the specified object without HTML encoding.</summary> <param name="value">The object to write.</param> </member> <member name="T:System.Web.WebPages.AttributeValue"> <summary>Stores the value for an attribute.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary> </member> <member name="M:System.Web.WebPages.AttributeValue.#ctor(System.Web.WebPages.Instrumentation.PositionTagged{System.String},System.Web.WebPages.Instrumentation.PositionTagged{System.Object},System.Boolean)"> <summary>Initializes a new instance of the <see cref="T:System.Web.WebPages.AttributeValue" /> class.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary> <param name="prefix">The namespace prefix for the attribute.</param> <param name="value">The value for the attribute.</param> <param name="literal">true to indicate that the value is a literal value; otherwise, false.</param> </member> <member name="M:System.Web.WebPages.AttributeValue.FromTuple(System.Tuple{System.Tuple{System.String,System.Int32},System.Tuple{System.Object,System.Int32},System.Boolean})"> <summary>Creates an attribute value from the specified tuple object.</summary> <returns>The created attribute value.</returns> <param name="value">The tuple object from which to create from.</param> </member> <member name="M:System.Web.WebPages.AttributeValue.FromTuple(System.Tuple{System.Tuple{System.String,System.Int32},System.Tuple{System.String,System.Int32},System.Boolean})"> <summary>Creates an attribute value from the specified tuple object.</summary> <returns>The created attribute value.</returns> <param name="value">The tuple object from which to create from.</param> </member> <member name="P:System.Web.WebPages.AttributeValue.Literal"> <summary>Gets or sets a value that indicates whether the value is a literal value.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary> <returns>true if the value is a literal value; otherwise, false.</returns> </member> <member name="M:System.Web.WebPages.AttributeValue.op_Implicit(System.Tuple{System.Tuple{System.String,System.Int32},System.Tuple{System.Object,System.Int32},System.Boolean})~System.Web.WebPages.AttributeValue"> <summary>Creates an attribute value from the specified tuple object.</summary> <returns>The created attribute value.</returns> <param name="value">The tuple object from which to create from.</param> </member> <member name="M:System.Web.WebPages.AttributeValue.op_Implicit(System.Tuple{System.Tuple{System.String,System.Int32},System.Tuple{System.String,System.Int32},System.Boolean})~System.Web.WebPages.AttributeValue"> <summary>Creates an attribute value from the specified tuple object.</summary> <returns>The created attribute value.</returns> <param name="value">The tuple object from which to create from.</param> </member> <member name="P:System.Web.WebPages.AttributeValue.Prefix"> <summary>Gets or sets the namespace prefix for the attribute.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary> <returns>The namespace prefix for the attribute.</returns> </member> <member name="P:System.Web.WebPages.AttributeValue.Value"> <summary>Gets or set the value for the attribute.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary> <returns>The value for the attribute.</returns> </member> <member name="T:System.Web.WebPages.BrowserHelpers"> <summary>Provides a way to specify custom browser (user agent) information.</summary> </member> <member name="M:System.Web.WebPages.BrowserHelpers.ClearOverriddenBrowser(System.Web.HttpContextBase)"> <summary>Removes any overridden user agent for the current request.</summary> <param name="httpContext">The current context.</param> </member> <member name="M:System.Web.WebPages.BrowserHelpers.GetOverriddenBrowser(System.Web.HttpContextBase)"> <summary>Returns the browser capabilities object for the overridden browser capabilities or for the actual browser if no override has been specified.</summary> <returns>The browser capabilities.</returns> <param name="httpContext">The current context.</param> </member> <member name="M:System.Web.WebPages.BrowserHelpers.GetOverriddenUserAgent(System.Web.HttpContextBase)"> <summary>Returns the overridden user agent value or the actual user agent string if no override has been specified.</summary> <returns>The user agent string</returns> <param name="httpContext">The current context.</param> </member> <member name="M:System.Web.WebPages.BrowserHelpers.GetVaryByCustomStringForOverriddenBrowser(System.Web.HttpContext)"> <summary>Gets a string that varies based on the type of the browser.</summary> <returns>A string that identifies the browser.</returns> <param name="httpContext">The current context.</param> </member> <member name="M:System.Web.WebPages.BrowserHelpers.GetVaryByCustomStringForOverriddenBrowser(System.Web.HttpContextBase)"> <summary>Gets a string that varies based on the type of the browser. </summary> <returns>A string that identifies the browser.</returns> <param name="httpContext">The current context base.</param> </member> <member name="M:System.Web.WebPages.BrowserHelpers.SetOverriddenBrowser(System.Web.HttpContextBase,System.String)"> <summary>Overrides the request's actual user agent value using the specified user agent.</summary> <param name="httpContext">The current context.</param> <param name="userAgent">The user agent to use.</param> </member> <member name="M:System.Web.WebPages.BrowserHelpers.SetOverriddenBrowser(System.Web.HttpContextBase,System.Web.WebPages.BrowserOverride)"> <summary>Overrides the request's actual user agent value using the specified browser override information.</summary> <param name="httpContext">The current context.</param> <param name="browserOverride">One of the enumeration values that represents the browser override information to use.</param> </member> <member name="T:System.Web.WebPages.BrowserOverride"> <summary>Specifies browser types that can be defined for the <see cref="M:System.Web.WebPages.BrowserHelpers.SetOverriddenBrowser(System.Web.HttpContextBase,System.Web.WebPages.BrowserOverride)" /> method.</summary> </member> <member name="F:System.Web.WebPages.BrowserOverride.Desktop"> <summary>Specifies a desktop browser.</summary> </member> <member name="F:System.Web.WebPages.BrowserOverride.Mobile"> <summary>Specifies a mobile browser.</summary> </member> <member name="T:System.Web.WebPages.BrowserOverrideStore"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.The current BrowserOverrideStore is used to get and set the user agent of a request.</summary> </member> <member name="M:System.Web.WebPages.BrowserOverrideStore.#ctor"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.BrowserOverrideStore" /> class.</summary> </member> <member name="M:System.Web.WebPages.BrowserOverrideStore.GetOverriddenUserAgent(System.Web.HttpContextBase)"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Looks for a user agent by searching for the browser override cookie.</summary> <returns>The user agent.</returns> <param name="httpContext">The HTTP context.</param> </member> <member name="M:System.Web.WebPages.BrowserOverrideStore.SetOverriddenUserAgent(System.Web.HttpContextBase,System.String)"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Adds a browser override cookie with the set user agent to the response of the current request.</summary> <param name="httpContext">The HTTP context.</param> <param name="userAgent">The user agent.</param> </member> <member name="T:System.Web.WebPages.BrowserOverrideStores"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary> </member> <member name="M:System.Web.WebPages.BrowserOverrideStores.#ctor"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary> </member> <member name="P:System.Web.WebPages.BrowserOverrideStores.Current"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary> </member> <member name="T:System.Web.WebPages.CookieBrowserOverrideStore"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets overridden user agent for a request from a cookie. Creates a cookie to set the overridden user agent.</summary> </member> <member name="M:System.Web.WebPages.CookieBrowserOverrideStore.#ctor"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.CookieBrowserOverrideStore" /> class.</summary> </member> <member name="M:System.Web.WebPages.CookieBrowserOverrideStore.#ctor(System.Int32)"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.CookieBrowserOverrideStore" /> class.</summary> <param name="daysToExpire">The days to expire.</param> </member> <member name="M:System.Web.WebPages.CookieBrowserOverrideStore.GetOverriddenUserAgent(System.Web.HttpContextBase)"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Looks for a user agent by searching for the browser override cookie.</summary> <returns>The user agent.</returns> <param name="httpContext">The HTTP context.</param> </member> <member name="M:System.Web.WebPages.CookieBrowserOverrideStore.SetOverriddenUserAgent(System.Web.HttpContextBase,System.String)"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Adds a browser override cookie with the set user agent to the response of the current request.</summary> <param name="httpContext">The HTTP context.</param> <param name="userAgent">The user agent.</param> </member> <member name="T:System.Web.WebPages.DefaultDisplayMode"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the default display mode of the web pages.</summary> </member> <member name="M:System.Web.WebPages.DefaultDisplayMode.#ctor"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.DefaultDisplayMode" /> class.</summary> </member> <member name="M:System.Web.WebPages.DefaultDisplayMode.#ctor(System.String)"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.DefaultDisplayMode" /> class.</summary> <param name="suffix">The suffix.</param> </member> <member name="M:System.Web.WebPages.DefaultDisplayMode.CanHandleContext(System.Web.HttpContextBase)"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a value whether the <see cref="T:System.Web.HttpContextBase" /> can handle context.</summary> <returns>true if the <see cref="T:System.Web.HttpContextBase" /> can handle context; otherwise, false.</returns> <param name="httpContext">The specified http context.</param> </member> <member name="P:System.Web.WebPages.DefaultDisplayMode.ContextCondition"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value that indicates whether the context condition displays a default mode.</summary> <returns>true if the context condition displays a default mode; otherwise, false.</returns> </member> <member name="P:System.Web.WebPages.DefaultDisplayMode.DisplayModeId"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the display mode identifier of the web pages.</summary> <returns>The display mode identifier of the web pages.</returns> </member> <member name="M:System.Web.WebPages.DefaultDisplayMode.GetDisplayInfo(System.Web.HttpContextBase,System.String,System.Func{System.String,System.Boolean})"> <summary>Retrieves the display information about an item in the result pane.</summary> <returns>The display information about an item in the result pane.</returns> <param name="httpContext">The http context.</param> <param name="virtualPath">The virtual path.</param> <param name="virtualPathExists">true if the virtual path exists; otherwise, false.</param> </member> <member name="M:System.Web.WebPages.DefaultDisplayMode.TransformPath(System.String,System.String)"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Transforms the path of the display mode.</summary> <returns>The path of the display mode to transform.</returns> <param name="virtualPath">The virtual path.</param> <param name="suffix">The suffix.</param> </member> <member name="T:System.Web.WebPages.DisplayInfo"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a property’s display information.</summary> </member> <member name="M:System.Web.WebPages.DisplayInfo.#ctor(System.String,System.Web.WebPages.IDisplayMode)"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.DisplayInfo" /> class.</summary> <param name="filePath">The virtual path.</param> <param name="displayMode">The active display mode.</param> </member> <member name="P:System.Web.WebPages.DisplayInfo.DisplayMode"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the active display mode for a Web page.</summary> <returns>The active display mode for a Web page.</returns> </member> <member name="P:System.Web.WebPages.DisplayInfo.FilePath"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the virtual path of the current Web page.</summary> <returns>The virtual path of the current Web page.</returns> </member> <member name="T:System.Web.WebPages.DisplayModeProvider"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the modes of display for the provider.</summary> </member> <member name="F:System.Web.WebPages.DisplayModeProvider.DefaultDisplayModeId"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Defines the default display mode identifier.</summary> </member> <member name="M:System.Web.WebPages.DisplayModeProvider.GetAvailableDisplayModesForContext(System.Web.HttpContextBase,System.Web.WebPages.IDisplayMode)"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a list of the available display modes for the context base.</summary> <returns>A list of the available display modes for the context base.</returns> <param name="httpContext">The http context base.</param> <param name="currentDisplayMode">The current display mode.</param> </member> <member name="M:System.Web.WebPages.DisplayModeProvider.GetDisplayInfoForVirtualPath(System.String,System.Web.HttpContextBase,System.Func{System.String,System.Boolean},System.Web.WebPages.IDisplayMode)"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the <see cref="T:System.Web.WebPages.DisplayInfo" /> for the virtual path.</summary> <returns>The <see cref="T:System.Web.WebPages.DisplayInfo" /> for the virtual path.</returns> <param name="virtualPath">The virtual path.</param> <param name="httpContext">The http context base.</param> <param name="virtualPathExists">true if the virtual path exists; otherwise, false.</param> <param name="currentDisplayMode">The current display mode.</param> </member> <member name="P:System.Web.WebPages.DisplayModeProvider.Instance"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the instance of the <see cref="T:System.Web.WebPages.DisplayModeProvider" />.</summary> <returns>The instance of the <see cref="T:System.Web.WebPages.DisplayModeProvider" />.</returns> </member> <member name="F:System.Web.WebPages.DisplayModeProvider.MobileDisplayModeId"> <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Defines the mobile display mode identifier.</summary> </member> <member name="P:System.Web.WebPages.DisplayModeProvid