m.Http.Backend.Tcp.WebSocketSession.SendText C# (CSharp) Method

SendText() public method

public SendText ( string text ) : void
text string
return void
        public void SendText(string text)
        {
            if (closed)
            {
                throw new WebSocketException("Session already closed");
            }

            Write(OpCode.Text, Encoding.UTF8.GetBytes(text));
        }