Skip to main content
Table of Contents

Class IdentityResources

Namespace
Stratara.Identity.AspNetCore.Resources
Assembly
Stratara.Identity.AspNetCore.dll

Resource-anchor type for IStringLocalizer<T> lookups in the Stratara Identity AspNetCore stack. The companion IdentityResources.resx ships an English default resource set; IdentityResources.de.resx provides German overrides. Consumers can ship additional culture-specific resource files (e.g. IdentityResources.fr.resx) in their own assembly and register a custom IStringLocalizer<T> chain if more languages are needed.

[SuppressMessage("Minor Code Smell", "S2094:Classes should not be empty", Justification = "IStringLocalizer<T> requires a type with an assembly-name-derived base name; the class must remain empty and cannot be an interface.")]
public sealed class IdentityResources
Inheritance
IdentityResources
Inherited Members
Extension Methods

Remarks

The class is intentionally empty — it exists only so that IStringLocalizer<T> can use its full type-name as the resource base-name. Do not add members.