Prototype.Platform.Dispatching.MethodDescriptor.MethodDescriptor C# (CSharp) Method

MethodDescriptor() public method

public MethodDescriptor ( Type handlerType, Type messageType ) : System
handlerType System.Type
messageType System.Type
return System
        public MethodDescriptor(Type handlerType, Type messageType)
            : this()
        {
            HandlerType = handlerType;
            MessageType = messageType;
        }