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.4.1 Structure interface implementations

A structure declaration may declare that it implements a set of interface types through one or more Implements clauses. All the types specified in the Implements clause must be interfaces, and all members of the interfaces must be implemented by the structure. Declaring that a structure implements an interface in and of itself does not declare anything in the declaration space of the structure. Thus, it is perfectly legal to implement two interfaces with a method by the same name.

TypeImplementsClause ::= Implements Implements LineTerminator
Implements ::=
 InterfaceTypeName |
 Implements , InterfaceTypeName