'declaration' : property methods can only be associated with non-static data members
The property extended attribute is incorrectly applied to a static data member.
Example
struct A { static __declspec(property(put=PutProp)) int prop; // error C2779 int PutProp(void); };