jellyfin/SocketHttpListener/ErrorEventArgs.cs

43 lines
1020 B
C#
Raw Normal View History

2016-11-11 14:55:12 -05:00
using System;
namespace SocketHttpListener
{
/// <summary>
/// Contains the event data associated with a <see cref="WebSocket.OnError"/> event.
/// </summary>
/// <remarks>
/// A <see cref="WebSocket.OnError"/> event occurs when the <see cref="WebSocket"/> gets an error.
/// If you would like to get the error message, you should access the <see cref="Message"/>
/// property.
/// </remarks>
public class ErrorEventArgs : EventArgs
{
#region Private Fields
2016-11-11 14:55:12 -05:00
private string _message;
2016-11-11 14:55:12 -05:00
#endregion
2016-11-11 14:55:12 -05:00
#region Internal Constructors
2016-11-11 14:55:12 -05:00
internal ErrorEventArgs(string message)
{
_message = message;
}
2016-11-11 14:55:12 -05:00
#endregion
2016-11-11 14:55:12 -05:00
#region Public Properties
2016-11-11 14:55:12 -05:00
/// <summary>
/// Gets the error message.
/// </summary>
/// <value>
/// A <see cref="string"/> that represents the error message.
/// </value>
public string Message => _message;
2016-11-11 14:55:12 -05:00
#endregion
}
2016-11-11 14:55:12 -05:00
}