CQRSalad.Dispatching.Descriptors.HandlerDescriptor.HandlerDescriptor C# (CSharp) Method

HandlerDescriptor() public method

public HandlerDescriptor ( TypeInfo handlerType, DispatchingPriority priority ) : System
handlerType System.Reflection.TypeInfo
priority DispatchingPriority
return System
        public HandlerDescriptor(TypeInfo handlerType, DispatchingPriority priority)
        {
            Argument.IsNotNull(handlerType, nameof(handlerType));

            HandlerType = handlerType;
            Priority = priority;
        }
HandlerDescriptor