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