[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Defines the callback method for delivering events to an application.

Namespace: Microsoft.WebSolutionsPlatform.Event.PubSubManager
Assembly: PubSubMgr (PubSubMgr)

Syntax

Visual Basic (Declaration)
Public Delegate Sub Callback ( _
	eventType As Guid, _
	serializedEvent As Byte() _
)
C#
public delegate void Callback (
	Guid eventType,
	byte[] serializedEvent
)
C++
public delegate void Callback (
	Guid eventType, 
	array<unsigned char>^ serializedEvent
)

Parameters

eventType (System.Guid)
Event type for the event being passed.
serializedEvent ()
The serialized version of the event.