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); };