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!

Compiler Error C2702

__except may not appear in termination block

An exception handler (__try/__except) cannot be nested inside a __finally block.

Error

int Counter;
void main ()
{
   __try {}
   __finally
   {
      __try {}
      __except( Counter ) {}    // error
   }
}