System.Net.WebSockets.WebSocketHandle.CheckPlatformSupport C# (CSharp) Method

CheckPlatformSupport() public static method

public static CheckPlatformSupport ( ) : void
return void
        public static void CheckPlatformSupport()
        {
        }

Usage Example

示例#1
0
        public ClientWebSocket()
        {
            if (NetEventSource.IsEnabled)
            {
                NetEventSource.Enter(this);
            }
            WebSocketHandle.CheckPlatformSupport();

            _state   = (int)InternalState.Created;
            _options = new ClientWebSocketOptions();

            if (NetEventSource.IsEnabled)
            {
                NetEventSource.Exit(this);
            }
        }
All Usage Examples Of System.Net.WebSockets.WebSocketHandle::CheckPlatformSupport