Related resources for Command Interface
  • Command Pattern in VB.NET12/1/2012 3:56:12 AM. Command pattern encapsulates a request as an object and gives it a known public interface. Command Pattern ensures that every object receives its own commands and provides a decoupling between sender and receiver. A sender is an object that invokes an operation, and a receiver is an object that receives the request and acts on it.
  • Command Patterns in C#5/13/2012 6:10:05 AM. Command pattern encapsulates a request as an object and gives it a known public interface. Command Pattern ensures that every object receives its own commands and provides a decoupling between sender and receiver.