System.Runtime.Remoting.Messaging.HeaderHandler Delegate

Assembly: Mscorlib.dll
Namespace: System.Runtime.Remoting.Messaging
Summary
Represents the method that will handle processing of headers on the stream during deserialization.
C# Syntax:
[Serializable]
public delegate object HeaderHandler(Header[] headers);
Parameters:
The declaration of your event handler must have the same parameters as the HeaderHandler delegate declaration.

headers

The headers of the event.

Remarks
Header objects are used to convey information about a remote function call (for example, transaction ID or a method signature).

When you create a HeaderHandler, you identify the method that will handle the event. For an overview, see the conceptual topic at MSDN: eventsdelegates.

See also:
System.Runtime.Remoting.Messaging Namespace See also:
MSDN: eventsdelegates

Hierarchy:

Top of page

Copyright (c) 2002 Microsoft Corporation. All rights reserved.