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!

17.4.3 The Obsolete attribute

The Obsolete attribute is used to mark program elements that should no longer be used.

[AttributeUsage(AttributeTargets.All)]
public class ObsoleteAttribute: System.Attribute
{
   public ObsoleteAttribute(string message) {…}
   public string Message { get {…} }
   public bool IsError{ get {…} set {…} }
}