[Modify] Remove it

This commit is contained in:
sta 2021-12-04 21:52:14 +09:00
parent f806c4f6e4
commit 4f14f34d67

View File

@ -58,29 +58,6 @@ namespace WebSocketSharp
#endregion
#region Internal Fields
/// <summary>
/// Represents the ping frame without the payload data as an array of
/// <see cref="byte"/>.
/// </summary>
/// <remarks>
/// The value of this field is created from a non masked ping frame,
/// so it can only be used to send a ping from the server.
/// </remarks>
internal static readonly byte[] EmptyPingBytes;
#endregion
#region Static Constructor
static WebSocketFrame ()
{
EmptyPingBytes = CreatePingFrame (false).ToArray ();
}
#endregion
#region Private Constructors
private WebSocketFrame ()