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!

<returns>

<returns>description</returns>

where:

description
A description of the return value.

Remarks

The <returns> tag should be used in the comment for a method declaration to describe the return value.

Compile with /doc to process documentation comments to a file.

Example

public class MyClass {
   /// <returns>Returns zero.</returns>
   public static int GetZero() {
      return 0;
   }

   public static void Main () {
   }
}

See Also

Tags for Documentation Comments