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
{{ message }}
This repository has been archived by the owner on Mar 2, 2020. It is now read-only.
The sugarsoap login() and logout() meathods are called in the constructor (login) and during disposal (logout) using the IDisposable interface. It should be called in a using block so the session is properly cleaned up.
using (var cw = new CandyWrapper("url", "username", "password"))
{
var entry = cw.GetEntry(SugarModules.Accounts, "SomeAccountIdGuid");
}