/// <summary> /// Initializes a new instance of the <see cref="JProperty"/> class from another <see cref="JProperty"/> object. /// </summary> /// <param name="other">A <see cref="JProperty"/> object to copy from.</param> public JProperty(JProperty other) : base(other) { _name = other.Name; }
internal override bool DeepEquals(JToken node) { JProperty t = node as JProperty; return(t != null && _name == t.Name && ContentsEqual(t)); }
internal void InternalPropertyChanging(JProperty childProperty) { #if !(NET20 || PORTABLE40 || PORTABLE) OnPropertyChanging(childProperty.Name); #endif }