public void OnWinAuthAuthenticatorChanged(WinAuthAuthenticator sender, WinAuthAuthenticatorChangedEventArgs e) { if (OnConfigChanged != null) { OnConfigChanged(this, new ConfigChangedEventArgs("Authenticator", sender, e)); } }
/// <summary> /// Default constructor /// </summary> public ConfigChangedEventArgs(string propertyName, WinAuthAuthenticator authenticator = null, WinAuthAuthenticatorChangedEventArgs acargs = null) : base() { PropertyName = propertyName; Authenticator = authenticator; AuthenticatorChangedEventArgs = acargs; }