File: System\Net\WebSockets\WebSocketMessageType.cs
Web Access
Project: src\src\libraries\System.Net.WebSockets\src\System.Net.WebSockets.csproj (System.Net.WebSockets)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.Net.WebSockets
{
    public enum WebSocketMessageType
    {
        Text = 0,
        Binary = 1,
        Close = 2
    }
}