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 C3135

'property' : a property cannot have a 'const' or 'volatile' type

The const and volatile keywords are not permitted on properties.

For example, the following code generates C3135:

__interface IMyI {
   [ property ]
   const int Size;
};