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.