Exemplo n.º 1
0
 /// <summary>
 /// Reads an IrcNumericResponce from the stream.
 /// </summary>
 /// <returns></returns>
 public IrcNumericResponce ReadResponce()
 {
     IrcNumericResponce responce = new IrcNumericResponce();
     string line = _reader.ReadLine();
     responce.Parse(line);
     return responce;
 }
Exemplo n.º 2
0
        /// <summary>
        /// Reads an IrcNumericResponce from the stream.
        /// </summary>
        /// <returns></returns>
        public IrcNumericResponce ReadResponce()
        {
            IrcNumericResponce Response = new IrcNumericResponce();
            string             line     = _reader.ReadLine();

            Response.Parse(line);
            return(Response);
        }
Exemplo n.º 3
0
 /// <summary>
 /// Writes an <see cref="IRCSharp.IrcNumericResponce"/> to the stream.
 /// </summary>
 public void Write(IrcNumericResponce Response)
 {
     _writer.WriteLine(Response);
 }
Exemplo n.º 4
0
 /// <summary>
 /// Writes an <see cref="IRCSharp.IrcNumericResponce"/> to the stream.
 /// </summary>
 public void Write(IrcNumericResponce responce)
 {
     _writer.WriteLine(responce);
 }
Exemplo n.º 5
0
 /// <summary>
 /// Writes an <see cref="IRCSharp.IrcNumericResponce"/> to the stream.
 /// </summary>
 public void Write(IrcNumericResponce responce)
 {
     _writer.WriteLine(responce);
 }