//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace Experimental.System.Messaging
{
//
// Represents the signature of the callback that will
// be executed when an asynchronous message queue
// receive operation is completed.
//
//
// Contains the MessageQueue object that calls the method.
//
//
// The event information associated with the call.
//
//
//
///
///
/// Represents the method that will handle the event of a .
///
public delegate void ReceiveCompletedEventHandler(object sender, ReceiveCompletedEventArgs e);
}