コード例 #1
0
ファイル: IXConnection.cs プロジェクト: ThomasEcherer/elo
 /// <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
ファイル: IXAuthentication.cs プロジェクト: ThomasEcherer/elo
 public void removeListener(IXAuthenticationListener lsn)
 {
     listeners.Remove(lsn);
 }
コード例 #3
0
ファイル: IXConnection.cs プロジェクト: ThomasEcherer/elo
 /// <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
ファイル: IXAuthentication.cs プロジェクト: ThomasEcherer/elo
 public void addListener(IXAuthenticationListener lsn)
 {
     listeners.Add(lsn);
 }