'identifier' : no 'get' method is associated with this property
A data member declared with the property extended attribute does not have a get function specified, but an expression tries to retrieve its value.
Example
struct A { __declspec(property(put=PutProp)) int prop; int PutProp(void); }; int f(A* pa) { int x = pa->prop; // error C2775 return x; }