Gablarski.Clients.Input.RecordingEventArgs.RecordingEventArgs C# (CSharp) Method

RecordingEventArgs() public method

Initializes a new instance of the RecordingEventArgs class.
public RecordingEventArgs ( IInputProvider provider, string recordedInput ) : System
provider IInputProvider The provider that recorded the input.
recordedInput string The recorded input.
return System
        public RecordingEventArgs(IInputProvider provider, string recordedInput)
        {
            Provider = provider;
            RecordedInput = recordedInput;
        }
RecordingEventArgs