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