BitServer.POP3connection.ok C# (CSharp) Method

ok() public method

public ok ( string Message ) : void
Message string
return void
        public void ok(string Message)
        {
            send("+OK " + Message);
        }

Usage Example

Example #1
0
 protected static void Psrv_POP3incomming(System.Net.Sockets.TcpClient c)
 {
     if (POP3 == null)
     {
         P3S               = new POP3state();
         P3S.passOK        = P3S.userOK = false;
         POP3              = new POP3connection(c);
         POP3.POP3command += new POP3commandHandler(POP3_POP3command);
         POP3.POP3dropped += new POP3droppedHandler(POP3_POP3dropped);
         POP3.ok("WAKE UP BITCH! I'M READY TO KICK ASS, AND IT BETTER BE IMPORTANT");
     }
     else
     {
         new POP3connection(c).err("Try again later you fool!", true);
     }
 }
All Usage Examples Of BitServer.POP3connection::ok