AcManager.Pages.Dialogs.AppKeyDialog.RequestNewKeyUsingEmail C# (CSharp) Méthode

RequestNewKeyUsingEmail() public static méthode

public static RequestNewKeyUsingEmail ( ) : void
Résultat 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)}");
        }