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 C2794

'function' : is not a member of any direct or indirect base class of 'class'

You tried to use super to call a nonexistent member function.

The following code sample shows one way this error could be generated:

struct B {
   void mf();
};

struct D : B {
   void mf() {
      __super::f();
   }
};