hawkeye camera support(not tested)
This commit is contained in:
27
framework/Inspectron.HawkEye/RTSP/RTSPMessageEventArgs.cs
Normal file
27
framework/Inspectron.HawkEye/RTSP/RTSPMessageEventArgs.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using Inspectron.HawkEye.RTSP.Messages;
|
||||
|
||||
namespace Inspectron.HawkEye.RTSP
|
||||
{
|
||||
/// <summary>
|
||||
/// Event args containing information for message events.
|
||||
/// </summary>
|
||||
public class RtspChunkEventArgs :EventArgs
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="RtspChunkEventArgs"/> class.
|
||||
/// </summary>
|
||||
/// <param name="aMessage">A message.</param>
|
||||
public RtspChunkEventArgs(RtspChunk aMessage)
|
||||
{
|
||||
Message = aMessage;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the message.
|
||||
/// </summary>
|
||||
/// <value>The message.</value>
|
||||
public RtspChunk Message { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user