CQRSalad.Dispatching.Descriptors.HandlerDescriptor.HandlerDescriptor C# (CSharp) Метод

HandlerDescriptor() публичный Метод

public HandlerDescriptor ( TypeInfo handlerType, DispatchingPriority priority ) : System
handlerType System.Reflection.TypeInfo
priority DispatchingPriority
Результат System
        public HandlerDescriptor(TypeInfo handlerType, DispatchingPriority priority)
        {
            Argument.IsNotNull(handlerType, nameof(handlerType));

            HandlerType = handlerType;
            Priority = priority;
        }
HandlerDescriptor