ParentFormClosingEventArgs
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;
}
}
}