File: ImplicitResourceKey.xml

package info (click to toggle)
mono-reference-assemblies 3.12.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 604,240 kB
  • ctags: 625,505
  • sloc: cs: 3,967,741; xml: 2,793,081; ansic: 418,042; java: 60,435; sh: 14,833; makefile: 11,576; sql: 7,956; perl: 1,467; cpp: 1,446; yacc: 1,203; python: 598; asm: 422; sed: 16; php: 1
file content (159 lines) | stat: -rw-r--r-- 9,028 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<?xml version="1.0" encoding="utf-8"?>
<Type Name="ImplicitResourceKey" FullName="System.Web.Compilation.ImplicitResourceKey">
  <TypeSignature Language="C#" Value="public sealed class ImplicitResourceKey" />
  <AssemblyInfo>
    <AssemblyName>System.Web</AssemblyName>
    <AssemblyVersion>2.0.0.0</AssemblyVersion>
  </AssemblyInfo>
  <Base>
    <BaseTypeName>System.Object</BaseTypeName>
  </Base>
  <Interfaces />
  <Docs>
    <since version=".NET 2.0" />
    <remarks>
      <attribution license="cc4" from="Microsoft" modified="false" />
      <para>The <see cref="T:System.Web.Compilation.ImplicitResourceKey" /> class contains fields that identify an implicit resource key. </para>
      <para>An implicit resource is assigned to a control in the following form:</para>
      <code>    &lt;asp:label runat="server" id="label1" meta:resourcekey="Welcome"
        text="Welcome" 
          ie:text="Welcome Internet Explorer User"  
        forecolor="blue"/&gt;  </code>
      <para>During page parsing, an implicit resource is converted into explicit keys in the form [filter:]prefix.property[.subproperty]. Any resource values with the specified prefix (in the preceding example, a prefix of Welcome) are assigned to the matching control properties. For example, suppose values exist in the resource file or source code for the following keys:</para>
      <para>    Welcome.Text</para>
      <para>    Ie:Welcome.Text</para>
      <para>    Welcome.Forecolor</para>
      <para>These values are assigned to their respective control properties.</para>
      <para>Implicit resource keys can reference only local resources.</para>
    </remarks>
    <summary>
      <attribution license="cc4" from="Microsoft" modified="false" />
      <para>Contains fields that identify an implicit resource key.</para>
    </summary>
  </Docs>
  <Members>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public ImplicitResourceKey ();" />
      <MemberType>Constructor</MemberType>
      <Parameters />
      <Docs>
        <remarks>To be added.</remarks>
        <since version=".NET 2.0" />
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Initializes a new instance of the <see cref="T:System.Web.Compilation.ImplicitResourceKey" /> class. </para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public ImplicitResourceKey (string filter, string keyPrefix, string property);" />
      <MemberType>Constructor</MemberType>
      <Parameters>
        <Parameter Name="filter" Type="System.String" />
        <Parameter Name="keyPrefix" Type="System.String" />
        <Parameter Name="property" Type="System.String" />
      </Parameters>
      <Docs>
        <remarks>To be added.</remarks>
        <since version=".NET 2.0" />
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Initializes a new instance of the <see cref="T:System.Web.Compilation.ImplicitResourceKey" /> class with the specified values for the <see cref="P:System.Web.Compilation.ImplicitResourceKey.Filter" />, <see cref="P:System.Web.Compilation.ImplicitResourceKey.KeyPrefix" /> and <see cref="P:System.Web.Compilation.ImplicitResourceKey.Property" /> properties.</para>
        </summary>
        <param name="filter">
          <attribution license="cc4" from="Microsoft" modified="false" />The filter value of an implicit resource key.</param>
        <param name="keyPrefix">
          <attribution license="cc4" from="Microsoft" modified="false" />The prefix for identifying a group of properties.</param>
        <param name="property">
          <attribution license="cc4" from="Microsoft" modified="false" />A property and subproperty, if provided, for an implicit resource key.</param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="Filter">
      <MemberSignature Language="C#" Value="public string Filter { set; get; }" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="P:System.Web.Compilation.ImplicitResourceKey.Filter" /> property refers to the value before the colon (:) in an expression. For example, suppose you had an implicit resource in the following form:</para>
          <code>&lt;asp:label runat="server" id="label1" meta:resourcekey="Welcome"
        text="Welcome" 
        ie:text="Welcome Internet Explorer User"  
        forecolor="blue"/&gt;  </code>
          <para>This resource contains three keys that potentially have localized resource values to retrieve from the resource file or source code. One of these keys is Ie:Welcome.Text, in which "Ie" is the <see cref="P:System.Web.Compilation.ImplicitResourceKey.Filter" /> value.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets or sets the filter value of an implicit resource key.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="KeyPrefix">
      <MemberSignature Language="C#" Value="public string KeyPrefix { set; get; }" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="P:System.Web.Compilation.ImplicitResourceKey.KeyPrefix" /> property ties together a collection of properties that can be assigned to a control. The <see cref="P:System.Web.Compilation.ImplicitResourceKey.KeyPrefix" /> property refers to the value after the colon (:) in an expression, if present, and before the first period (.). For example, suppose you had an implicit resource in the following form:</para>
          <code>&lt;asp:label runat="server" id="label1" meta:resourcekey="Welcome"
        text="Welcome" 
        ie:text="Welcome Internet Explorer User"  
        forecolor="blue"/&gt;  </code>
          <para>This resource contains three keys, Welcome.Text, Ie:Welcome.Text, and Welcome.Forecolor, that potentially have localized resource values to retrieve from the resource file or source code. Each key has "Welcome" as the <see cref="P:System.Web.Compilation.ImplicitResourceKey.KeyPrefix" /> value.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets or sets the prefix for identifying a group of properties.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="Property">
      <MemberSignature Language="C#" Value="public string Property { set; get; }" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="P:System.Web.Compilation.ImplicitResourceKey.Property" /> property specifies the control property to be localized. The <see cref="P:System.Web.Compilation.ImplicitResourceKey.Property" /> property refers to the value after the first period (.) in an expression. For example, suppose you had an implicit resource in the following form:</para>
          <code>&lt;asp:label runat="server" id="label1" meta:resourcekey="Welcome"
        text="Welcome" 
        ie:text="Welcome Internet Explorer User"  
        forecolor="blue"/&gt;  </code>
          <para>This resource contains three keys, Welcome.Text, Ie:Welcome.Text, and Welcome.Forecolor, that potentially have localized resource values to retrieve from the resource file or source code. Those keys have <see cref="P:System.Web.Compilation.ImplicitResourceKey.Property" /> values of "Text", "Text", and "Forecolor", respectively.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets or sets a property and subproperty, if provided, for an implicit resource key.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
  </Members>
</Type>