System.ComponentModel.Navigation.ActionDescriptor.ActionDescriptor C# (CSharp) Method

ActionDescriptor() public method

public ActionDescriptor ( MethodInfo actionMethod, bool async ) : System
actionMethod System.Reflection.MethodInfo
async bool
return System
        public ActionDescriptor(MethodInfo actionMethod, bool async)
        {
            _actionMethod = actionMethod;
            _async = async;
        }