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
// TODO: Error for invoke or invokeasync call with more than one handler
581
+
// TODO: Error for no handler found for invoke or invokeasync call
582
+
// TODO: Error for calling sync invoke on async handler, tell them to use InvokeAsync instead
583
+
// TODO: Error for calling sync invoke on handler that has async middleware, tell them to use InvokeAsync instead
584
+
// TODO: Error for calling sync invoke on handler that returns tuple, tell them to use InvokeAsync instead because it needs to publish cascading messages
Title="Mixed Static and Instance Middleware Methods",
101
+
Message=$"Middleware '{classSymbol.Name}' has both static and instance methods. All middleware methods must be either static or instance methods consistently.",
Message=$"Middleware '{classSymbol.Name}' handles different message types. All middleware methods in the same class must handle the same message type.",
0 commit comments