private void btnPull_Click(object sender, EventArgs e) { string host = txtHost.Text.Trim(); string database = txtDatabase.Text.Trim(); string appKey = txtAppKey.Text.Trim(); string key = KeyBuilder.Build(host, database, appKey); MessageBox.Show(SecurityClient.Get(key)); }