ScriptIgnoreSample.cs 272 B

123456789101112
  1. using System;
  2. using System.Web.Script.Serialization;
  3. public class Group
  4. {
  5. // The JavaScriptSerializer ignores this field.
  6. [ScriptIgnore]
  7. public string Comment;
  8. // The JavaScriptSerializer serializes this field.
  9. public string GroupName;
  10. }