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!

void

When used as the return type for a method, void specifies that the method does not return a value.

void is not allowed in a method’s parameter list. A method that takes no parameters and returns no value is declared as follows:

void MyMethod();

See Also

C# Keywords | Reference Types | Value Types