public void SetSync(string DeviceId, uint BankId, string FileUri, bool Mute, bool Persist) { AsyncActionSet action = CreateAsyncActionSet(); object result = action.SetBeginSync(DeviceId, BankId, FileUri, Mute, Persist); action.SetEnd(result); }
// Synchronous actions public void SetSync(string Id, string UserName, byte[] Password) { AsyncActionSet action = CreateAsyncActionSet(); object result = action.SetBeginSync(Id, UserName, Password); action.SetEnd(result); }