@@ -50,6 +50,7 @@ public AsyncApiDocument Read(JsonNode input, out AsyncApiDiagnostic diagnostic)
5050 ChannelBindingParsers = this . settings . Bindings . OfType < IBindingParser < IChannelBinding > > ( ) . ToDictionary ( b => b . BindingKey , b => b ) ,
5151 OperationBindingParsers = this . settings . Bindings . OfType < IBindingParser < IOperationBinding > > ( ) . ToDictionary ( b => b . BindingKey , b => b ) ,
5252 MessageBindingParsers = this . settings . Bindings . OfType < IBindingParser < IMessageBinding > > ( ) . ToDictionary ( b => b . BindingKey , b => b ) ,
53+ SchemaParserRegistry = this . settings . SchemaParserRegistry ,
5354 } ;
5455
5556 AsyncApiDocument document = null ;
@@ -90,6 +91,7 @@ public async Task<ReadResult> ReadAsync(JsonNode input, CancellationToken cancel
9091 ChannelBindingParsers = this . settings . Bindings . OfType < IBindingParser < IChannelBinding > > ( ) . ToDictionary ( b => b . BindingKey , b => b ) ,
9192 OperationBindingParsers = this . settings . Bindings . OfType < IBindingParser < IOperationBinding > > ( ) . ToDictionary ( b => b . BindingKey , b => b ) ,
9293 MessageBindingParsers = this . settings . Bindings . OfType < IBindingParser < IMessageBinding > > ( ) . ToDictionary ( b => b . BindingKey , b => b ) ,
94+ SchemaParserRegistry = this . settings . SchemaParserRegistry ,
9395 } ;
9496
9597 AsyncApiDocument document = null ;
@@ -144,6 +146,7 @@ public T ReadFragment<T>(JsonNode input, AsyncApiVersion version, out AsyncApiDi
144146 ChannelBindingParsers = this . settings . Bindings . OfType < IBindingParser < IChannelBinding > > ( ) . ToDictionary ( b => b . BindingKey , b => b ) ,
145147 OperationBindingParsers = this . settings . Bindings . OfType < IBindingParser < IOperationBinding > > ( ) . ToDictionary ( b => b . BindingKey , b => b ) ,
146148 MessageBindingParsers = this . settings . Bindings . OfType < IBindingParser < IMessageBinding > > ( ) . ToDictionary ( b => b . BindingKey , b => b ) ,
149+ SchemaParserRegistry = this . settings . SchemaParserRegistry ,
147150 } ;
148151
149152 IAsyncApiElement element = null ;
0 commit comments