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
if(serializerTypeis not null&&!typeof(IMessageSerializer).IsAssignableFrom(serializerType))
252
+
if(serializerTypeis not null&&!typeof(IMessageSerializerProvider).IsAssignableFrom(serializerType))
253
253
{
254
-
thrownewConfigurationMessageBusException($"The serializer type {serializerType.FullName} does not implement the interface {nameof(IMessageSerializer)}");
254
+
thrownewConfigurationMessageBusException($"The serializer type {serializerType.FullName} does not implement the interface {nameof(IMessageSerializerProvider)}");
??thrownewConfigurationMessageBusException($"The bus {settings.Name} could not resolve the required message serializer type {settings.SerializerType.Name} from {nameof(serviceProvider)}");
??thrownewConfigurationMessageBusException($"The bus {settings.Name} could not resolve the required message serializer type {settings.SerializerType.Name} from {nameof(serviceProvider)}");
??thrownewConfigurationMessageBusException($"The bus {settings.Name} could not resolve the required {nameof(IMessageSerializerProvider)} of type {settings.SerializerType.Name} from {nameof(serviceProvider)}");
0 commit comments