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