<PackageReference Include="Relativity.Server.Import.SDK" Version="2.9.2" />

StatusBarEventArgs

public sealed class StatusBarEventArgs : EventArgs
Represents the status bar event argument data. This class cannot be inherited.
using System; namespace Relativity.DataExchange.Process { [Serializable] public sealed class StatusBarEventArgs : EventArgs { public string Message { get; } public string PopupText { get; } public StatusBarEventArgs(string message, string popupText) { Message = message; PopupText = popupText; } } }