AcManager.Pages.Dialogs.AppKeyDialog.RequestNewKeyUsingEmail C# (CSharp) Метод

RequestNewKeyUsingEmail() публичный статический Метод

public static RequestNewKeyUsingEmail ( ) : void
Результат void
        public static void RequestNewKeyUsingEmail() {
            var key = ValuesStorage.GetEncryptedString(AppKeyRevokedKey);
            if (key == null) return;

            Process.Start($"mailto:[email protected]?subject={Uri.EscapeDataString(@"My Key Is Got Revoked")}&body={Uri.EscapeDataString(@"Key: " + key)}");
        }