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 C3104

'parameter_name' : illegal argument for attribute 'attribute_name'

You specified an invalid argument to an attribute. For example:

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

interface IX5 {
public:
   [ property(set=1) ]   // set is not valid to property attribute
   int Size;
};

See Also

property attribute