All files
[pithos-ms-client] / trunk / Libraries / Json40r2 / Source / Src / Newtonsoft.Json / JsonConstructorAttribute.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5
6 namespace Newtonsoft.Json
7 {
8   /// <summary>
9   /// Instructs the <see cref="JsonSerializer"/> not to serialize the public field or public read/write property value.
10   /// </summary>
11   [AttributeUsage(AttributeTargets.Constructor | AttributeTargets.Property, AllowMultiple = false)]
12   public sealed class JsonConstructorAttribute : Attribute
13   {
14   }
15 }