'function': a NGWS runtime event source must return 'void'
NGWS event sources cannot return values.
The following sample generates C3721:
#using <mscorlib.dll> [event_source(com+)] __gc class A { public: __event int func(); // C3721, change 'int' to 'void' to resolve }; void main() { }