예제 #1
0
 /// <summary>
 /// Remove callback interface for authentication. Remove callback interface for authentication.
 /// </summary>
 /// <param name="lsn">Listener object to be called, when re-login is performed.</param>
 public void removeAuthenticationListener(IXAuthenticationListener lsn)
 {
     auth.removeListener(lsn);
 }
예제 #2
0
 public void removeListener(IXAuthenticationListener lsn)
 {
     listeners.Remove(lsn);
 }
예제 #3
0
 /// <summary>
 /// Add callback interface that is called if authentication is renewed.
 /// </summary>
 /// <param name="lsn">Listener object to be called, when re-login is performed.</param>
 public void addAuthenticationListener(IXAuthenticationListener lsn)
 {
     auth.addListener(lsn);
 }
예제 #4
0
 public void addListener(IXAuthenticationListener lsn)
 {
     listeners.Add(lsn);
 }