@@ -563,7 +563,7 @@ public class JsonSerializer
563
563
public T Deserialize < T > ( Newtonsoft . Json . JsonReader reader ) => throw null ;
564
564
public object Deserialize ( Newtonsoft . Json . JsonReader reader , System . Type objectType ) => throw null ;
565
565
public virtual System . Collections . IEqualityComparer EqualityComparer { get => throw null ; set { } }
566
- public virtual event System . EventHandler < Newtonsoft . Json . Serialization . ErrorEventArgs > Error { add { } remove { } }
566
+ public virtual event System . EventHandler < Newtonsoft . Json . Serialization . ErrorEventArgs > Error { }
567
567
public virtual Newtonsoft . Json . FloatFormatHandling FloatFormatHandling { get => throw null ; set { } }
568
568
public virtual Newtonsoft . Json . FloatParseHandling FloatParseHandling { get => throw null ; set { } }
569
569
public virtual Newtonsoft . Json . Formatting Formatting { get => throw null ; set { } }
@@ -803,7 +803,7 @@ public class JsonValidatingReader : Newtonsoft.Json.JsonReader, Newtonsoft.Json.
803
803
public Newtonsoft . Json . JsonReader Reader { get => throw null ; }
804
804
public Newtonsoft . Json . Schema . JsonSchema Schema { get => throw null ; set { } }
805
805
public override Newtonsoft . Json . JsonToken TokenType { get => throw null ; }
806
- public event Newtonsoft . Json . Schema . ValidationEventHandler ValidationEventHandler { add { } remove { } }
806
+ public event Newtonsoft . Json . Schema . ValidationEventHandler ValidationEventHandler { }
807
807
public override object Value { get => throw null ; }
808
808
public override System . Type ValueType { get => throw null ; }
809
809
}
@@ -998,7 +998,7 @@ public interface IJEnumerable<T> : System.Collections.Generic.IEnumerable<T>, Sy
998
998
{
999
999
Newtonsoft . Json . Linq . IJEnumerable < Newtonsoft . Json . Linq . JToken > this [ object key ] { get ; }
1000
1000
}
1001
- public class JArray : Newtonsoft . Json . Linq . JContainer , System . Collections . Generic . IList < Newtonsoft . Json . Linq . JToken > , System . Collections . Generic . ICollection < Newtonsoft . Json . Linq . JToken > , System . Collections . Generic . IEnumerable < Newtonsoft . Json . Linq . JToken > , System . Collections . IEnumerable
1001
+ public class JArray : Newtonsoft . Json . Linq . JContainer , System . Collections . Generic . ICollection < Newtonsoft . Json . Linq . JToken > , System . Collections . Generic . IEnumerable < Newtonsoft . Json . Linq . JToken > , System . Collections . IEnumerable , System . Collections . Generic . IList < Newtonsoft . Json . Linq . JToken >
1002
1002
{
1003
1003
public void Add ( Newtonsoft . Json . Linq . JToken item ) => throw null ;
1004
1004
protected override System . Collections . Generic . IList < Newtonsoft . Json . Linq . JToken > ChildrenTokens { get => throw null ; }
@@ -1047,14 +1047,14 @@ public class JConstructor : Newtonsoft.Json.Linq.JContainer
1047
1047
public override void WriteTo ( Newtonsoft . Json . JsonWriter writer , params Newtonsoft . Json . JsonConverter [ ] converters ) => throw null ;
1048
1048
public override System . Threading . Tasks . Task WriteToAsync ( Newtonsoft . Json . JsonWriter writer , System . Threading . CancellationToken cancellationToken , params Newtonsoft . Json . JsonConverter [ ] converters ) => throw null ;
1049
1049
}
1050
- public abstract class JContainer : Newtonsoft . Json . Linq . JToken , System . Collections . Generic . IList < Newtonsoft . Json . Linq . JToken > , System . Collections . Generic . ICollection < Newtonsoft . Json . Linq . JToken > , System . Collections . Generic . IEnumerable < Newtonsoft . Json . Linq . JToken > , System . Collections . IEnumerable , System . ComponentModel . ITypedList , System . ComponentModel . IBindingList , System . Collections . ICollection , System . Collections . IList , System . Collections . Specialized . INotifyCollectionChanged
1050
+ public abstract class JContainer : Newtonsoft . Json . Linq . JToken , System . ComponentModel . IBindingList , System . Collections . Generic . ICollection < Newtonsoft . Json . Linq . JToken > , System . Collections . ICollection , System . Collections . Generic . IEnumerable < Newtonsoft . Json . Linq . JToken > , System . Collections . IEnumerable , System . Collections . Generic . IList < Newtonsoft . Json . Linq . JToken > , System . Collections . IList , System . Collections . Specialized . INotifyCollectionChanged , System . ComponentModel . ITypedList
1051
1051
{
1052
1052
public virtual void Add ( object content ) => throw null ;
1053
1053
void System . Collections . Generic . ICollection < Newtonsoft . Json . Linq . JToken > . Add ( Newtonsoft . Json . Linq . JToken item ) => throw null ;
1054
1054
int System . Collections . IList . Add ( object value ) => throw null ;
1055
1055
public void AddFirst ( object content ) => throw null ;
1056
1056
void System . ComponentModel . IBindingList . AddIndex ( System . ComponentModel . PropertyDescriptor property ) => throw null ;
1057
- public event System . ComponentModel . AddingNewEventHandler AddingNew { add { } remove { } }
1057
+ public event System . ComponentModel . AddingNewEventHandler AddingNew { }
1058
1058
object System . ComponentModel . IBindingList . AddNew ( ) => throw null ;
1059
1059
bool System . ComponentModel . IBindingList . AllowEdit { get => throw null ; }
1060
1060
bool System . ComponentModel . IBindingList . AllowNew { get => throw null ; }
@@ -1064,7 +1064,7 @@ public event System.ComponentModel.AddingNewEventHandler AddingNew { add { } rem
1064
1064
protected abstract System . Collections . Generic . IList < Newtonsoft . Json . Linq . JToken > ChildrenTokens { get ; }
1065
1065
void System . Collections . Generic . ICollection < Newtonsoft . Json . Linq . JToken > . Clear ( ) => throw null ;
1066
1066
void System . Collections . IList . Clear ( ) => throw null ;
1067
- public event System . Collections . Specialized . NotifyCollectionChangedEventHandler CollectionChanged { add { } remove { } }
1067
+ public event System . Collections . Specialized . NotifyCollectionChangedEventHandler CollectionChanged { }
1068
1068
bool System . Collections . Generic . ICollection < Newtonsoft . Json . Linq . JToken > . Contains ( Newtonsoft . Json . Linq . JToken item ) => throw null ;
1069
1069
bool System . Collections . IList . Contains ( object value ) => throw null ;
1070
1070
void System . Collections . Generic . ICollection < Newtonsoft . Json . Linq . JToken > . CopyTo ( Newtonsoft . Json . Linq . JToken [ ] array , int arrayIndex ) => throw null ;
@@ -1090,7 +1090,7 @@ public event System.Collections.Specialized.NotifyCollectionChangedEventHandler
1090
1090
Newtonsoft . Json . Linq . JToken System . Collections . Generic . IList < Newtonsoft . Json . Linq . JToken > . this [ int index ] { get => throw null ; set { } }
1091
1091
object System . Collections . IList . this [ int index ] { get => throw null ; set { } }
1092
1092
public override Newtonsoft . Json . Linq . JToken Last { get => throw null ; }
1093
- public event System . ComponentModel . ListChangedEventHandler ListChanged { add { } remove { } }
1093
+ public event System . ComponentModel . ListChangedEventHandler ListChanged { }
1094
1094
public void Merge ( object content ) => throw null ;
1095
1095
public void Merge ( object content , Newtonsoft . Json . Linq . JsonMergeSettings settings ) => throw null ;
1096
1096
protected virtual void OnAddingNew ( System . ComponentModel . AddingNewEventArgs e ) => throw null ;
@@ -1112,7 +1112,7 @@ public event System.ComponentModel.ListChangedEventHandler ListChanged { add { }
1112
1112
object System . Collections . ICollection . SyncRoot { get => throw null ; }
1113
1113
public override System . Collections . Generic . IEnumerable < T > Values < T > ( ) => throw null ;
1114
1114
}
1115
- public struct JEnumerable < T > : Newtonsoft . Json . Linq . IJEnumerable < T > , System . Collections . Generic . IEnumerable < T > , System . Collections . IEnumerable , System . IEquatable < Newtonsoft . Json . Linq . JEnumerable < T > > where T : Newtonsoft . Json . Linq . JToken
1115
+ public struct JEnumerable < T > : System . Collections . Generic . IEnumerable < T > , System . Collections . IEnumerable , System . IEquatable < Newtonsoft . Json . Linq . JEnumerable < T > > , Newtonsoft . Json . Linq . IJEnumerable < T > where T : Newtonsoft . Json . Linq . JToken
1116
1116
{
1117
1117
public JEnumerable ( System . Collections . Generic . IEnumerable < T > enumerable ) => throw null ;
1118
1118
public static Newtonsoft . Json . Linq . JEnumerable < T > Empty ;
@@ -1123,7 +1123,7 @@ public struct JEnumerable<T> : Newtonsoft.Json.Linq.IJEnumerable<T>, System.Coll
1123
1123
public override int GetHashCode ( ) => throw null ;
1124
1124
public Newtonsoft . Json . Linq . IJEnumerable < Newtonsoft . Json . Linq . JToken > this [ object key ] { get => throw null ; }
1125
1125
}
1126
- public class JObject : Newtonsoft . Json . Linq . JContainer , System . Collections . Generic . IDictionary < string , Newtonsoft . Json . Linq . JToken > , System . Collections . Generic . ICollection < System . Collections . Generic . KeyValuePair < string , Newtonsoft . Json . Linq . JToken > > , System . Collections . Generic . IEnumerable < System . Collections . Generic . KeyValuePair < string , Newtonsoft . Json . Linq . JToken > > , System . Collections . IEnumerable , System . ComponentModel . INotifyPropertyChanged , System . ComponentModel . ICustomTypeDescriptor , System . ComponentModel . INotifyPropertyChanging
1126
+ public class JObject : Newtonsoft . Json . Linq . JContainer , System . Collections . Generic . ICollection < System . Collections . Generic . KeyValuePair < string , Newtonsoft . Json . Linq . JToken > > , System . ComponentModel . ICustomTypeDescriptor , System . Collections . Generic . IDictionary < string , Newtonsoft . Json . Linq . JToken > , System . Collections . Generic . IEnumerable < System . Collections . Generic . KeyValuePair < string , Newtonsoft . Json . Linq . JToken > > , System . Collections . IEnumerable , System . ComponentModel . INotifyPropertyChanged , System . ComponentModel . INotifyPropertyChanging
1127
1127
{
1128
1128
public void Add ( string propertyName , Newtonsoft . Json . Linq . JToken value ) => throw null ;
1129
1129
void System . Collections . Generic . ICollection < System . Collections . Generic . KeyValuePair < string , Newtonsoft . Json . Linq . JToken > > . Add ( System . Collections . Generic . KeyValuePair < string , Newtonsoft . Json . Linq . JToken > item ) => throw null ;
@@ -1167,8 +1167,8 @@ public class JObject : Newtonsoft.Json.Linq.JContainer, System.Collections.Gener
1167
1167
public System . Collections . Generic . IEnumerable < Newtonsoft . Json . Linq . JProperty > Properties ( ) => throw null ;
1168
1168
public Newtonsoft . Json . Linq . JProperty Property ( string name ) => throw null ;
1169
1169
public Newtonsoft . Json . Linq . JProperty Property ( string name , System . StringComparison comparison ) => throw null ;
1170
- public event System . ComponentModel . PropertyChangedEventHandler PropertyChanged { add { } remove { } }
1171
- public event System . ComponentModel . PropertyChangingEventHandler PropertyChanging { add { } remove { } }
1170
+ public event System . ComponentModel . PropertyChangedEventHandler PropertyChanged { }
1171
+ public event System . ComponentModel . PropertyChangingEventHandler PropertyChanging { }
1172
1172
public Newtonsoft . Json . Linq . JEnumerable < Newtonsoft . Json . Linq . JToken > PropertyValues ( ) => throw null ;
1173
1173
public bool Remove ( string propertyName ) => throw null ;
1174
1174
bool System . Collections . Generic . ICollection < System . Collections . Generic . KeyValuePair < string , Newtonsoft . Json . Linq . JToken > > . Remove ( System . Collections . Generic . KeyValuePair < string , Newtonsoft . Json . Linq . JToken > item ) => throw null ;
@@ -1242,7 +1242,7 @@ public class JsonSelectSettings
1242
1242
public bool ErrorWhenNoMatch { get => throw null ; set { } }
1243
1243
public System . TimeSpan ? RegexMatchTimeout { get => throw null ; set { } }
1244
1244
}
1245
- public abstract class JToken : Newtonsoft . Json . Linq . IJEnumerable < Newtonsoft . Json . Linq . JToken > , System . Collections . Generic . IEnumerable < Newtonsoft . Json . Linq . JToken > , System . Collections . IEnumerable , Newtonsoft . Json . IJsonLineInfo , System . ICloneable , System . Dynamic . IDynamicMetaObjectProvider
1245
+ public abstract class JToken : System . ICloneable , System . Dynamic . IDynamicMetaObjectProvider , System . Collections . Generic . IEnumerable < Newtonsoft . Json . Linq . JToken > , System . Collections . IEnumerable , Newtonsoft . Json . Linq . IJEnumerable < Newtonsoft . Json . Linq . JToken > , Newtonsoft . Json . IJsonLineInfo
1246
1246
{
1247
1247
public void AddAfterSelf ( object content ) => throw null ;
1248
1248
public void AddAnnotation ( object annotation ) => throw null ;
@@ -1464,7 +1464,7 @@ public class JTokenWriter : Newtonsoft.Json.JsonWriter
1464
1464
public override void WriteValue ( System . Guid value ) => throw null ;
1465
1465
public override void WriteValue ( System . Uri value ) => throw null ;
1466
1466
}
1467
- public class JValue : Newtonsoft . Json . Linq . JToken , System . IEquatable < Newtonsoft . Json . Linq . JValue > , System . IFormattable , System . IComparable , System . IComparable < Newtonsoft . Json . Linq . JValue > , System . IConvertible
1467
+ public class JValue : Newtonsoft . Json . Linq . JToken , System . IComparable , System . IComparable < Newtonsoft . Json . Linq . JValue > , System . IConvertible , System . IEquatable < Newtonsoft . Json . Linq . JValue > , System . IFormattable
1468
1468
{
1469
1469
int System . IComparable . CompareTo ( object obj ) => throw null ;
1470
1470
public int CompareTo ( Newtonsoft . Json . Linq . JValue obj ) => throw null ;
0 commit comments