//------------------------------------------------------------------------------
//
// 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
// peek 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 PeekCompletedEventHandler(object sender, PeekCompletedEventArgs e);
}