You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MessagePack.FormatterNotRegisteredException
HResult=0x80131500
Message=MessagePackFormatterTests+Fruit is not registered in resolver: StreamJsonRpc.MessagePackFormatter+ResolverWrapper
Source=MessagePack
StackTrace:
at MessagePack.FormatterResolverExtensions.Throw(Type t, IFormatterResolver resolver)
This is similar to #611; however, the differences are that in this bug the interface type (vs the concrete type) has a formatter and the Union attribute is not used. Plus, the exception is different.
I'd expect that the interface in the event definition would be sufficient hint for StreamJsonRpc to find the registered IFruit formatter.
publiceventEventHandler<IFruit>? OnFruit;
The text was updated successfully, but these errors were encountered:
Repro steps:
Result: The following exception is thrown:
This is similar to #611; however, the differences are that in this bug the interface type (vs the concrete type) has a formatter and the
Union
attribute is not used. Plus, the exception is different.I'd expect that the interface in the event definition would be sufficient hint for StreamJsonRpc to find the registered
IFruit
formatter.The text was updated successfully, but these errors were encountered: