Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

HeaderHandler Delegate

 

Represents the method that will handle processing of headers on the stream during deserialization.

Namespace:   System.Runtime.Remoting.Messaging
Assembly:  mscorlib (in mscorlib.dll)

[ComVisibleAttribute(true)]
public delegate Object^ HeaderHandler(
	array<Header^>^ headers
)

Parameters

headers
Type: array<System.Runtime.Remoting.Messaging::Header^>^

The headers of the event.

Return Value

Type: System::Object^

A Object that conveys information about a remote function call.

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 NIB: Events and Delegates.

.NET Framework
Available since 1.1
Return to top
Show: