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 C2777

only one 'put' method can be specified per property

Example

struct A {
   __declspec(property(put=PutProp,put=PutPropToo))
      int prop;      // error C2777
   int PutProp(void);
   int PutPropToo(void);
};