We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We will need an abstraction for a response from a client service call in order to be able to replace this via plugins.
Methods that need to be provided include (not exhaustive)
The text was updated successfully, but these errors were encountered:
So I think maybe this could something like:
public abstract class ClientResponse { public CSharpType Type {get;} public CSharpType ExceptionType {get;} public CSharpType ErrorVariantType {get;} public CSharpType NullableVariantType {get;} } public static class ClientResponseSnippets { public ValueExpression GetRawResponse(this ScopeApi<ClientResponse> response) {} // etc }
so that we separate this thing into two parts: data (containing the types we use), and actions (containing the methods/properties we could call)
Sorry, something went wrong.
Response abstraction (#4438)
cec638d
Resolves #3693
Response abstraction (microsoft#4438)
ab64747
Resolves microsoft#3693
live1206
Successfully merging a pull request may close this issue.
We will need an abstraction for a response from a client service call in order to be able to replace this via plugins.
Methods that need to be provided include (not exhaustive)
The text was updated successfully, but these errors were encountered: