PeekCompletedEventHandler 委托   
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
表示将用来处理 PeekCompleted 的 MessageQueue 事件的方法。
public delegate void PeekCompletedEventHandler(System::Object ^ sender, PeekCompletedEventArgs ^ e);public delegate void PeekCompletedEventHandler(object sender, PeekCompletedEventArgs e);type PeekCompletedEventHandler = delegate of obj * PeekCompletedEventArgs -> unitPublic Delegate Sub PeekCompletedEventHandler(sender As Object, e As PeekCompletedEventArgs)参数
- sender
- Object
事件的源,即 MessageQueue。
包含事件数据的 PeekCompletedEventArgs。
示例
以下示例演示如何为事件处理程序创建事件委托 (PeekCompletedEventHandler)  (MyPeekCompleted) ,并将其与 MessageQueue.PeekCompleted 事件相关联。 事件处理程序将速览消息并将其标签写入屏幕。
#using <system.dll>
#using <system.messaging.dll>
using namespace System;
using namespace System::Messaging;
// This example performs asynchronous peek operation
// processing.
//*************************************************
ref class MyNewQueue
{
public:
   // Provides an event handler for the PeekCompleted
   // event.
   static void MyPeekCompleted( Object^ source, PeekCompletedEventArgs^ asyncResult )
   {
      // Connect to the queue.
      MessageQueue^ mq = dynamic_cast<MessageQueue^>(source);
      // End the asynchronous peek operation.
      Message^ m = mq->EndPeek( asyncResult->AsyncResult );
      // Display message information on the screen.
      Console::WriteLine( "Message: {0}", static_cast<String^>(m->Body) );
      // Restart the asynchronous peek operation.
      mq->BeginPeek();
      return;
   }
};
// Provides an entry point into the application.
//         
int main()
{
   // Create an instance of MessageQueue. Set its formatter.
   MessageQueue^ myQueue = gcnew MessageQueue( ".\\myQueue" );
   array<Type^>^p = gcnew array<Type^>(1);
   p[ 0 ] = String::typeid;
   myQueue->Formatter = gcnew XmlMessageFormatter( p );
   // Add an event handler for the PeekCompleted event.
   myQueue->PeekCompleted += gcnew PeekCompletedEventHandler( MyNewQueue::MyPeekCompleted );
   // Begin the asynchronous peek operation.
   myQueue->BeginPeek();
   // Do other work on the current thread.
   return 0;
}
using System;
using System.Messaging;
namespace MyProject
{
    /// <summary>
    /// Provides a container class for the example.
    /// </summary>
    public class MyNewQueue
    {
        //**************************************************
        // Provides an entry point into the application.
        //		
        // This example performs asynchronous peek operation
        // processing.
        //**************************************************
        public static void Main()
        {
            // Create an instance of MessageQueue. Set its formatter.
            MessageQueue myQueue = new MessageQueue(".\\myQueue");
            myQueue.Formatter = new XmlMessageFormatter(new Type[]
                {typeof(String)});
            // Add an event handler for the PeekCompleted event.
            myQueue.PeekCompleted += new
                PeekCompletedEventHandler(MyPeekCompleted);
            // Begin the asynchronous peek operation.
            myQueue.BeginPeek();
            // Do other work on the current thread.
            return;
        }
        //**************************************************
        // Provides an event handler for the PeekCompleted
        // event.
        //**************************************************
        private static void MyPeekCompleted(Object source,
            PeekCompletedEventArgs asyncResult)
        {
            // Connect to the queue.
            MessageQueue mq = (MessageQueue)source;
            // End the asynchronous peek operation.
            Message m = mq.EndPeek(asyncResult.AsyncResult);
            // Display message information on the screen.
            Console.WriteLine("Message: " + (string)m.Body);
            // Restart the asynchronous peek operation.
            mq.BeginPeek();
            return;
        }
    }
}
Imports System.Messaging
' Provides a container class for the example.
Public Class MyNewQueue
        ' Provides an entry point into the application.
        '		 
        ' This example performs asynchronous peek operation
        ' processing.
        Public Shared Sub Main()
            ' Create an instance of MessageQueue. Set its formatter.
            Dim myQueue As New MessageQueue(".\myQueue")
            myQueue.Formatter = New XmlMessageFormatter(New Type() _
                {GetType([String])})
            ' Add an event handler for the PeekCompleted event.
            AddHandler myQueue.PeekCompleted, AddressOf _
                MyPeekCompleted
            ' Begin the asynchronous peek operation.
            myQueue.BeginPeek()
            ' Do other work on the current thread.
            Return
        End Sub
        '**************************************************
        ' Provides an event handler for the PeekCompleted
        ' event.
        '**************************************************
        Private Shared Sub MyPeekCompleted(ByVal [source] As _
            [Object], ByVal asyncResult As PeekCompletedEventArgs)
            ' Connect to the queue.
            Dim mq As MessageQueue = CType([source], MessageQueue)
            ' End the asynchronous peek operation.
            Dim m As Message = mq.EndPeek(asyncResult.AsyncResult)
            ' Display message information on the screen.
            Console.WriteLine(("Message: " + CStr(m.Body)))
            ' Restart the asynchronous peek operation.
            mq.BeginPeek()
            Return
        End Sub
End Class
注解
创建 PeekCompletedEventHandler 委托时,需要标识将处理该事件的方法。 若要将事件与事件处理程序关联,请将该委托的一个实例添加到事件中。 除非移除了该委托,否则每当发生该事件时就会调用事件处理程序。 有关事件处理程序委托的详细信息,请参阅 处理和引发事件。
扩展方法
| GetMethodInfo(Delegate) | 获取指示指定委托表示的方法的对象。 |