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 C3101

'value' : invalid value for property argument 'parameter'

You specified an invalid parameter to the property attribute. For example:

#pragma keyword("interface", on)
#pragma warning(disable:4199)

interface IX2 {
public:
   [ property(get=3) ]   // 3 is not a valid value to the get parameter
   int Size;
};