using System; using Inspectron.HawkEye.RTSP.Messages; namespace Inspectron.HawkEye.RTSP { /// /// Event args containing information for message events. /// public class RtspChunkEventArgs :EventArgs { /// /// Initializes a new instance of the class. /// /// A message. public RtspChunkEventArgs(RtspChunk aMessage) { Message = aMessage; } /// /// Gets or sets the message. /// /// The message. public RtspChunk Message { get; set; } } }