예제 #1
0
파일: AwsToArm.cs 프로젝트: rickrain/migAz
        private void authenticate()
        {
            AuthenticationForm authForm = new AuthenticationForm();

            accessKeyID = authForm.GetAWSAccessKeyID();
            secretKeyID = authForm.GetAWSSecretKeyID();
        }
예제 #2
0
        private void authenticate()
        {
            AuthenticationForm authForm = new AuthenticationForm();

            if (authForm.ShowDialog(this) != DialogResult.OK)
            {
                this.Close();
            }

            accessKeyID = authForm.GetAWSAccessKeyID();
            secretKeyID = authForm.GetAWSSecretKeyID();
        }