@@ -37,17 +37,17 @@ public override Elastic.Clients.Elasticsearch.Cluster.GetClusterSettingsResponse
37
37
LocalJsonValue < System . Collections . Generic . IReadOnlyDictionary < string , object > > propTransient = default ;
38
38
while ( reader . Read ( ) && reader . TokenType is System . Text . Json . JsonTokenType . PropertyName )
39
39
{
40
- if ( propDefaults . TryReadProperty ( ref reader , options , PropDefaults , static System . Collections . Generic . IReadOnlyDictionary < string , object > ? ( ref System . Text . Json . Utf8JsonReader r , System . Text . Json . JsonSerializerOptions o ) => r . ReadDictionaryValue < string , object > ( o , null , null ) ) )
40
+ if ( propDefaults . TryReadProperty ( ref reader , options , PropDefaults , static System . Collections . Generic . IReadOnlyDictionary < string , object > ? ( ref System . Text . Json . Utf8JsonReader r , System . Text . Json . JsonSerializerOptions o ) => r . ReadDictionaryValue < string , object > ( o , null , static object ( ref System . Text . Json . Utf8JsonReader r , System . Text . Json . JsonSerializerOptions o ) => r . ReadValueEx < object > ( o , typeof ( Elastic . Clients . Elasticsearch . Serialization . SourceMarker < object > ) ) ! ) ) )
41
41
{
42
42
continue ;
43
43
}
44
44
45
- if ( propPersistent . TryReadProperty ( ref reader , options , PropPersistent , static System . Collections . Generic . IReadOnlyDictionary < string , object > ( ref System . Text . Json . Utf8JsonReader r , System . Text . Json . JsonSerializerOptions o ) => r . ReadDictionaryValue < string , object > ( o , null , null ) ! ) )
45
+ if ( propPersistent . TryReadProperty ( ref reader , options , PropPersistent , static System . Collections . Generic . IReadOnlyDictionary < string , object > ( ref System . Text . Json . Utf8JsonReader r , System . Text . Json . JsonSerializerOptions o ) => r . ReadDictionaryValue < string , object > ( o , null , static object ( ref System . Text . Json . Utf8JsonReader r , System . Text . Json . JsonSerializerOptions o ) => r . ReadValueEx < object > ( o , typeof ( Elastic . Clients . Elasticsearch . Serialization . SourceMarker < object > ) ) ! ) ! ) )
46
46
{
47
47
continue ;
48
48
}
49
49
50
- if ( propTransient . TryReadProperty ( ref reader , options , PropTransient , static System . Collections . Generic . IReadOnlyDictionary < string , object > ( ref System . Text . Json . Utf8JsonReader r , System . Text . Json . JsonSerializerOptions o ) => r . ReadDictionaryValue < string , object > ( o , null , null ) ! ) )
50
+ if ( propTransient . TryReadProperty ( ref reader , options , PropTransient , static System . Collections . Generic . IReadOnlyDictionary < string , object > ( ref System . Text . Json . Utf8JsonReader r , System . Text . Json . JsonSerializerOptions o ) => r . ReadDictionaryValue < string , object > ( o , null , static object ( ref System . Text . Json . Utf8JsonReader r , System . Text . Json . JsonSerializerOptions o ) => r . ReadValueEx < object > ( o , typeof ( Elastic . Clients . Elasticsearch . Serialization . SourceMarker < object > ) ) ! ) ! ) )
51
51
{
52
52
continue ;
53
53
}
@@ -73,9 +73,9 @@ public override Elastic.Clients.Elasticsearch.Cluster.GetClusterSettingsResponse
73
73
public override void Write ( System . Text . Json . Utf8JsonWriter writer , Elastic . Clients . Elasticsearch . Cluster . GetClusterSettingsResponse value , System . Text . Json . JsonSerializerOptions options )
74
74
{
75
75
writer . WriteStartObject ( ) ;
76
- writer . WriteProperty ( options , PropDefaults , value . Defaults , null , static ( System . Text . Json . Utf8JsonWriter w , System . Text . Json . JsonSerializerOptions o , System . Collections . Generic . IReadOnlyDictionary < string , object > ? v ) => w . WriteDictionaryValue < string , object > ( o , v , null , null ) ) ;
77
- writer . WriteProperty ( options , PropPersistent , value . Persistent , null , static ( System . Text . Json . Utf8JsonWriter w , System . Text . Json . JsonSerializerOptions o , System . Collections . Generic . IReadOnlyDictionary < string , object > v ) => w . WriteDictionaryValue < string , object > ( o , v , null , null ) ) ;
78
- writer . WriteProperty ( options , PropTransient , value . Transient , null , static ( System . Text . Json . Utf8JsonWriter w , System . Text . Json . JsonSerializerOptions o , System . Collections . Generic . IReadOnlyDictionary < string , object > v ) => w . WriteDictionaryValue < string , object > ( o , v , null , null ) ) ;
76
+ writer . WriteProperty ( options , PropDefaults , value . Defaults , null , static ( System . Text . Json . Utf8JsonWriter w , System . Text . Json . JsonSerializerOptions o , System . Collections . Generic . IReadOnlyDictionary < string , object > ? v ) => w . WriteDictionaryValue < string , object > ( o , v , null , static ( System . Text . Json . Utf8JsonWriter w , System . Text . Json . JsonSerializerOptions o , object v ) => w . WriteValueEx < object > ( o , v , typeof ( Elastic . Clients . Elasticsearch . Serialization . SourceMarker < object > ) ) ) ) ;
77
+ writer . WriteProperty ( options , PropPersistent , value . Persistent , null , static ( System . Text . Json . Utf8JsonWriter w , System . Text . Json . JsonSerializerOptions o , System . Collections . Generic . IReadOnlyDictionary < string , object > v ) => w . WriteDictionaryValue < string , object > ( o , v , null , static ( System . Text . Json . Utf8JsonWriter w , System . Text . Json . JsonSerializerOptions o , object v ) => w . WriteValueEx < object > ( o , v , typeof ( Elastic . Clients . Elasticsearch . Serialization . SourceMarker < object > ) ) ) ) ;
78
+ writer . WriteProperty ( options , PropTransient , value . Transient , null , static ( System . Text . Json . Utf8JsonWriter w , System . Text . Json . JsonSerializerOptions o , System . Collections . Generic . IReadOnlyDictionary < string , object > v ) => w . WriteDictionaryValue < string , object > ( o , v , null , static ( System . Text . Json . Utf8JsonWriter w , System . Text . Json . JsonSerializerOptions o , object v ) => w . WriteValueEx < object > ( o , v , typeof ( Elastic . Clients . Elasticsearch . Serialization . SourceMarker < object > ) ) ) ) ;
79
79
writer . WriteEndObject ( ) ;
80
80
}
81
81
}
0 commit comments