Suppose I'm writing a WinRT app with both JavaScript and C# code, and I want my JavaScript code to hook an event on my C# object.
I know that's supposed to be possible, but what would that JavaScript code look like? How are events (however the concept of a CLR event is represented in WinRT) exposed in the JavaScript projection?
If a concrete example would help, let's say my C# object has this event:
public event EventHandler Initialized;
How do I hook that event from JavaScript?
(I'm sure the answer is buried in one of the //build/ videos, but they're not exactly searchable.)