/// <summary> /// Starts sending STLS command to POP3 server. /// </summary> /// <param name="op">Asynchronous operation.</param> /// <returns>Returns true if aynchronous operation is pending (The <see cref="StlsAsyncOP.CompletedAsync"/> event is raised upon completion of the operation). /// Returns false if operation completed synchronously.</returns> /// <exception cref="ObjectDisposedException">Is raised when this object is disposed and and this method is accessed.</exception> /// <exception cref="InvalidOperationException">Is raised when POP3 client is not in valid state. For example 'not connected'.</exception> /// <exception cref="ArgumentNullException">Is raised when <b>op</b> is null reference.</exception> public bool StlsAsync(StlsAsyncOP op) { if(this.IsDisposed){ throw new ObjectDisposedException(this.GetType().Name); } if(!this.IsConnected){ throw new InvalidOperationException("You must connect first."); } if(this.IsAuthenticated){ throw new InvalidOperationException("The STLS command is only valid in non-authenticated state."); } if(op == null){ throw new ArgumentNullException("op"); } if(op.State != AsyncOP_State.WaitingForStart){ throw new ArgumentException("Invalid argument 'op' state, 'op' must be in 'AsyncOP_State.WaitingForStart' state.","op"); } return op.Start(this); }
/// <summary> /// Executes STLS command. /// </summary> /// <param name="certCallback">SSL server certificate validation callback. Value null means any certificate is accepted.</param> /// <exception cref="ObjectDisposedException">Is raised when this object is disposed and this method is accessed.</exception> /// <exception cref="InvalidOperationException">Is raised when POP3 client is not connected or is authenticated or is already secure connection.</exception> /// <exception cref="POP3_ClientException">Is raised when POP3 server returns error.</exception> public void Stls(RemoteCertificateValidationCallback certCallback) { if(this.IsDisposed){ throw new ObjectDisposedException(this.GetType().Name); } if(!this.IsConnected){ throw new InvalidOperationException("You must connect first."); } if(this.IsAuthenticated){ throw new InvalidOperationException("The STLS command is only valid in non-authenticated state."); } if(this.IsSecureConnection){ throw new InvalidOperationException("Connection is already secure."); } using(StlsAsyncOP op = new StlsAsyncOP(certCallback)){ using(ManualResetEvent wait = new ManualResetEvent(false)){ op.CompletedAsync += delegate(object s1,EventArgs<StlsAsyncOP> e1){ wait.Set(); }; if(!this.StlsAsync(op)){ wait.Set(); } wait.WaitOne(); wait.Close(); if(op.Error != null){ throw op.Error; } } } }