-
Notifications
You must be signed in to change notification settings - Fork 560
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IErrorHandler missing from nuget version 8.0.0 #5561
Comments
@mconnew @StephenBonikowsky @HongGit any clues? |
Transferred issue to the dotnet/wcf repo. @Pixel452, what's the scenario that you are using an IErrorHandler for? It's going to take a little while before new api's are available in a public build, and there might be an alternative way to achieve the same thing using existing public api's. |
I'm porting a .NET Framework WPF app to .NET and there is an implementation of AsyncCommand that uses IErrorHandler, given that at the moment I'm still evaluating and testing if all the needed libraries and code are portable to .NET, I removed this feature, if everything else works, I'll go back to this. So, I can wait. Thanks |
Hi @mconnew , I noticed there's IErrorHandler test case in the Framework test suite, where a CustomServiceBehavior implements IErrorHandler and is added to ServiceHost.Description.Behaviors for further functionality testing. However, in the scenario of callback service without a ServiceHost instance, I'm uncertain about applying the custom behavior to perform similar validation. It's possible I might be looking at the wrong test. If you could provide further guidance on this, I'd greatly appreciate it. Thank you! |
Create new .NET 8 class library project
Add System.ServiceModel.Primitives from nuget
IErrorHandler is missing from System.ServiceModel.Dispatcher namespace
Looking at the source code and the documentation, it should be there, but it's not, am I missing something?
The text was updated successfully, but these errors were encountered: