示例#1
0
 /// <summary>
 /// Initializes a new instance of the JsonProperty class.
 /// </summary>
 /// <param name="name">The name of the property.</param>
 /// <param name="value">The value of the property.</param>
 public JsonProperty(string name, JsonValue value) : base()
 {
     ExceptionUtilities.CheckArgumentNotNull(name, "name");
     this.Name  = name;
     this.Value = value;
 }