a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
1087 lines
59 KiB
XML
1087 lines
59 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<Type Name="TemplateControl" FullName="System.Web.UI.TemplateControl">
|
||
<TypeSignature Language="C#" Maintainer="auto" Value="public abstract class TemplateControl : System.Web.UI.Control, System.Web.UI.IFilterResolutionService, System.Web.UI.INamingContainer" />
|
||
<AssemblyInfo>
|
||
<AssemblyName>System.Web</AssemblyName>
|
||
<AssemblyPublicKey>
|
||
</AssemblyPublicKey>
|
||
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
|
||
<Base>
|
||
<BaseTypeName>System.Web.UI.Control</BaseTypeName>
|
||
</Base>
|
||
<Interfaces>
|
||
<Interface>
|
||
<InterfaceName>System.Web.UI.IFilterResolutionService</InterfaceName>
|
||
</Interface>
|
||
<Interface>
|
||
<InterfaceName>System.Web.UI.INamingContainer</InterfaceName>
|
||
</Interface>
|
||
</Interfaces>
|
||
<Docs>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>The <see cref="T:System.Web.UI.TemplateControl" /> class is an abstract class that provides common properties and methods for the <see cref="T:System.Web.UI.Page" /> class and the <see cref="T:System.Web.UI.UserControl" /> class. A new instance of the <see cref="T:System.Web.UI.TemplateControl" /> is not created directly.</para>
|
||
<para>The <see cref="T:System.Web.UI.TemplateControl" /> class defines methods supporting declarative data-binding expressions: </para>
|
||
<list type="bullet">
|
||
<item>
|
||
<para>Use the <see cref="Overload:System.Web.UI.TemplateControl.Eval" /> method for data-binding expression involving data sources, such as simple properties or expressions. </para>
|
||
</item>
|
||
<item>
|
||
<para>Use the <see cref="Overload:System.Web.UI.TemplateControl.XPath" /> method for parsing and evaluating an XPath data-binding expression. </para>
|
||
</item>
|
||
<item>
|
||
<para>Use the <see cref="Overload:System.Web.UI.TemplateControl.XPathSelect" /> method for data-binding against an expression containing an XPath select statement. The result is a node collection that implements the <see cref="T:System.Collections.IEnumerable" /> interface. </para>
|
||
</item>
|
||
</list>
|
||
<para>For more information on data-binding expression, see <format type="text/html"><a href="676beb1d-ddfa-4153-bba8-3c86dcb7ceca">Data Binding Expression Syntax</a></format> and <format type="text/html"><a href="ab7b2846-975b-4057-a948-45527497c742">ASP.NET Data Binding</a></format>. </para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<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>
|
||
</Docs>
|
||
<Members>
|
||
<Member MemberName=".ctor">
|
||
<MemberSignature Language="C#" Value="protected TemplateControl ();" />
|
||
<MemberType>Constructor</MemberType>
|
||
<ReturnValue />
|
||
<Parameters />
|
||
<Docs>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>The <see cref="M:System.Web.UI.TemplateControl.#ctor" /> constructor is not called directly.</para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Initializes a new instance of the <see cref="T:System.Web.UI.TemplateControl" /> class.</para>
|
||
</summary>
|
||
</Docs>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
</Member>
|
||
<Member MemberName="AbortTransaction">
|
||
<MemberSignature Language="C#" Value="public event EventHandler AbortTransaction;" />
|
||
<MemberType>Event</MemberType>
|
||
<ReturnValue>
|
||
<ReturnType>System.EventHandler</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters />
|
||
<Docs>
|
||
<remarks>To be added</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Occurs when a user ends a transaction.</para>
|
||
</summary>
|
||
</Docs>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
</Member>
|
||
<Member MemberName="AppRelativeVirtualPath">
|
||
<MemberSignature Language="C#" Value="public string AppRelativeVirtualPath { set; get; }" />
|
||
<MemberType>Property</MemberType>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<ReturnValue>
|
||
<ReturnType>System.String</ReturnType>
|
||
</ReturnValue>
|
||
<Docs>
|
||
<value>To be added.</value>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>When the file that defines a <see cref="T:System.Web.UI.TemplateControl" /> control resides in a directory other than that of the page processing the request, use the <see cref="P:System.Web.UI.TemplateControl.AppRelativeVirtualPath" /> property to return the application-relative, virtual path to the <see cref="T:System.Web.UI.TemplateControl" />.</para>
|
||
<para>The <see cref="P:System.Web.UI.Control.AppRelativeTemplateSourceDirectory" /> property is set based on the virtual path that is set in the <see cref="P:System.Web.UI.TemplateControl.AppRelativeVirtualPath" /> property.</para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Gets or sets the application-relative, virtual directory path to the file from which the control is parsed and compiled. </para>
|
||
</summary>
|
||
</Docs>
|
||
</Member>
|
||
<Member MemberName="AutoHandlers">
|
||
<MemberSignature Language="C#" Value="protected virtual int AutoHandlers { set; get; }" />
|
||
<MemberType>Property</MemberType>
|
||
<ReturnValue>
|
||
<ReturnType>System.Int32</ReturnType>
|
||
</ReturnValue>
|
||
<Docs>
|
||
<value>To be added: an object of type 'int'</value>
|
||
<remarks>To be added</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>The <see cref="P:System.Web.UI.TemplateControl.AutoHandlers" /> property has been deprecated in ASP.NET NETÂ 2.0. It is used by generated classes and is not intended for use within your code.</para>
|
||
</summary>
|
||
</Docs>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<Attributes>
|
||
<Attribute>
|
||
<AttributeName>System.Obsolete</AttributeName>
|
||
</Attribute>
|
||
<Attribute>
|
||
<AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
|
||
</Attribute>
|
||
</Attributes>
|
||
</Member>
|
||
<Member MemberName="CommitTransaction">
|
||
<MemberSignature Language="C#" Value="public event EventHandler CommitTransaction;" />
|
||
<MemberType>Event</MemberType>
|
||
<ReturnValue>
|
||
<ReturnType>System.EventHandler</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters />
|
||
<Docs>
|
||
<remarks>To be added</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Occurs when a transaction completes.</para>
|
||
</summary>
|
||
</Docs>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
</Member>
|
||
<Member MemberName="Construct">
|
||
<MemberSignature Language="C#" Value="protected virtual void Construct ();" />
|
||
<MemberType>Method</MemberType>
|
||
<ReturnValue>
|
||
<ReturnType>System.Void</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters />
|
||
<Docs>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>The <see cref="M:System.Web.UI.TemplateControl.Construct" /> method allows design-time code execution of the <see cref="T:System.Web.UI.Page" /> and <see cref="T:System.Web.UI.UserControl" /> controls.</para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Performs design-time logic.</para>
|
||
</summary>
|
||
</Docs>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
</Member>
|
||
<Member MemberName="CreateResourceBasedLiteralControl">
|
||
<MemberSignature Language="C#" Value="protected System.Web.UI.LiteralControl CreateResourceBasedLiteralControl (int offset, int size, bool fAsciiOnly);" />
|
||
<MemberType>Method</MemberType>
|
||
<ReturnValue>
|
||
<ReturnType>System.Web.UI.LiteralControl</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="offset" Type="System.Int32" />
|
||
<Parameter Name="size" Type="System.Int32" />
|
||
<Parameter Name="fAsciiOnly" Type="System.Boolean" />
|
||
</Parameters>
|
||
<Docs>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>The <see cref="M:System.Web.UI.TemplateControl.CreateResourceBasedLiteralControl(System.Int32,System.Int32,System.Boolean)" /> method is used to access literal strings that are stored in a resource and is not intended for use from within your code.</para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Accesses literal strings stored in a resource. The <see cref="M:System.Web.UI.TemplateControl.CreateResourceBasedLiteralControl(System.Int32,System.Int32,System.Boolean)" /> method is not intended for use from within your code.</para>
|
||
</summary>
|
||
<returns>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>A <see cref="T:System.Web.UI.LiteralControl" /> representing a literal string in a resource.</para>
|
||
</returns>
|
||
<param name="offset">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />The offset of the start of the string in the resource. </param>
|
||
<param name="size">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />The size of the string in bytes. </param>
|
||
<param name="fAsciiOnly">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />A Boolean value indicating if the string in the resource contains only 7-bit ASCII characters. </param>
|
||
</Docs>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
</Member>
|
||
<Member MemberName="Error">
|
||
<MemberSignature Language="C#" Value="public event EventHandler Error;" />
|
||
<MemberType>Event</MemberType>
|
||
<ReturnValue>
|
||
<ReturnType>System.EventHandler</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters />
|
||
<Docs>
|
||
<remarks>To be added</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Occurs when an unhandled exception is thrown.</para>
|
||
</summary>
|
||
</Docs>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
</Member>
|
||
<Member MemberName="Eval">
|
||
<MemberSignature Language="C#" Value="protected object Eval (string expression);" />
|
||
<MemberType>Method</MemberType>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<ReturnValue>
|
||
<ReturnType>System.Object</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="expression" Type="System.String" />
|
||
</Parameters>
|
||
<Docs>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>The value of <paramref name="expression" /> must evaluate to a public property. </para>
|
||
<para>The <see cref="M:System.Web.UI.TemplateControl.Eval(System.String)" /> method calls the <see cref="M:System.Web.UI.DataBinder.Eval(System.Object,System.String)" /> method using the <see cref="M:System.Web.UI.Page.GetDataItem" /> method to resolve the object reference that the expression is evaluated against.</para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Evaluates a data-binding expression.</para>
|
||
</summary>
|
||
<returns>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>An object that results from the evaluation of the data-binding expression.</para>
|
||
</returns>
|
||
<param name="expression">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />The navigation path from the container to the public property value to place in the bound control property.</param>
|
||
</Docs>
|
||
</Member>
|
||
<Member MemberName="Eval">
|
||
<MemberSignature Language="C#" Value="protected string Eval (string expression, string format);" />
|
||
<MemberType>Method</MemberType>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<ReturnValue>
|
||
<ReturnType>System.String</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="expression" Type="System.String" />
|
||
<Parameter Name="format" Type="System.String" />
|
||
</Parameters>
|
||
<Docs>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>The value of <paramref name="expression" /> must evaluate to a public property. </para>
|
||
<para>The <see cref="M:System.Web.UI.TemplateControl.Eval(System.String)" /> method calls the <see cref="M:System.Web.UI.DataBinder.Eval(System.Object,System.String,System.String)" /> method using the <see cref="M:System.Web.UI.Page.GetDataItem" /> method to resolve the object reference that the expression is evaluated against.</para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Evaluates a data-binding expression using the specified format string to display the result.</para>
|
||
</summary>
|
||
<returns>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>A string that results from the evaluation of the data-binding expression and conversion to a string type.</para>
|
||
</returns>
|
||
<param name="expression">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />The navigation path from the container to the public property value to place in the bound control property.</param>
|
||
<param name="format">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />A .NET Framework format string to apply to the result.</param>
|
||
</Docs>
|
||
</Member>
|
||
<Member MemberName="FrameworkInitialize">
|
||
<MemberSignature Language="C#" Value="protected virtual void FrameworkInitialize ();" />
|
||
<MemberType>Method</MemberType>
|
||
<ReturnValue>
|
||
<ReturnType>System.Void</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters />
|
||
<Docs>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Do not override the <see cref="M:System.Web.UI.TemplateControl.FrameworkInitialize" /> method.</para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Initializes the control that is derived from the <see cref="T:System.Web.UI.TemplateControl" /> class.</para>
|
||
</summary>
|
||
</Docs>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<Attributes>
|
||
<Attribute>
|
||
<AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
|
||
</Attribute>
|
||
</Attributes>
|
||
</Member>
|
||
<Member MemberName="GetGlobalResourceObject">
|
||
<MemberSignature Language="C#" Value="protected object GetGlobalResourceObject (string className, string resourceKey);" />
|
||
<MemberType>Method</MemberType>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<ReturnValue>
|
||
<ReturnType>System.Object</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="className" Type="System.String" />
|
||
<Parameter Name="resourceKey" Type="System.String" />
|
||
</Parameters>
|
||
<Docs>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Application-level resources are stored in the App_GlobalResources folder. For more information, see <format type="text/html"><a href="5a29f26b-d94d-48d9-864e-5ee8890dc265">Resources in ASP.NET Applications</a></format>. </para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Gets an application-level resource object based on the specified <see cref="P:System.Web.Compilation.ResourceExpressionFields.ClassKey" /> and <see cref="P:System.Web.Compilation.ResourceExpressionFields.ResourceKey" /> properties. </para>
|
||
</summary>
|
||
<returns>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>An object representing the requested resource object; otherwise, null.</para>
|
||
</returns>
|
||
<param name="className">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />A string representing a <see cref="P:System.Web.Compilation.ResourceExpressionFields.ClassKey" />.</param>
|
||
<param name="resourceKey">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />A string representing a <see cref="P:System.Web.Compilation.ResourceExpressionFields.ResourceKey" />.</param>
|
||
</Docs>
|
||
</Member>
|
||
<Member MemberName="GetGlobalResourceObject">
|
||
<MemberSignature Language="C#" Value="protected object GetGlobalResourceObject (string className, string resourceKey, Type objType, string propName);" />
|
||
<MemberType>Method</MemberType>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<ReturnValue>
|
||
<ReturnType>System.Object</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="className" Type="System.String" />
|
||
<Parameter Name="resourceKey" Type="System.String" />
|
||
<Parameter Name="objType" Type="System.Type" />
|
||
<Parameter Name="propName" Type="System.String" />
|
||
</Parameters>
|
||
<Docs>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Application-level resources are stored in the App_GlobalResources folder. For more information, see <format type="text/html"><a href="5a29f26b-d94d-48d9-864e-5ee8890dc265">Resources in ASP.NET Applications</a></format>.</para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Gets an application-level resource object based on the specified <see cref="P:System.Web.Compilation.ResourceExpressionFields.ClassKey" /> and <see cref="P:System.Web.Compilation.ResourceExpressionFields.ResourceKey" /> properties, object type, and property name of the resource.</para>
|
||
</summary>
|
||
<returns>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>An object representing the requested resource object; otherwise, null.</para>
|
||
</returns>
|
||
<param name="className">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />A string representing a <see cref="P:System.Web.Compilation.ResourceExpressionFields.ClassKey" />. </param>
|
||
<param name="resourceKey">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />A string representing a <see cref="P:System.Web.Compilation.ResourceExpressionFields.ResourceKey" />. </param>
|
||
<param name="objType">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />The type of object in the resource to get. </param>
|
||
<param name="propName">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />The property name of the object to get.</param>
|
||
</Docs>
|
||
</Member>
|
||
<Member MemberName="GetLocalResourceObject">
|
||
<MemberSignature Language="C#" Value="protected object GetLocalResourceObject (string resourceKey);" />
|
||
<MemberType>Method</MemberType>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<ReturnValue>
|
||
<ReturnType>System.Object</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="resourceKey" Type="System.String" />
|
||
</Parameters>
|
||
<Docs>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Local resource files are stored in the App_LocalResources directory. For more information, see <format type="text/html"><a href="5a29f26b-d94d-48d9-864e-5ee8890dc265">Resources in ASP.NET Applications</a></format></para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Gets a page-level resource object based on the specified <see cref="P:System.Web.Compilation.ResourceExpressionFields.ResourceKey" /> property.</para>
|
||
</summary>
|
||
<returns>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>An object representing the requested resource object; otherwise, null.</para>
|
||
</returns>
|
||
<param name="resourceKey">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />A string representing a <see cref="P:System.Web.Compilation.ResourceExpressionFields.ResourceKey" />.</param>
|
||
</Docs>
|
||
</Member>
|
||
<Member MemberName="GetLocalResourceObject">
|
||
<MemberSignature Language="C#" Value="protected object GetLocalResourceObject (string resourceKey, Type objType, string propName);" />
|
||
<MemberType>Method</MemberType>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<ReturnValue>
|
||
<ReturnType>System.Object</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="resourceKey" Type="System.String" />
|
||
<Parameter Name="objType" Type="System.Type" />
|
||
<Parameter Name="propName" Type="System.String" />
|
||
</Parameters>
|
||
<Docs>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Local resource files are stored in the App_LocalResources directory. For more information, see <format type="text/html"><a href="5a29f26b-d94d-48d9-864e-5ee8890dc265">Resources in ASP.NET Applications</a></format></para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Gets a page-level resource object based on the specified <see cref="P:System.Web.Compilation.ResourceExpressionFields.ResourceKey" /> property, object type, and property name.</para>
|
||
</summary>
|
||
<returns>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>An object representing the requested resource object; otherwise, null.</para>
|
||
</returns>
|
||
<param name="resourceKey">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />A string representing a <see cref="P:System.Web.Compilation.ResourceExpressionFields.ResourceKey" />.</param>
|
||
<param name="objType">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />The type of the resource object to get.</param>
|
||
<param name="propName">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />The property name of the resource object to get.</param>
|
||
</Docs>
|
||
</Member>
|
||
<Member MemberName="LoadControl">
|
||
<MemberSignature Language="C#" Value="public System.Web.UI.Control LoadControl (string virtualPath);" />
|
||
<MemberType>Method</MemberType>
|
||
<ReturnValue>
|
||
<ReturnType>System.Web.UI.Control</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="virtualPath" Type="System.String" />
|
||
</Parameters>
|
||
<Docs>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>If the control supports caching, the object returned from the <see cref="M:System.Web.UI.TemplateControl.LoadControl(System.String)" /> method is not actually a <see cref="T:System.Web.UI.Control" /> object; rather, it is a <see cref="T:System.Web.UI.PartialCachingControl" /> object. If the <paramref name="virtualPath" /> parameter is relative, the path of the loaded control is relative to the path of the <see cref="T:System.Web.UI.TemplateControl" />.</para>
|
||
<para>When you load a control into a container control, the container raises all of the added control's events until it has caught up to the current event. However, the added control does not catch up with postback data processing. For an added control to participate in postback data processing, including validation, the control must be added in the <see cref="E:System.Web.UI.Control.Init" /> event rather than in the <see cref="E:System.Web.UI.Control.Load" /> event.</para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Loads a <see cref="T:System.Web.UI.Control" /> object from a file based on a specified virtual path.</para>
|
||
</summary>
|
||
<returns>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Returns the specified <see cref="T:System.Web.UI.Control" />.</para>
|
||
</returns>
|
||
<param name="virtualPath">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />The virtual path to a control file. </param>
|
||
</Docs>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
</Member>
|
||
<Member MemberName="LoadControl">
|
||
<MemberSignature Language="C#" Value="public System.Web.UI.Control LoadControl (Type type, object[] parameters);" />
|
||
<MemberType>Method</MemberType>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<ReturnValue>
|
||
<ReturnType>System.Web.UI.Control</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="type" Type="System.Type" />
|
||
<Parameter Name="parameters" Type="System.Object[]" />
|
||
</Parameters>
|
||
<Docs>
|
||
<param name="type">To be added.</param>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>If the user control supports caching, the object returned from the <see cref="M:System.Web.UI.TemplateControl.LoadControl(System.Type,System.Object[])" /> method is not actually a <see cref="T:System.Web.UI.UserControl" /> object; rather, it is a <see cref="T:System.Web.UI.PartialCachingControl" /> object. </para>
|
||
<para>When you load a control into a container control, the container raises all of the added control's events until it has caught up to the current event. However, the added control does not catch up with postback data processing. For an added control to participate in postback data processing, including validation, the control must be added in the <see cref="E:System.Web.UI.Control.Init" /> event rather than in the <see cref="E:System.Web.UI.Control.Load" /> event.</para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Loads a <see cref="T:System.Web.UI.Control" /> object based on a specified type and constructor parameters.</para>
|
||
</summary>
|
||
<returns>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Returns the specified <see cref="T:System.Web.UI.UserControl" />.</para>
|
||
</returns>
|
||
<param name="parameters">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />An array of arguments that match in number, order, and type the parameters of the constructor to invoke. If <paramref name="parameters" /> is an empty array or null, the constructor that takes no parameters (the default constructor) is invoked.</param>
|
||
</Docs>
|
||
</Member>
|
||
<Member MemberName="LoadTemplate">
|
||
<MemberSignature Language="C#" Value="public System.Web.UI.ITemplate LoadTemplate (string virtualPath);" />
|
||
<MemberType>Method</MemberType>
|
||
<ReturnValue>
|
||
<ReturnType>System.Web.UI.ITemplate</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="virtualPath" Type="System.String" />
|
||
</Parameters>
|
||
<Docs>
|
||
<remarks>To be added</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Obtains an instance of the <see cref="T:System.Web.UI.ITemplate" /> interface from an external file.</para>
|
||
</summary>
|
||
<returns>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>An instance of the specified template.</para>
|
||
</returns>
|
||
<param name="virtualPath">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />The virtual path to a user control file. </param>
|
||
</Docs>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
</Member>
|
||
<Member MemberName="OnAbortTransaction">
|
||
<MemberSignature Language="C#" Value="protected virtual void OnAbortTransaction (EventArgs e);" />
|
||
<MemberType>Method</MemberType>
|
||
<ReturnValue>
|
||
<ReturnType>System.Void</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="e" Type="System.EventArgs" />
|
||
</Parameters>
|
||
<Docs>
|
||
<remarks>To be added</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Raises the <see cref="E:System.Web.UI.TemplateControl.AbortTransaction" /> event.</para>
|
||
</summary>
|
||
<param name="e">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
|
||
</Docs>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
</Member>
|
||
<Member MemberName="OnCommitTransaction">
|
||
<MemberSignature Language="C#" Value="protected virtual void OnCommitTransaction (EventArgs e);" />
|
||
<MemberType>Method</MemberType>
|
||
<ReturnValue>
|
||
<ReturnType>System.Void</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="e" Type="System.EventArgs" />
|
||
</Parameters>
|
||
<Docs>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>You can use the <see cref="M:System.Web.UI.TemplateControl.OnCommitTransaction(System.EventArgs)" /> method for any transaction processing logic in which your page or user control participates.</para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Raises the <see cref="E:System.Web.UI.TemplateControl.CommitTransaction" /> event.</para>
|
||
</summary>
|
||
<param name="e">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
|
||
</Docs>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
</Member>
|
||
<Member MemberName="OnError">
|
||
<MemberSignature Language="C#" Value="protected virtual void OnError (EventArgs e);" />
|
||
<MemberType>Method</MemberType>
|
||
<ReturnValue>
|
||
<ReturnType>System.Void</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="e" Type="System.EventArgs" />
|
||
</Parameters>
|
||
<Docs>
|
||
<remarks>To be added</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Raises the <see cref="E:System.Web.UI.TemplateControl.Error" /> event.</para>
|
||
</summary>
|
||
<param name="e">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
|
||
</Docs>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
</Member>
|
||
<Member MemberName="ParseControl">
|
||
<MemberSignature Language="C#" Value="public System.Web.UI.Control ParseControl (string content);" />
|
||
<MemberType>Method</MemberType>
|
||
<ReturnValue>
|
||
<ReturnType>System.Web.UI.Control</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="content" Type="System.String" />
|
||
</Parameters>
|
||
<Docs>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>The <paramref name="content" /> parameter contains a user control, such as you would find in an .ascx file. This string cannot contain any code, because the <see cref="M:System.Web.UI.TemplateControl.ParseControl(System.String)" /> method never causes compilation.</para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Parses an input string into a <see cref="T:System.Web.UI.Control" /> object on the Web Forms page or user control.</para>
|
||
</summary>
|
||
<returns>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>The parsed <see cref="T:System.Web.UI.Control" />.</para>
|
||
</returns>
|
||
<param name="content">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />A string that contains a user control. </param>
|
||
</Docs>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
</Member>
|
||
<Member MemberName="ParseControl">
|
||
<MemberSignature Language="C#" Value="public System.Web.UI.Control ParseControl (string content, bool ignoreParserFilter);" />
|
||
<MemberType>Method</MemberType>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<ReturnValue>
|
||
<ReturnType>System.Web.UI.Control</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="content" Type="System.String" />
|
||
<Parameter Name="ignoreParserFilter" Type="System.Boolean" />
|
||
</Parameters>
|
||
<Docs>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>The <paramref name="content" /> parameter contains a user control (the contents of an .ascx file). This string cannot contain any code, because the <see cref="M:System.Web.UI.TemplateControl.ParseControl(System.String)" /> method never causes compilation.</para>
|
||
<para>The <paramref name="ignoreParserFilter" /> parameter allows the <see cref="T:System.Web.UI.PageParserFilter" /> class to be ignored. The <see cref="T:System.Web.UI.PageParserFilter" /> class is used by the ASP.NET parser to determine whether an item is allowed in the page at parse time.</para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Parses an input string into a <see cref="T:System.Web.UI.Control" /> object on the ASP.NET Web page or user control.</para>
|
||
</summary>
|
||
<returns>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>The parsed control.</para>
|
||
</returns>
|
||
<param name="content">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />A string that contains a user control.</param>
|
||
<param name="ignoreParserFilter">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />A value that specifies whether to ignore the parser filter.</param>
|
||
</Docs>
|
||
</Member>
|
||
<Member MemberName="ReadStringResource">
|
||
<MemberSignature Language="C#" Value="public object ReadStringResource ();" />
|
||
<MemberType>Method</MemberType>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<Attributes>
|
||
<Attribute>
|
||
<AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
|
||
</Attribute>
|
||
</Attributes>
|
||
<ReturnValue>
|
||
<ReturnType>System.Object</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters />
|
||
<Docs>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>The <see cref="M:System.Web.UI.TemplateControl.ReadStringResource" /> method is not intended for use from within your code.</para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Reads a string resource. The <see cref="M:System.Web.UI.TemplateControl.ReadStringResource" /> method is not intended for use from within your code.</para>
|
||
</summary>
|
||
<returns>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>An object representing the resource.</para>
|
||
</returns>
|
||
</Docs>
|
||
</Member>
|
||
<Member MemberName="ReadStringResource">
|
||
<MemberSignature Language="C#" Value="public static object ReadStringResource (Type t);" />
|
||
<MemberType>Method</MemberType>
|
||
<ReturnValue>
|
||
<ReturnType>System.Object</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="t" Type="System.Type" />
|
||
</Parameters>
|
||
<Docs>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>The <see cref="M:System.Web.UI.TemplateControl.ReadStringResource(System.Type)" /> method is not intended for use from within your code.</para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Reads a string resource. The <see cref="M:System.Web.UI.TemplateControl.ReadStringResource(System.Type)" /> method is not intended for use from within your code.</para>
|
||
</summary>
|
||
<returns>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>An object representing the resource.</para>
|
||
</returns>
|
||
<param name="t">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Type" /> of the resource to read.</param>
|
||
</Docs>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<Attributes>
|
||
<Attribute>
|
||
<AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
|
||
</Attribute>
|
||
</Attributes>
|
||
</Member>
|
||
<Member MemberName="SetStringResourcePointer">
|
||
<MemberSignature Language="C#" Value="protected void SetStringResourcePointer (object stringResourcePointer, int maxResourceOffset);" />
|
||
<MemberType>Method</MemberType>
|
||
<ReturnValue>
|
||
<ReturnType>System.Void</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="stringResourcePointer" Type="System.Object" />
|
||
<Parameter Name="maxResourceOffset" Type="System.Int32" />
|
||
</Parameters>
|
||
<Docs>
|
||
<remarks>To be added</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Sets a pointer to a string resource. The <see cref="M:System.Web.UI.TemplateControl.SetStringResourcePointer(System.Object,System.Int32)" /> method is used by generated classes and is not intended for use from within your code.</para>
|
||
</summary>
|
||
<param name="stringResourcePointer">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />An object representing the pointer to the string resource.</param>
|
||
<param name="maxResourceOffset">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />The resource size. </param>
|
||
</Docs>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<Attributes>
|
||
<Attribute>
|
||
<AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
|
||
</Attribute>
|
||
</Attributes>
|
||
</Member>
|
||
<Member MemberName="SupportAutoEvents">
|
||
<MemberSignature Language="C#" Value="protected virtual bool SupportAutoEvents { get; }" />
|
||
<MemberType>Property</MemberType>
|
||
<ReturnValue>
|
||
<ReturnType>System.Boolean</ReturnType>
|
||
</ReturnValue>
|
||
<Docs>
|
||
<value>To be added: an object of type 'bool'</value>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>The <see cref="P:System.Web.UI.TemplateControl.SupportAutoEvents" /> property indicates whether automatic events are supported. The <see cref="P:System.Web.UI.TemplateControl.SupportAutoEvents" /> property is read-only and is true for all cases.</para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Gets a value indicating whether the <see cref="T:System.Web.UI.TemplateControl" /> control supports automatic events.</para>
|
||
</summary>
|
||
</Docs>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<Attributes>
|
||
<Attribute>
|
||
<AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
|
||
</Attribute>
|
||
</Attributes>
|
||
</Member>
|
||
<Member MemberName="System.Web.UI.IFilterResolutionService.CompareFilters">
|
||
<MemberSignature Language="C#" Value="int IFilterResolutionService.CompareFilters (string filter1, string filter2);" />
|
||
<MemberType>Method</MemberType>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<ReturnValue>
|
||
<ReturnType>System.Int32</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="filter1" Type="System.String" />
|
||
<Parameter Name="filter2" Type="System.String" />
|
||
</Parameters>
|
||
<Docs>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>The <see cref="M:System.Web.UI.TemplateControl.System.Web.UI.IFilterResolutionService.CompareFilters(System.String,System.String)" /> method is part of the <see cref="T:System.Web.UI.IFilterResolutionService" /> interface, which is specific to how a control uses device filters in a designer environment. When controls are parsed or persisted in the designer environment outside the context of a browser request, the <see cref="T:System.Web.UI.IFilterResolutionService" /> provides a way to determine if the current control is affected by a named filter and whether a named filter is part of a specific device-filter hierarchy.</para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Returns a value that indicates whether a parent/child relationship exists between two specified device filters. </para>
|
||
</summary>
|
||
<returns>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>1, if <paramref name="filter1" /> is a parent of <paramref name="filter2" />; -1, if <paramref name="filter2" /> is a parent of <paramref name="filter1" />; otherwise, 0, if there is no parent/child relationship between <paramref name="filter1" /> and <paramref name="filter2" />.</para>
|
||
</returns>
|
||
<param name="filter1">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />A device filter name. </param>
|
||
<param name="filter2">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />A device filter name. </param>
|
||
</Docs>
|
||
</Member>
|
||
<Member MemberName="System.Web.UI.IFilterResolutionService.EvaluateFilter">
|
||
<MemberSignature Language="C#" Value="bool IFilterResolutionService.EvaluateFilter (string filterName);" />
|
||
<MemberType>Method</MemberType>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<ReturnValue>
|
||
<ReturnType>System.Boolean</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="filterName" Type="System.String" />
|
||
</Parameters>
|
||
<Docs>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>The <see cref="M:System.Web.UI.TemplateControl.System.Web.UI.IFilterResolutionService.EvaluateFilter(System.String)" /> method is part of the <see cref="T:System.Web.UI.IFilterResolutionService" /> interface, which is specific to how a control uses device filters in a designer environment. When controls are parsed or persisted in the designer environment outside the context of a browser request, the <see cref="T:System.Web.UI.IFilterResolutionService" /> provides a way to determine if the current control is affected by a named filter and whether a named filter is part of a specific device-filter hierarchy. </para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Returns a value that indicates whether the specified filter is a type of the current filter object.</para>
|
||
</summary>
|
||
<returns>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>true if the specified filter is a type applicable to the current filter object; otherwise, false.</para>
|
||
</returns>
|
||
<param name="filterName">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />The name of a device filter.</param>
|
||
</Docs>
|
||
</Member>
|
||
<Member MemberName="WriteUTF8ResourceString">
|
||
<MemberSignature Language="C#" Value="protected void WriteUTF8ResourceString (System.Web.UI.HtmlTextWriter output, int offset, int size, bool fAsciiOnly);" />
|
||
<MemberType>Method</MemberType>
|
||
<ReturnValue>
|
||
<ReturnType>System.Void</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="output" Type="System.Web.UI.HtmlTextWriter" />
|
||
<Parameter Name="offset" Type="System.Int32" />
|
||
<Parameter Name="size" Type="System.Int32" />
|
||
<Parameter Name="fAsciiOnly" Type="System.Boolean" />
|
||
</Parameters>
|
||
<Docs>
|
||
<remarks>To be added</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Writes a resource string to an <see cref="T:System.Web.UI.HtmlTextWriter" /> control. The <see cref="M:System.Web.UI.TemplateControl.WriteUTF8ResourceString(System.Web.UI.HtmlTextWriter,System.Int32,System.Int32,System.Boolean)" /> method is used by generated classes and is not intended for use from within your code.</para>
|
||
</summary>
|
||
<param name="output">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />The control to write to.</param>
|
||
<param name="offset">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />The starting position within <paramref name="value" />.</param>
|
||
<param name="size">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />The number of characters within <paramref name="value" /> to use.</param>
|
||
<param name="fAsciiOnly">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />true to bypass re-encoding; otherwise, false.</param>
|
||
</Docs>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<Attributes>
|
||
<Attribute>
|
||
<AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
|
||
</Attribute>
|
||
</Attributes>
|
||
</Member>
|
||
<Member MemberName="XPath">
|
||
<MemberSignature Language="C#" Value="protected object XPath (string xpathexpression);" />
|
||
<MemberType>Method</MemberType>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<ReturnValue>
|
||
<ReturnType>System.Object</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="xpathexpression" Type="System.String" />
|
||
</Parameters>
|
||
<Docs>
|
||
<param name="xpathexpression">To be added.</param>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>The <see cref="M:System.Web.UI.TemplateControl.XPath(System.String)" /> method calls the <see cref="M:System.Web.UI.XPathBinder.Eval(System.Object,System.String)" /> method using the <see cref="M:System.Web.UI.Page.GetDataItem" /> method to resolve the <see cref="T:System.Xml.XPath.IXPathNavigable" /> object reference that the expression is evaluated against.</para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Evaluates an XPath data-binding expression.</para>
|
||
</summary>
|
||
<returns>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>An object that results from the evaluation of the data-binding expression.</para>
|
||
</returns>
|
||
</Docs>
|
||
</Member>
|
||
<Member MemberName="XPath">
|
||
<MemberSignature Language="C#" Value="protected string XPath (string xpathexpression, string format);" />
|
||
<MemberType>Method</MemberType>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<ReturnValue>
|
||
<ReturnType>System.String</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="xpathexpression" Type="System.String" />
|
||
<Parameter Name="format" Type="System.String" />
|
||
</Parameters>
|
||
<Docs>
|
||
<param name="xpathexpression">To be added.</param>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>The <see cref="M:System.Web.UI.TemplateControl.XPath(System.String,System.String)" /> method calls the <see cref="M:System.Web.UI.XPathBinder.Eval(System.Object,System.String,System.String)" /> method using the <see cref="M:System.Web.UI.Page.GetDataItem" /> method to resolve the <see cref="T:System.Xml.XPath.IXPathNavigable" /> object reference that the expression is evaluated against.</para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Evaluates an XPath data-binding expression using the specified format string to display the result. </para>
|
||
</summary>
|
||
<returns>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>A string that results from the evaluation of the data-binding expression and conversion to a string type.</para>
|
||
</returns>
|
||
<param name="format">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />A .NET Framework format string to apply to the result. </param>
|
||
</Docs>
|
||
</Member>
|
||
<Member MemberName="XPath">
|
||
<MemberSignature Language="C#" Value="protected object XPath (string xpathexpression, System.Xml.IXmlNamespaceResolver resolver);" />
|
||
<MemberType>Method</MemberType>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<ReturnValue>
|
||
<ReturnType>System.Object</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="xpathexpression" Type="System.String" />
|
||
<Parameter Name="resolver" Type="System.Xml.IXmlNamespaceResolver" />
|
||
</Parameters>
|
||
<Docs>
|
||
<param name="xpathexpression">To be added.</param>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>The <see cref="M:System.Web.UI.TemplateControl.XPath(System.String,System.Xml.IXmlNamespaceResolver)" /> method calls the <see cref="M:System.Web.UI.XPathBinder.Eval(System.Object,System.String,System.Xml.IXmlNamespaceResolver)" /> method using the <see cref="M:System.Web.UI.Page.GetDataItem" /> method to resolve the <see cref="T:System.Xml.XPath.IXPathNavigable" /> object reference that the expression is evaluated against.</para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Evaluates an XPath data-binding expression using the specified prefix and namespace mappings for namespace resolution.</para>
|
||
</summary>
|
||
<returns>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>An object that results from the evaluation of the data-binding expression. </para>
|
||
</returns>
|
||
<param name="resolver">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />A set of prefix and namespace mappings used for namespace resolution.</param>
|
||
</Docs>
|
||
</Member>
|
||
<Member MemberName="XPath">
|
||
<MemberSignature Language="C#" Value="protected string XPath (string xpathexpression, string format, System.Xml.IXmlNamespaceResolver resolver);" />
|
||
<MemberType>Method</MemberType>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<ReturnValue>
|
||
<ReturnType>System.String</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="xpathexpression" Type="System.String" />
|
||
<Parameter Name="format" Type="System.String" />
|
||
<Parameter Name="resolver" Type="System.Xml.IXmlNamespaceResolver" />
|
||
</Parameters>
|
||
<Docs>
|
||
<param name="xpathexpression">To be added.</param>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>The <see cref="M:System.Web.UI.TemplateControl.XPath(System.String,System.String,System.Xml.IXmlNamespaceResolver)" /> method calls the <see cref="M:System.Web.UI.XPathBinder.Eval(System.Object,System.String,System.String,System.Xml.IXmlNamespaceResolver)" /> method using the <see cref="M:System.Web.UI.Page.GetDataItem" /> method to resolve the <see cref="T:System.Xml.XPath.IXPathNavigable" /> object reference that the expression is evaluated against.</para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Evaluates an XPath data-binding expression using the specified prefix and namespace mappings for namespace resolution and the specified format string to display the result.</para>
|
||
</summary>
|
||
<returns>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>A string that results from the evaluation of the data-binding expression and conversion to a string type.</para>
|
||
</returns>
|
||
<param name="format">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />A .NET Framework format string to apply to the result. </param>
|
||
<param name="resolver">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />A set of prefix and namespace mappings used for namespace resolution. </param>
|
||
</Docs>
|
||
</Member>
|
||
<Member MemberName="XPathSelect">
|
||
<MemberSignature Language="C#" Value="protected System.Collections.IEnumerable XPathSelect (string xpathexpression);" />
|
||
<MemberType>Method</MemberType>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<ReturnValue>
|
||
<ReturnType>System.Collections.IEnumerable</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="xpathexpression" Type="System.String" />
|
||
</Parameters>
|
||
<Docs>
|
||
<param name="xpathexpression">To be added.</param>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>The <see cref="M:System.Web.UI.TemplateControl.XPathSelect(System.String)" /> method calls the <see cref="M:System.Web.UI.XPathBinder.Select(System.Object,System.String)" /> method using the <see cref="M:System.Web.UI.Page.GetDataItem" /> method to resolve the <see cref="T:System.Xml.XPath.IXPathNavigable" /> object reference that the expression is evaluated against.</para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Evaluates an XPath data-binding expression and returns a node collection that implements the <see cref="T:System.Collections.IEnumerable" /> interface.</para>
|
||
</summary>
|
||
<returns>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>An <see cref="T:System.Collections.IEnumerable" /> node list. </para>
|
||
</returns>
|
||
</Docs>
|
||
</Member>
|
||
<Member MemberName="XPathSelect">
|
||
<MemberSignature Language="C#" Value="protected System.Collections.IEnumerable XPathSelect (string xpathexpression, System.Xml.IXmlNamespaceResolver resolver);" />
|
||
<MemberType>Method</MemberType>
|
||
<AssemblyInfo>
|
||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
</AssemblyInfo>
|
||
<ReturnValue>
|
||
<ReturnType>System.Collections.IEnumerable</ReturnType>
|
||
</ReturnValue>
|
||
<Parameters>
|
||
<Parameter Name="xpathexpression" Type="System.String" />
|
||
<Parameter Name="resolver" Type="System.Xml.IXmlNamespaceResolver" />
|
||
</Parameters>
|
||
<Docs>
|
||
<param name="xpathexpression">To be added.</param>
|
||
<remarks>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>The <see cref="M:System.Web.UI.TemplateControl.XPathSelect(System.String,System.Xml.IXmlNamespaceResolver)" /> method calls the <see cref="M:System.Web.UI.XPathBinder.Select(System.Object,System.String,System.Xml.IXmlNamespaceResolver)" /> method using the <see cref="M:System.Web.UI.Page.GetDataItem" /> method to resolve the <see cref="T:System.Xml.XPath.IXPathNavigable" /> object reference that the expression is evaluated against.</para>
|
||
</remarks>
|
||
<summary>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>Evaluates an XPath data-binding expression using the specified prefix and namespace mappings for namespace resolution and returns a node collection that implements the <see cref="T:System.Collections.IEnumerable" /> interface.</para>
|
||
</summary>
|
||
<returns>
|
||
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
<para>An <see cref="T:System.Collections.IEnumerable" /> node list. </para>
|
||
</returns>
|
||
<param name="resolver">
|
||
<attribution license="cc4" from="Microsoft" modified="false" />A set of prefix and namespace mappings used for namespace resolution. </param>
|
||
</Docs>
|
||
</Member>
|
||
</Members>
|
||
</Type> |