Enum ResourceKeyResolverType
- Namespace
- SharpVectors.Renderers
- Assembly
- SharpVectors.Rendering.Wpf.dll
A value specifiying the resource key resolver type.
public enum ResourceKeyResolverType
Fields
None = 0Indicates an unspecified or unknown resource key resolver.
Default = 1The default resource key resolver. On error, any defined resolver will fallback to the default resource resolver.
Dictionary = 2A dictionary-based resource key resolver.
CodeSnippet = 3A user-defined
C#code-based callback method for resolving the resource key. It is compiled and run at runtime in memory.Custom = 4A custom or user-defined resource key resolver. It implements the IResourceKeyResolver interface.