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!

<value>

<value>property description</value>

where:

property description
A description for the property.

Remarks

The <value> tag lets you describe a property.

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

Example

using System;
public class Employee {
   private string name;
   /// <value>Name accesses the value of the name data member</value>
   public string Name {
      get {
         return name; 
      }
      set { 
         name = value; 
      }
   }

}

public class MainClass {
   public static void Main() {
   }
}

See Also

Tags for Documentation Comments