IPWorks Cloud 2020 .NET Edition

Questions / Feedback?

UserList Event

This event fires once for each user returned when ListUsers or GetUserInfo is called.

Syntax

public event OnUserListHandler OnUserList;

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

public class SharefileUserListEventArgs : EventArgs {
  public string Id { get; }
  public string FirstName { get; }
  public string LastName { get; }
  public string Company { get; }
  public string Email { get; }
  public string CreationDate { get; }
}
Public Event OnUserList As OnUserListHandler

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

Public Class SharefileUserListEventArgs Inherits EventArgs
  Public ReadOnly Property Id As String
  Public ReadOnly Property FirstName As String
  Public ReadOnly Property LastName As String
  Public ReadOnly Property Company As String
  Public ReadOnly Property Email As String
  Public ReadOnly Property CreationDate As String
End Class

Remarks

This event fires once for each user returned when ListUsers or GetUserInfo is called. The users cannot be modified from this event. If the user does not have a specified company that parameter will be left as an empty string ("").

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