Batch.Internal.UnlockModule.Restore C# (CSharp) Метод

Restore() публичный Метод

Restore previously unlocked features.
public Restore ( ) : void
Результат void
        public void Restore()
        {
            if ( RestoreSuccess == null )
            {
                Logger.Error(false, "Restore", "Cannot perform restore without anything listening to RestoreSuccess.");
                return;
            }

            if ( RestoreFailed == null )
            {
                Logger.Error(false, "Restore", "Cannot perform restore without anything listening to RestoreFailed.");
                return;
            }

            bridge.Call("restore", "");
        }