/Source/Bifrost/Commands/ICommandHandler.cs

# · C# · 38 lines · 8 code · 0 blank · 30 comment · 0 complexity · 92bf4d3505a68fb82e6c5db4faab37e9 MD5 · raw file

  1. #region License
  2. //
  3. // Copyright (c) 2008-2012, DoLittle Studios and Komplett ASA
  4. //
  5. // Licensed under the Microsoft Permissive License (Ms-PL), Version 1.1 (the "License")
  6. // With one exception :
  7. // Commercial libraries that is based partly or fully on Bifrost and is sold commercially,
  8. // must obtain a commercial license.
  9. //
  10. // You may not use this file except in compliance with the License.
  11. // You may obtain a copy of the license at
  12. //
  13. // http://bifrost.codeplex.com/license
  14. //
  15. // Unless required by applicable law or agreed to in writing, software
  16. // distributed under the License is distributed on an "AS IS" BASIS,
  17. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18. // See the License for the specific language governing permissions and
  19. // limitations under the License.
  20. //
  21. #endregion
  22. namespace Bifrost.Commands
  23. {
  24. /// <summary>
  25. /// Marker interface for command handlers
  26. /// </summary>
  27. /// <remarks>
  28. /// A command handler must then implement a Handle method that takes the
  29. /// specific <see cref="ICommand">command</see> you want to be handled.
  30. ///
  31. /// The system will automatically detect your command handlers and methods
  32. /// and call it automatically when a <see cref="ICommand">command</see>
  33. /// comes into the system
  34. /// </remarks>
  35. public interface ICommandHandler
  36. {
  37. }
  38. }