IPWorks Auth 2020 .NET Edition

Questions / Feedback?

ComputerList Event

Fired for each computer entry returned.

Syntax

public event OnComputerListHandler OnComputerList;

public delegate void OnComputerListHandler(object sender, LdapComputerListEventArgs e);

public class LdapComputerListEventArgs : EventArgs {
  public string name { get; }
  public string operatingSystem { get; }
  public string lastLogon { get; }
  public int logonCount { get; }
  public string dn { get; }
}
Public Event OnComputerList As OnComputerListHandler

Public Delegate Sub OnComputerListHandler(sender As Object, e As LdapComputerListEventArgs)

Public Class LdapComputerListEventArgs Inherits EventArgs
  Public ReadOnly Property name As String
  Public ReadOnly Property operatingSystem As String
  Public ReadOnly Property lastLogon As String
  Public ReadOnly Property logonCount As Integer
  Public ReadOnly Property dn As String
End Class

Remarks

This event is fired once for each computer returned when the ListComputers method is called.

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