I was wondering what's the proper way of raising events from C++/CLI. In C# one should first make a copy of the handler, check if it's not null, and then call it. Is there a similar practice for C++/CLI?
|
C++/CLI allows you to override Example, adapted from the MSDN for correctness:
|
|||
|
|
|
This isn't the whole story! You don't usually have to worry about null event handlers in C++/CLI. The code for these checks is generated for you. Consider the following trivial C++/CLI class.
If you compile this class, and disassemble it using Reflector, you get the following c# code.
The usual checks are being done in the raise method. Unless you really want custom behavior, you should feel comfortable declaring your event as in the above class, and raising it without fear of a null handler. |
|||
|
If your issue is that raise isn't private, then explicitly implement it like the docs say: http://msdn.microsoft.com/en-us/library/5f3csfsa.aspx In summary: If you just use the event keyword, you create a "trivial" event. The compiler generates add/remove/raise and the delegate member for you. The generated raise function (as the docs say) checks for nullptr. Trivial events are documented here: http://msdn.microsoft.com/en-us/library/4b612y2s.aspx If you want "more control", for example to make raise private, then you have to explicitly implement the members as shown in the link. You must explicitly declare a data member for the delegate type. Then you use the event keyword to declare the event-related members, as in the Microsoft example:
Wordy, but there it is. -reilly. |
|||
|
|