AvalonStudio.Extensibility.Commands.CommandHandlerWrapper.CommandHandlerWrapper C# (CSharp) Method

CommandHandlerWrapper() private method

private CommandHandlerWrapper ( object commandHandler, MethodInfo updateMethod, MethodInfo populateMethod, MethodInfo runMethod ) : System
commandHandler object
updateMethod System.Reflection.MethodInfo
populateMethod System.Reflection.MethodInfo
runMethod System.Reflection.MethodInfo
return System
		private CommandHandlerWrapper(
			object commandHandler,
			MethodInfo updateMethod,
			MethodInfo populateMethod,
			MethodInfo runMethod)
		{
			_commandHandler = commandHandler;
			_updateMethod = updateMethod;
			_populateMethod = populateMethod;
			_runMethod = runMethod;
		}