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 C2775

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