IActionInvokerProvider.Order Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the order value for determining the order of execution of providers. Providers execute in ascending numeric value of the Order property.
public:
property int Order { int get(); };
public int Order { get; }
member this.Order : int
Public ReadOnly Property Order As Integer
Property Value
Remarks
Providers are executed in an ordering determined by an ascending sort of the Order property. A provider with a lower numeric value of Order will have its OnProvidersExecuting(ActionInvokerProviderContext) called before that of a provider with a higher numeric value of Order. The OnProvidersExecuted(ActionInvokerProviderContext) method is called in the reverse ordering after all calls to OnProvidersExecuting(ActionInvokerProviderContext). A provider with a lower numeric value of Order will have its OnProvidersExecuted(ActionInvokerProviderContext) method called after that of a provider with a higher numeric value of Order.
If two providers have the same numeric value of Order, then their relative execution order is undefined.