Open qxecutioner opened 5 months ago
@qxecutioner Can you be more specific about what you've tried, and which method you're using? The DaprClient
has several overloads of InvokeBindingAsync()
:
Task InvokeBindingAsync<TRequest>()
which accepts a request but does not return a response (for bindings where no response is expectedTask<TResponse> InvokeBindingAsync<TRequest, TResponse>()
which accepts a request and expects (and returns) an explicit responseTask<BindingResponse> InvokeBindingAsync(BindingRequest request)
which accepts a generic request and expects (and returns) a generic response
In what area(s)?
/area runtime
.Net implementation of InvokeBinding doesn't return any result. This is quite needed when invoking binding for blob storage to read back response having blob uri.