123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301 |
- <?xml version="1.0"?>
- <doc>
- <assembly>
- <name>Microsoft.Extensions.Localization</name>
- </assembly>
- <members>
- <member name="T:Microsoft.Extensions.Localization.IResourceNamesCache">
- <summary>
- Represents a cache of string names in resources.
- </summary>
- </member>
- <member name="M:Microsoft.Extensions.Localization.IResourceNamesCache.GetOrAdd(System.String,System.Func{System.String,System.Collections.Generic.IList{System.String}})">
- <summary>
- Adds a set of resource names to the cache by using the specified function, if the name does not already exist.
- </summary>
- <param name="name">The resource name to add string names for.</param>
- <param name="valueFactory">The function used to generate the string names for the resource.</param>
- <returns>The string names for the resource.</returns>
- </member>
- <member name="T:Microsoft.Extensions.Localization.LocalizationOptions">
- <summary>
- Provides programmatic configuration for localization.
- </summary>
- </member>
- <member name="P:Microsoft.Extensions.Localization.LocalizationOptions.ResourcesPath">
- <summary>
- The relative path under application root where resource files are located.
- </summary>
- </member>
- <member name="P:Microsoft.Extensions.Localization.Resources.Localization_MissingManifest">
- <summary>
- The manifest '{0}' was not found.
- </summary>
- </member>
- <member name="M:Microsoft.Extensions.Localization.Resources.FormatLocalization_MissingManifest(System.Object)">
- <summary>
- The manifest '{0}' was not found.
- </summary>
- </member>
- <member name="P:Microsoft.Extensions.Localization.Resources.Localization_MissingManifest_Parent">
- <summary>
- No manifests exist for the current culture.
- </summary>
- </member>
- <member name="M:Microsoft.Extensions.Localization.Resources.FormatLocalization_MissingManifest_Parent">
- <summary>
- No manifests exist for the current culture.
- </summary>
- </member>
- <member name="T:Microsoft.Extensions.Localization.ResourceLocationAttribute">
- <summary>
- Provides the location of resources for an Assembly.
- </summary>
- </member>
- <member name="M:Microsoft.Extensions.Localization.ResourceLocationAttribute.#ctor(System.String)">
- <summary>
- Creates a new <see cref="T:Microsoft.Extensions.Localization.ResourceLocationAttribute"/>.
- </summary>
- <param name="resourceLocation">The location of resources for this Assembly.</param>
- </member>
- <member name="P:Microsoft.Extensions.Localization.ResourceLocationAttribute.ResourceLocation">
- <summary>
- The location of resources for this Assembly.
- </summary>
- </member>
- <member name="T:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer">
- <summary>
- An <see cref="T:Microsoft.Extensions.Localization.IStringLocalizer"/> that uses the <see cref="T:System.Resources.ResourceManager"/> and
- <see cref="T:System.Resources.ResourceReader"/> to provide localized strings.
- </summary>
- <remarks>This type is thread-safe.</remarks>
- </member>
- <member name="M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.#ctor(System.Resources.ResourceManager,System.Reflection.Assembly,System.String,Microsoft.Extensions.Localization.IResourceNamesCache,Microsoft.Extensions.Logging.ILogger)">
- <summary>
- Creates a new <see cref="T:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer"/>.
- </summary>
- <param name="resourceManager">The <see cref="T:System.Resources.ResourceManager"/> to read strings from.</param>
- <param name="resourceAssembly">The <see cref="T:System.Reflection.Assembly"/> that contains the strings as embedded resources.</param>
- <param name="baseName">The base name of the embedded resource that contains the strings.</param>
- <param name="resourceNamesCache">Cache of the list of strings for a given resource assembly name.</param>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/>.</param>
- </member>
- <member name="M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.#ctor(System.Resources.ResourceManager,Microsoft.Extensions.Localization.Internal.AssemblyWrapper,System.String,Microsoft.Extensions.Localization.IResourceNamesCache,Microsoft.Extensions.Logging.ILogger)">
- <summary>
- Intended for testing purposes only.
- </summary>
- </member>
- <member name="M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.#ctor(System.Resources.ResourceManager,Microsoft.Extensions.Localization.Internal.IResourceStringProvider,System.String,Microsoft.Extensions.Localization.IResourceNamesCache,Microsoft.Extensions.Logging.ILogger)">
- <summary>
- Intended for testing purposes only.
- </summary>
- </member>
- <member name="P:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.Item(System.String)">
- <inheritdoc />
- </member>
- <member name="P:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.Item(System.String,System.Object[])">
- <inheritdoc />
- </member>
- <member name="M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.WithCulture(System.Globalization.CultureInfo)">
- <summary>
- Creates a new <see cref="T:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer"/> 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.ResourceManagerStringLocalizer"/>.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(System.Boolean)">
- <inheritdoc />
- </member>
- <member name="M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(System.Boolean,System.Globalization.CultureInfo)">
- <summary>
- Returns all strings in the specified culture.
- </summary>
- <param name="includeParentCultures"></param>
- <param name="culture">The <see cref="T:System.Globalization.CultureInfo"/> to get strings for.</param>
- <returns>The strings.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetStringSafely(System.String,System.Globalization.CultureInfo)">
- <summary>
- Gets a resource string from the <see cref="F:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer._resourceManager"/> and returns <c>null</c> instead of
- throwing exceptions if a match isn't found.
- </summary>
- <param name="name">The name of the string resource.</param>
- <param name="culture">The <see cref="T:System.Globalization.CultureInfo"/> to get the string for.</param>
- <returns>The resource string, or <c>null</c> if none was found.</returns>
- </member>
- <member name="T:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory">
- <summary>
- An <see cref="T:Microsoft.Extensions.Localization.IStringLocalizerFactory"/> that creates instances of <see cref="T:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer"/>.
- </summary>
- <remarks>
- <see cref="T:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory"/> offers multiple ways to set the relative path of
- resources to be used. They are, in order of precedence:
- <see cref="T:Microsoft.Extensions.Localization.ResourceLocationAttribute"/> -> <see cref="P:Microsoft.Extensions.Localization.LocalizationOptions.ResourcesPath"/> -> the project root.
- </remarks>
- </member>
- <member name="M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Localization.LocalizationOptions},Microsoft.Extensions.Logging.ILoggerFactory)">
- <summary>
- Creates a new <see cref="T:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer"/>.
- </summary>
- <param name="localizationOptions">The <see cref="T:Microsoft.Extensions.Options.IOptions`1"/>.</param>
- <param name="loggerFactory">The <see cref="T:Microsoft.Extensions.Logging.ILoggerFactory"/>.</param>
- </member>
- <member name="M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.GetResourcePrefix(System.Reflection.TypeInfo)">
- <summary>
- Gets the resource prefix used to look up the resource.
- </summary>
- <param name="typeInfo">The type of the resource to be looked up.</param>
- <returns>The prefix for resource lookup.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.GetResourcePrefix(System.Reflection.TypeInfo,System.String,System.String)">
- <summary>
- Gets the resource prefix used to look up the resource.
- </summary>
- <param name="typeInfo">The type of the resource to be looked up.</param>
- <param name="baseNamespace">The base namespace of the application.</param>
- <param name="resourcesRelativePath">The folder containing all resources.</param>
- <returns>The prefix for resource lookup.</returns>
- <remarks>
- For the type "Sample.Controllers.Home" if there's a resourceRelativePath return
- "Sample.Resourcepath.Controllers.Home" if there isn't one then it would return "Sample.Controllers.Home".
- </remarks>
- </member>
- <member name="M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.GetResourcePrefix(System.String,System.String)">
- <summary>
- Gets the resource prefix used to look up the resource.
- </summary>
- <param name="baseResourceName">The name of the resource to be looked up</param>
- <param name="baseNamespace">The base namespace of the application.</param>
- <returns>The prefix for resource lookup.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.Create(System.Type)">
- <summary>
- Creates a <see cref="T:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer"/> 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.ResourceManagerStringLocalizer"/>.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.Create(System.String,System.String)">
- <summary>
- Creates a <see cref="T:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer"/>.
- </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.ResourceManagerStringLocalizer"/>.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.CreateResourceManagerStringLocalizer(System.Reflection.Assembly,System.String)">
- <summary>Creates a <see cref="T:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer"/> for the given input.</summary>
- <param name="assembly">The assembly to create a <see cref="T:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer"/> for.</param>
- <param name="baseName">The base name of the resource to search for.</param>
- <returns>A <see cref="T:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer"/> for the given <paramref name="assembly"/> and <paramref name="baseName"/>.</returns>
- <remarks>This method is virtual for testing purposes only.</remarks>
- </member>
- <member name="M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.GetResourcePrefix(System.String,System.String,System.String)">
- <summary>
- Gets the resource prefix used to look up the resource.
- </summary>
- <param name="location">The general location of the resource.</param>
- <param name="baseName">The base name of the resource.</param>
- <param name="resourceLocation">The location of the resource within <paramref name="location"/>.</param>
- <returns>The resource prefix used to look up the resource.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.GetResourceLocationAttribute(System.Reflection.Assembly)">
- <summary>Gets a <see cref="T:Microsoft.Extensions.Localization.ResourceLocationAttribute"/> from the provided <see cref="T:System.Reflection.Assembly"/>.</summary>
- <param name="assembly">The assembly to get a <see cref="T:Microsoft.Extensions.Localization.ResourceLocationAttribute"/> from.</param>
- <returns>The <see cref="T:Microsoft.Extensions.Localization.ResourceLocationAttribute"/> associated with the given <see cref="T:System.Reflection.Assembly"/>.</returns>
- <remarks>This method is protected and virtual for testing purposes only.</remarks>
- </member>
- <member name="M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.GetRootNamespaceAttribute(System.Reflection.Assembly)">
- <summary>Gets a <see cref="T:Microsoft.Extensions.Localization.RootNamespaceAttribute"/> from the provided <see cref="T:System.Reflection.Assembly"/>.</summary>
- <param name="assembly">The assembly to get a <see cref="T:Microsoft.Extensions.Localization.RootNamespaceAttribute"/> from.</param>
- <returns>The <see cref="T:Microsoft.Extensions.Localization.RootNamespaceAttribute"/> associated with the given <see cref="T:System.Reflection.Assembly"/>.</returns>
- <remarks>This method is protected and virtual for testing purposes only.</remarks>
- </member>
- <member name="T:Microsoft.Extensions.Localization.ResourceManagerWithCultureStringLocalizer">
- <summary>
- An <see cref="T:Microsoft.Extensions.Localization.IStringLocalizer"/> that uses the <see cref="T:System.Resources.ResourceManager"/> and
- <see cref="T:System.Resources.ResourceReader"/> to provide localized strings for a specific <see cref="T:System.Globalization.CultureInfo"/>.
- </summary>
- </member>
- <member name="M:Microsoft.Extensions.Localization.ResourceManagerWithCultureStringLocalizer.#ctor(System.Resources.ResourceManager,Microsoft.Extensions.Localization.Internal.IResourceStringProvider,System.String,Microsoft.Extensions.Localization.IResourceNamesCache,System.Globalization.CultureInfo,Microsoft.Extensions.Logging.ILogger)">
- <summary>
- Creates a new <see cref="T:Microsoft.Extensions.Localization.ResourceManagerWithCultureStringLocalizer"/>.
- </summary>
- <param name="resourceManager">The <see cref="T:System.Resources.ResourceManager"/> to read strings from.</param>
- <param name="resourceStringProvider">The <see cref="T:Microsoft.Extensions.Localization.Internal.IResourceStringProvider"/> that can find the resources.</param>
- <param name="baseName">The base name of the embedded resource that contains the strings.</param>
- <param name="resourceNamesCache">Cache of the list of strings for a given resource assembly name.</param>
- <param name="culture">The specific <see cref="T:System.Globalization.CultureInfo"/> to use.</param>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/>.</param>
- </member>
- <member name="M:Microsoft.Extensions.Localization.ResourceManagerWithCultureStringLocalizer.#ctor(System.Resources.ResourceManager,System.Reflection.Assembly,System.String,Microsoft.Extensions.Localization.IResourceNamesCache,System.Globalization.CultureInfo,Microsoft.Extensions.Logging.ILogger)">
- <summary>
- Creates a new <see cref="T:Microsoft.Extensions.Localization.ResourceManagerWithCultureStringLocalizer"/>.
- </summary>
- <param name="resourceManager">The <see cref="T:System.Resources.ResourceManager"/> to read strings from.</param>
- <param name="resourceAssembly">The <see cref="T:System.Reflection.Assembly"/> that contains the strings as embedded resources.</param>
- <param name="baseName">The base name of the embedded resource that contains the strings.</param>
- <param name="resourceNamesCache">Cache of the list of strings for a given resource assembly name.</param>
- <param name="culture">The specific <see cref="T:System.Globalization.CultureInfo"/> to use.</param>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/>.</param>
- </member>
- <member name="P:Microsoft.Extensions.Localization.ResourceManagerWithCultureStringLocalizer.Item(System.String)">
- <inheritdoc />
- </member>
- <member name="P:Microsoft.Extensions.Localization.ResourceManagerWithCultureStringLocalizer.Item(System.String,System.Object[])">
- <inheritdoc />
- </member>
- <member name="M:Microsoft.Extensions.Localization.ResourceManagerWithCultureStringLocalizer.GetAllStrings(System.Boolean)">
- <inheritdoc />
- </member>
- <member name="T:Microsoft.Extensions.Localization.ResourceNamesCache">
- <summary>
- An implementation of <see cref="T:Microsoft.Extensions.Localization.IResourceNamesCache"/> backed by a <see cref="T:System.Collections.Concurrent.ConcurrentDictionary`2"/>.
- </summary>
- </member>
- <member name="M:Microsoft.Extensions.Localization.ResourceNamesCache.GetOrAdd(System.String,System.Func{System.String,System.Collections.Generic.IList{System.String}})">
- <inheritdoc />
- </member>
- <member name="T:Microsoft.Extensions.Localization.RootNamespaceAttribute">
- <summary>
- Provides the RootNamespace of an Assembly. The RootNamespace of the assembly is used by Localization to
- determine the resource name to look for when RootNamespace differs from the AssemblyName.
- </summary>
- </member>
- <member name="M:Microsoft.Extensions.Localization.RootNamespaceAttribute.#ctor(System.String)">
- <summary>
- Creates a new <see cref="T:Microsoft.Extensions.Localization.RootNamespaceAttribute"/>.
- </summary>
- <param name="rootNamespace">The RootNamespace for this Assembly.</param>
- </member>
- <member name="P:Microsoft.Extensions.Localization.RootNamespaceAttribute.RootNamespace">
- <summary>
- The RootNamespace of this Assembly. The RootNamespace of the assembly is used by Localization to
- determine the resource name to look for when RootNamespace differs from the AssemblyName.
- </summary>
- </member>
- <member name="T:Microsoft.Extensions.DependencyInjection.LocalizationServiceCollectionExtensions">
- <summary>
- Extension methods for setting up localization services in an <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection" />.
- </summary>
- </member>
- <member name="M:Microsoft.Extensions.DependencyInjection.LocalizationServiceCollectionExtensions.AddLocalization(Microsoft.Extensions.DependencyInjection.IServiceCollection)">
- <summary>
- Adds services required for application localization.
- </summary>
- <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
- <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
- </member>
- <member name="M:Microsoft.Extensions.DependencyInjection.LocalizationServiceCollectionExtensions.AddLocalization(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Localization.LocalizationOptions})">
- <summary>
- Adds services required for application localization.
- </summary>
- <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
- <param name="setupAction">
- An <see cref="T:System.Action`1"/> to configure the <see cref="T:Microsoft.Extensions.Localization.LocalizationOptions"/>.
- </param>
- <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
- </member>
- </members>
- </doc>
|