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 C3117

'%$S' : an interface can only have one base class

You declared an interface that inherits from multiple base classes. For example,

__interface I1 {
};

__interface I2 {
};

__interface I3 : I1, I2 {
};

generates this error.