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

Add a property to the event passed in.

Namespace: net.esper.view.std
Assembly:   NEsper (in NEsper.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function AddProperty ( _
	originalEvent As EventBean, _
	propertyNames As String(), _
	propertyValues As Object(), _
	targetEventType As EventType, _
	eventAdapterService As EventAdapterService _
) As EventBean
C#
public static EventBean AddProperty (
	EventBean originalEvent,
	string[] propertyNames,
	Object[] propertyValues,
	EventType targetEventType,
	EventAdapterService eventAdapterService
)
Visual C++
public:
static EventBean^ AddProperty (
	EventBean^ originalEvent, 
	array<String^>^ propertyNames, 
	array<Object^>^ propertyValues, 
	EventType^ targetEventType, 
	EventAdapterService^ eventAdapterService
)

Parameters

originalEvent
net.esper.events.EventBean
event to add property to
propertyNames
System.String[]
names of properties to add
propertyValues
System.Object[]
value of properties to add
targetEventType
net.esper.events.EventType
new event type
eventAdapterService
net.esper.events.EventAdapterService
service for generating events and handling event types

Return Value

event with added property