summaryrefslogtreecommitdiff
path: root/.packages/microsoft.aspnetcore.app.ref/3.0.1/ref/netcoreapp3.0/Microsoft.Extensions.Localization.Abstractions.xml
blob: 6a1bc069cad72942f622afe67a433a7568f927c3 (plain)
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Microsoft.Extensions.Localization.Abstractions</name>
    </assembly>
    <members>
        <member name="T:Microsoft.Extensions.Localization.IStringLocalizer">
            <summary>
            Represents a service that provides localized strings.
            </summary>
        </member>
        <member name="P:Microsoft.Extensions.Localization.IStringLocalizer.Item(System.String)">
            <summary>
            Gets the string resource with the given name.
            </summary>
            <param name="name">The name of the string resource.</param>
            <returns>The string resource as a <see cref="T:Microsoft.Extensions.Localization.LocalizedString"/>.</returns>
        </member>
        <member name="P:Microsoft.Extensions.Localization.IStringLocalizer.Item(System.String,System.Object[])">
            <summary>
            Gets the string resource with the given name and formatted with the supplied arguments.
            </summary>
            <param name="name">The name of the string resource.</param>
            <param name="arguments">The values to format the string with.</param>
            <returns>The formatted string resource as a <see cref="T:Microsoft.Extensions.Localization.LocalizedString"/>.</returns>
        </member>
        <member name="M:Microsoft.Extensions.Localization.IStringLocalizer.GetAllStrings(System.Boolean)">
            <summary>
            Gets all string resources.
            </summary>
            <param name="includeParentCultures">
            A <see cref="T:System.Boolean"/> indicating whether to include strings from parent cultures.
            </param>
            <returns>The strings.</returns>
        </member>
        <member name="M:Microsoft.Extensions.Localization.IStringLocalizer.WithCulture(System.Globalization.CultureInfo)">
            <summary>
            Creates a new <see cref="T:Microsoft.Extensions.Localization.IStringLocalizer"/> for a specific <see cref="T:System.Globalization.CultureInfo"/>.
            </summary>
            <param name="culture">The <see cref="T:System.Globalization.CultureInfo"/> to use.</param>
            <returns>A culture-specific <see cref="T:Microsoft.Extensions.Localization.IStringLocalizer"/>.</returns>
        </member>
        <member name="T:Microsoft.Extensions.Localization.IStringLocalizerFactory">
            <summary>
            Represents a factory that creates <see cref="T:Microsoft.Extensions.Localization.IStringLocalizer"/> instances.
            </summary>
        </member>
        <member name="M:Microsoft.Extensions.Localization.IStringLocalizerFactory.Create(System.Type)">
            <summary>
            Creates an <see cref="T:Microsoft.Extensions.Localization.IStringLocalizer"/> using the <see cref="T:System.Reflection.Assembly"/> and
            <see cref="P:System.Type.FullName"/> of the specified <see cref="T:System.Type"/>.
            </summary>
            <param name="resourceSource">The <see cref="T:System.Type"/>.</param>
            <returns>The <see cref="T:Microsoft.Extensions.Localization.IStringLocalizer"/>.</returns>
        </member>
        <member name="M:Microsoft.Extensions.Localization.IStringLocalizerFactory.Create(System.String,System.String)">
            <summary>
            Creates an <see cref="T:Microsoft.Extensions.Localization.IStringLocalizer"/>.
            </summary>
            <param name="baseName">The base name of the resource to load strings from.</param>
            <param name="location">The location to load resources from.</param>
            <returns>The <see cref="T:Microsoft.Extensions.Localization.IStringLocalizer"/>.</returns>
        </member>
        <member name="T:Microsoft.Extensions.Localization.IStringLocalizer`1">
            <summary>
            Represents an <see cref="T:Microsoft.Extensions.Localization.IStringLocalizer"/> that provides strings for <typeparamref name="T"/>.
            </summary>
            <typeparam name="T">The <see cref="T:System.Type"/> to provide strings for.</typeparam>
        </member>
        <member name="T:Microsoft.Extensions.Localization.LocalizedString">
            <summary>
            A locale specific string.
            </summary>
        </member>
        <member name="M:Microsoft.Extensions.Localization.LocalizedString.#ctor(System.String,System.String)">
            <summary>
            Creates a new <see cref="T:Microsoft.Extensions.Localization.LocalizedString"/>.
            </summary>
            <param name="name">The name of the string in the resource it was loaded from.</param>
            <param name="value">The actual string.</param>
        </member>
        <member name="M:Microsoft.Extensions.Localization.LocalizedString.#ctor(System.String,System.String,System.Boolean)">
            <summary>
            Creates a new <see cref="T:Microsoft.Extensions.Localization.LocalizedString"/>.
            </summary>
            <param name="name">The name of the string in the resource it was loaded from.</param>
            <param name="value">The actual string.</param>
            <param name="resourceNotFound">Whether the string was not found in a resource. Set this to <c>true</c> to indicate an alternate string value was used.</param>
        </member>
        <member name="M:Microsoft.Extensions.Localization.LocalizedString.#ctor(System.String,System.String,System.Boolean,System.String)">
            <summary>
            Creates a new <see cref="T:Microsoft.Extensions.Localization.LocalizedString"/>.
            </summary>
            <param name="name">The name of the string in the resource it was loaded from.</param>
            <param name="value">The actual string.</param>
            <param name="resourceNotFound">Whether the string was not found in a resource. Set this to <c>true</c> to indicate an alternate string value was used.</param>
            <param name="searchedLocation">The location which was searched for a localization value.</param>
        </member>
        <member name="M:Microsoft.Extensions.Localization.LocalizedString.op_Implicit(Microsoft.Extensions.Localization.LocalizedString)~System.String">
            <summary>
            Implicitly converts the <see cref="T:Microsoft.Extensions.Localization.LocalizedString"/> to a <see cref="T:System.String"/>.
            </summary>
            <param name="localizedString">The string to be implicitly converted.</param>
        </member>
        <member name="P:Microsoft.Extensions.Localization.LocalizedString.Name">
            <summary>
            The name of the string in the resource it was loaded from.
            </summary>
        </member>
        <member name="P:Microsoft.Extensions.Localization.LocalizedString.Value">
            <summary>
            The actual string.
            </summary>
        </member>
        <member name="P:Microsoft.Extensions.Localization.LocalizedString.ResourceNotFound">
            <summary>
            Whether the string was not found in a resource. If <c>true</c>, an alternate string value was used.
            </summary>
        </member>
        <member name="P:Microsoft.Extensions.Localization.LocalizedString.SearchedLocation">
            <summary>
            The location which was searched for a localization value.
            </summary>
        </member>
        <member name="M:Microsoft.Extensions.Localization.LocalizedString.ToString">
            <summary>
            Returns the actual string.
            </summary>
            <returns>The actual string.</returns>
        </member>
        <member name="T:Microsoft.Extensions.Localization.StringLocalizerExtensions">
            <summary>
            Extension methods for operating on <see cref="T:Microsoft.Extensions.Localization.IStringLocalizer" /> instances.
            </summary>
        </member>
        <member name="M:Microsoft.Extensions.Localization.StringLocalizerExtensions.GetString(Microsoft.Extensions.Localization.IStringLocalizer,System.String)">
            <summary>
            Gets the string resource with the given name.
            </summary>
            <param name="stringLocalizer">The <see cref="T:Microsoft.Extensions.Localization.IStringLocalizer"/>.</param>
            <param name="name">The name of the string resource.</param>
            <returns>The string resource as a <see cref="T:Microsoft.Extensions.Localization.LocalizedString"/>.</returns>
        </member>
        <member name="M:Microsoft.Extensions.Localization.StringLocalizerExtensions.GetString(Microsoft.Extensions.Localization.IStringLocalizer,System.String,System.Object[])">
            <summary>
            Gets the string resource with the given name and formatted with the supplied arguments.
            </summary>
            <param name="stringLocalizer">The <see cref="T:Microsoft.Extensions.Localization.IStringLocalizer"/>.</param>
            <param name="name">The name of the string resource.</param>
            <param name="arguments">The values to format the string with.</param>
            <returns>The formatted string resource as a <see cref="T:Microsoft.Extensions.Localization.LocalizedString"/>.</returns>
        </member>
        <member name="M:Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(Microsoft.Extensions.Localization.IStringLocalizer)">
            <summary>
            Gets all string resources including those for parent cultures.
            </summary>
            <param name="stringLocalizer">The <see cref="T:Microsoft.Extensions.Localization.IStringLocalizer"/>.</param>
            <returns>The string resources.</returns>
        </member>
        <member name="T:Microsoft.Extensions.Localization.StringLocalizer`1">
            <summary>
            Provides strings for <typeparamref name="TResourceSource"/>.
            </summary>
            <typeparam name="TResourceSource">The <see cref="T:System.Type"/> to provide strings for.</typeparam>
        </member>
        <member name="M:Microsoft.Extensions.Localization.StringLocalizer`1.#ctor(Microsoft.Extensions.Localization.IStringLocalizerFactory)">
            <summary>
            Creates a new <see cref="T:Microsoft.Extensions.Localization.StringLocalizer`1"/>.
            </summary>
            <param name="factory">The <see cref="T:Microsoft.Extensions.Localization.IStringLocalizerFactory"/> to use.</param>
        </member>
        <member name="M:Microsoft.Extensions.Localization.StringLocalizer`1.WithCulture(System.Globalization.CultureInfo)">
            <inheritdoc />
        </member>
        <member name="P:Microsoft.Extensions.Localization.StringLocalizer`1.Item(System.String)">
            <inheritdoc />
        </member>
        <member name="P:Microsoft.Extensions.Localization.StringLocalizer`1.Item(System.String,System.Object[])">
            <inheritdoc />
        </member>
        <member name="M:Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(System.Boolean)">
            <inheritdoc />
        </member>
    </members>
</doc>