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!

<param>

<param name='name'>description</param>

where:

name
The name of a method parameter. Enclose the name in single quotation marks (' ').
description
A description for the parameter.

Remarks

The <param> tag should be used in the comment for a method declaration to describe one of the parameters for the method.

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

Example

public class MyClass {
   /// <param name="Int1">Used to indicate status.</param>
   public static void MyMethod(int Int1) {
   }

   public static void Main () {
   }
}

See Also

Tags for Documentation Comments