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 C3100

'property' : property argument expects only one value

A parameter for the property attribute can only have one value. For example, the following code generates C3100:

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

interface IX1 {
public:
   [ property(get={0, 1}) ]
   int Size;
};