JackSharp.Events.PortRegistrationEventArgs.PortRegistrationEventArgs C# (CSharp) Method

PortRegistrationEventArgs() public method

Initializes a new instance of the JackSharp.Events.PortRegistrationEventArgs class.
public PortRegistrationEventArgs ( PortReference port, ChangeType changeType ) : System
port JackSharp.Ports.PortReference Port.
changeType ChangeType Change type.
return System
        public PortRegistrationEventArgs(PortReference port, ChangeType changeType)
        {
            Port = port;
            ChangeType = changeType;
        }
PortRegistrationEventArgs