File: IResourceProvider.xml

package info (click to toggle)
mono 6.14.1%2Bds2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,282,732 kB
  • sloc: cs: 11,182,461; xml: 2,850,281; ansic: 699,123; cpp: 122,919; perl: 58,604; javascript: 30,841; asm: 21,845; makefile: 19,602; sh: 10,973; python: 4,772; pascal: 925; sql: 859; sed: 16; php: 1
file content (77 lines) | stat: -rw-r--r-- 4,541 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
<?xml version="1.0" encoding="utf-8"?>
<Type Name="IResourceProvider" FullName="System.Web.Compilation.IResourceProvider">
  <TypeSignature Language="C#" Value="public interface IResourceProvider" />
  <AssemblyInfo>
    <AssemblyName>System.Web</AssemblyName>
    <AssemblyVersion>2.0.0.0</AssemblyVersion>
  </AssemblyInfo>
  <Interfaces />
  <Docs>
    <since version=".NET 2.0" />
    <remarks>
      <attribution license="cc4" from="Microsoft" modified="false" />
      <para>A resource provider facilitates the retrieving of values from a resource file. When an expression of the form &lt;%$ Resources: classKey, resourceKey %&gt; is encountered during page parsing, the resource provider returns the localized value for the resource. The <see cref="T:System.Web.Compilation.ResourceProviderFactory" /> class creates instances of <see cref="T:System.Web.Compilation.IResourceProvider" /> objects for use in retrieving the values.</para>
    </remarks>
    <summary>
      <attribution license="cc4" from="Microsoft" modified="false" />
      <para>Defines the interface a class must implement to act as a resource provider.</para>
    </summary>
  </Docs>
  <Members>
    <Member MemberName="GetObject">
      <MemberSignature Language="C#" Value="public object GetObject (string resourceKey, System.Globalization.CultureInfo culture);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Object</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="resourceKey" Type="System.String" />
        <Parameter Name="culture" Type="System.Globalization.CultureInfo" />
      </Parameters>
      <Docs>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>When implemented, the <see cref="M:System.Web.Compilation.IResourceProvider.GetObject(System.String,System.Globalization.CultureInfo)" /> method returns the localized value for a resource key based on the current culture. The implementing class could retrieve the <see cref="P:System.Globalization.CultureInfo.CurrentUICulture" /> property if a value for the <paramref name="culture" /> parameter is not passed in. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Returns a resource object for the key and culture.</para>
        </summary>
        <returns>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>An <see cref="T:System.Object" /> that contains the resource value for the <paramref name="resourceKey" /> and <paramref name="culture" />.</para>
        </returns>
        <param name="resourceKey">
          <attribution license="cc4" from="Microsoft" modified="false" />The key identifying a particular resource.</param>
        <param name="culture">
          <attribution license="cc4" from="Microsoft" modified="false" />The culture identifying a localized value for the resource.</param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="ResourceReader">
      <MemberSignature Language="C#" Value="public System.Resources.IResourceReader ResourceReader { get; }" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.Resources.IResourceReader</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>An <see cref="T:System.Resources.IResourceReader" /> object reads sequential name/value pairs from a source. The <see cref="T:System.Resources.ResourceReader" /> and <see cref="T:System.Resources.ResXResourceReader" /> classes provide default <see cref="T:System.Resources.IResourceReader" /> interface implementation for reading from .resources and .resx files, respectively. Other implementations of the <see cref="T:System.Web.Compilation.IResourceProvider" /> interface could read from any source containing resource values.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets an object to read resource values from a source.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
  </Members>
</Type>