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
using (var client = RestService.For(Url))
{
// code here
}
this requires the Interface to be IDisposable which makes sense , but when you make It IDisposable, it asks for a Dispose() Method.. but it's an interface .... the code generation needs to generate the appropriate Dispose call when an interface inherits from IDisposable.
The text was updated successfully, but these errors were encountered:
using (var client = RestService.For(Url))
{
// code here
}
this requires the Interface to be IDisposable which makes sense , but when you make It IDisposable, it asks for a Dispose() Method.. but it's an interface .... the code generation needs to generate the appropriate Dispose call when an interface inherits from IDisposable.
The text was updated successfully, but these errors were encountered: