Exemplo n.º 1
0
        private void saveChanges(string name, string accessKeyId, string secretKey)
        {
            // Raise an Edited event with the new values
            ProfileEventArgs args = new ProfileEventArgs(name, accessKeyId, secretKey);

            ProfileEdited?.Invoke(this, args);
        }
Exemplo n.º 2
0
 /// <summary>
 /// Raises a ProfileEdited event.
 /// </summary>
 private void OnProfileEdited()
 {
     ProfileEdited?.Invoke(this, EventArgs.Empty);
 }