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

ParentFormClosingEventArgs

public sealed class ParentFormClosingEventArgs : EventArgs
Represents the parent form closing event argument data. This class cannot be inherited.
using System; namespace Relativity.DataExchange.Process { [Serializable] public sealed class ParentFormClosingEventArgs : EventArgs { public Guid ProcessId { get; } public ParentFormClosingEventArgs(Guid processId) { ProcessId = processId; } } }