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
.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.
The text was updated successfully, but these errors were encountered:
@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 expected
Task<TResponse> InvokeBindingAsync<TRequest, TResponse>() which accepts a request and expects (and returns) an explicit response
Task<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.
The text was updated successfully, but these errors were encountered: