NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

10.1.3 Event expressions

Event expressions are expressions that result in an event member rather than a value. Event expressions are legal only when used with the AddHandler and RemoveHandler statements. An event expression consists of either an event name, or an optional expression, followed by an optional period and an identifier.

If an event name is specified, the event must be shared. If an expression is given, the identifier must specify an event in the declaration space of the expression's type. If no expression is specified, an implicit Me is assumed.

EventExpression ::=
 Expression . IdentifierOrKeyword |
 [ MeExpression . ] IdentifierOrKeyword |
 EventMemberName