4 implementations of Order
Microsoft.AspNetCore.Grpc.Swagger (1)
Internal\GrpcJsonTranscodingDescriptionProvider.cs (1)
33public int Order => -900;
Microsoft.AspNetCore.Mvc.ApiExplorer (2)
DefaultApiDescriptionProvider.cs (1)
59public int Order => -1000;
EndpointMetadataApiDescriptionProvider.cs (1)
30public int Order => -1100;
Microsoft.AspNetCore.Mvc.NewtonsoftJson (1)
JsonPatchOperationsArrayProvider.cs (1)
33public int Order => -999;
10 references to Order
Microsoft.AspNetCore.Mvc.Abstractions (9)
ApiExplorer\IApiDescriptionProvider.cs (9)
14/// in the ascending sort order of <see cref="Order"/>. 31/// ascending numeric value of the <see cref="Order"/> property. 35/// Providers are executed in an ordering determined by an ascending sort of the <see cref="Order"/> property. 36/// A provider with a lower numeric value of <see cref="Order"/> will have its 38/// <see cref="Order"/>. The <see cref="OnProvidersExecuted"/> method is called in the reverse ordering after 40/// <see cref="Order"/> will have its <see cref="OnProvidersExecuted"/> method called after that of a provider 41/// with a higher numeric value of <see cref="Order"/>. 44/// If two providers have the same numeric value of <see cref="Order"/>, then their relative execution order 57/// Called after <see cref="IApiDescriptionProvider"/> implementations with higher <see cref="Order"/> values have been called.
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
ApiDescriptionGroupCollectionProvider.cs (1)
33_apiDescriptionProviders = [.. apiDescriptionProviders.OrderBy(item => item.Order)];