ALE.Http.ListenerResponse.Write C# (CSharp) Method

Write() public method

public Write ( byte binary ) : IResponse
binary byte
return IResponse
        public IResponse Write(byte[] binary)
        {
            OutputStream.Write(binary, 0, binary.Length);
            return this;
        }

Same methods

ListenerResponse::Write ( string text ) : IResponse