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
CallAsync now infers the response type for a request instead of just returning the OCICommand base type.
CallAllAsync now returns a BatchResult object which can be iterated on like previously, but also has a Get method for retrieving the response for a specific request.
Exceptions occuring within TcpTransport are no longer caught and wrapped in BadResponseException.
Removed
All of the per-request methods have been removed in favor of using CallAsync for all requests.
Added
Added interface IOcipClient which OcipClient implements.