Enum RegistrationPriority
Enumeration of possible priorities for implementation registration.
public enum RegistrationPriority
- Extension Methods
Fields
Default = 0
Indicates that implementation being registered is to replace any implementation registered so far.
Fallback = 1
Indicates that implementation being registered is to be considered a fallback implementation. Such implementation is used only when no other implementation is registered later in the application's life-cycle.
A fallback implementation is typically used during early application initialization phase, when regular system implementation is yet to be registered.
Registering more than one fallback implementation is an error and the behavior is undefined.
SystemDefault = 2
Indicates that implementation being registered is to be considered a system default implementation. Default implementation has precedence when registering an implementation.
Registering more than one system default implementation is an error and the behavior is undefined.