StreetFoo.Client.DelegateCommand.DelegateCommand C# (CSharp) Method

DelegateCommand() public method

public DelegateCommand ( Action handler ) : System
handler Action
return System
        public DelegateCommand(Action<object> handler)
        {
            // store a reference to the delegate to invoke...
            this.Handler = handler;
        }