Пример #1
0
        /// <summary>
        /// Stops the client
        /// </summary>
        /// <returns>true or false depending on succes</returns>
        public bool StopClient()
        {
            //execute quit stuff
            bool check = false;

            check = IrcClient.StopClient();
            check = IrcClient.StopXDCCDownload();
            return(check);
        }
Пример #2
0
 /// <summary>
 ///returns true or false upon calling this method, for telling you if the downlaod has been stopped or not
 /// </summary>
 /// <returns></returns>
 public bool StopXDCCDownload()
 {
     return(IrcClient.StopXDCCDownload());
 }
Пример #3
0
 /// <summary>
 /// Stops the client
 /// </summary>
 /// <returns>true or false depending on succes</returns>
 internal void StopClient()
 {
     IrcClient.Dispose();
     IrcClient.StopXDCCDownload();
 }