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!

20.1.19 The Serializable attribute

The presence of the Serializable attribute on a class indicates that the class can be serialized..

[AttributeUsage(AttributeTargets.Class 
                  | AttributeTargets.Delegate 
                  | AttributeTargets.Enum 
                  | AttributeTargets.Struct)]
public class SerializableAttribute: System.Attribute
{
   public SerializableAttribute() {…}
}