IPWorks Auth 2020 .NET Edition

Questions / Feedback?

UserList Event

Fired once for each user entry returned.

Syntax

public event OnUserListHandler OnUserList;

public delegate void OnUserListHandler(object sender, ActivedirectoryUserListEventArgs e);

public class ActivedirectoryUserListEventArgs : EventArgs {
  public string name { get; }
  public string description { get; }
  public string lastLogon { get; }
  public string memberOf { get; }
  public string dn { get; }
}
Public Event OnUserList As OnUserListHandler

Public Delegate Sub OnUserListHandler(sender As Object, e As ActivedirectoryUserListEventArgs)

Public Class ActivedirectoryUserListEventArgs Inherits EventArgs
  Public ReadOnly Property name As String
  Public ReadOnly Property description As String
  Public ReadOnly Property lastLogon As String
  Public ReadOnly Property memberOf As String
  Public ReadOnly Property dn As String
End Class

Remarks

This event is fired once for each user entry returned when the ListGroupMembers method is called.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Auth 2020 .NET Edition - Version 20.0 [Build 8155]