CategoryList Event

Fired when an attachment is retrieved from the server.

Syntax

public event OnCategoryListHandler OnCategoryList;

public delegate void OnCategoryListHandler(object sender, Office365CategoryListEventArgs e);

public class Office365CategoryListEventArgs : EventArgs {
  public string Id { get; }
  public string DisplayName { get; }
  public string Color { get; }
}
Public Event OnCategoryList As OnCategoryListHandler

Public Delegate Sub OnCategoryListHandler(sender As Object, e As Office365CategoryListEventArgs)

Public Class Office365CategoryListEventArgs Inherits EventArgs
  Public ReadOnly Property Id As String
  Public ReadOnly Property DisplayName As String
  Public ReadOnly Property Color As String
End Class

Remarks

The CategoryList event is fired for each attachment retrieved from the server when ListCategories is called.

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