3 namespace Loot.Api.Attributes
15 [AttributeUsage(AttributeTargets.Method, Inherited =
true)]
19 public int DelegationLevel {
get; }
23 if (delegationLevel < 0 || delegationLevel > 999)
25 throw new ArgumentOutOfRangeException(nameof(delegationLevel), delegationLevel,
"delegationLevel must be within 0-999");
29 DelegationLevel = delegationLevel;
DelegationPrioritization
Specify when you want your delegation to happen in the chain
This attribute is used to set a custom prioritization for a delegation It allows you to customize at ...
DelegationPrioritizationAttribute(DelegationPrioritization delegationPrioritization, int delegationLevel=0)