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!

<summary>

<summary>description</summary>

where:

description
A summary of the object.

Remarks

The <summary> tag should be used in the comment to provide a short description. Use <remarks> to indicate a longer description.

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

Example

public class MyClass {
   /// <summary>MyMethod doesn't do very much.</summary>
   public static void MyMethod(int Int1) {
   }

   public static void Main () {
   }
}

See Also

Tags for Documentation Comments