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!

7.7.2 Interface members

The members of an interface consist of the members introduced by its member declarations and the members inherited from its base interfaces.

Only methods, properties and events may be members of an interface, and they must be abstract. Interface members are implicitly public and may not specify an access modifier. Interface members have no scope, and they must always be qualified.

InterfaceMemberDeclaration ::=
 EventMemberDeclaration |
 MethodMemberDeclaration |
 PropertyMemberDeclaration