PeekCompletedEventHandler.cs 1.2 KB

12345678910111213141516171819202122232425262728
  1. //------------------------------------------------------------------------------
  2. // <copyright file="PeekCompletedEventHandler.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. //------------------------------------------------------------------------------
  6. namespace Experimental.System.Messaging
  7. {
  8. // <summary>
  9. // Represents the signature of the callback that will
  10. // be executed when an asynchronous message queue
  11. // peek operation is completed.
  12. // </summary>
  13. // <param name='sender'>
  14. // Contains the MessageQueue object that calls the method.
  15. // </param>
  16. // <param name='args'>
  17. // The event information associated with the call.
  18. // </param>
  19. // </doc>
  20. //
  21. /// <include file='doc\PeekCompletedEventHandler.uex' path='docs/doc[@for="PeekCompletedEventHandler"]/*' />
  22. /// <devdoc>
  23. /// <para>Represents the method that will handle the <see cref='System.Messaging.MessageQueue.PeekCompleted'/> event of a <see cref='System.Messaging.MessageQueue'/>.</para>
  24. /// </devdoc>
  25. public delegate void PeekCompletedEventHandler(object sender, PeekCompletedEventArgs e);
  26. }