Beispiel #1
0
        /// <summary>
        /// Called when an interprocess frame is received.
        /// </summary>
        /// <param name="sender">Sender object.</param>
        /// <param name="interprocessFrame">Interprocess frame.</param>
        private void OnFrameReceived(object?sender, InterprocessFrame interprocessFrame)
        {
            var frame = ConfigureSystem(interprocessFrame);

            if (frame != null)
            {
                _interprocessStream.TrySend(frame);
            }
        }
Beispiel #2
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="input"></param>
 /// <returns></returns>
 private InterprocessFrame?ConfigureSystem(InterprocessFrame input)
 {
     // TODO: Implement logic for executing system commands.
     return(null);
 }