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 C3127

'attribute_name' : you cannot use this attribute in conjunction with attribute 'attribute_name'

You can only use one of the following attributes to describe a member method,

For example:

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


interface IX8 {
   [ propget, propput ] int Size([in] int);  // use propget or propput
};