Exemple #1
0
        public override void Dispose(bool disposing)
        {
            base.Dispose(disposing);

            if (Instruction != null)
            {
                Instruction.Dispose();
                Instruction = null;
            }
        }
Exemple #2
0
 public override void Connect(string server, int port, bool ssl)
 {
     base.Connect(server, port, ssl);
     Instruction = new IMAPInstruction(providerType, streamWriter, streamReader);
 }