// Token: 0x060002FA RID: 762 RVA: 0x0001ADAC File Offset: 0x00018FAC
 private void CancelWipe(DeviceIdentity deviceIdentity)
 {
     using (SyncStateStorage syncStateStorage = SyncStateStorage.Bind(this.userContext.MailboxSession, deviceIdentity, null))
     {
         if (syncStateStorage == null)
         {
             throw new OwaInvalidRequestException("Attempting to cancel wipe on device that does not exist.");
         }
         DeviceInfo.CancelRemoteWipe(syncStateStorage);
     }
 }