ActiveUp.Net.Mail.Mailbox.Delete C# (CSharp) 메소드

Delete() 공개 메소드

Deletes the mailbox.
public Delete ( ) : string
리턴 string
		public string Delete()
		{
			try
			{
				return this.SourceClient.DeleteMailbox(this.Name);
			}
			catch(System.Net.Sockets.SocketException)
			{
				throw new ActiveUp.Net.Mail.Imap4Exception("Delete failed.\nThe mailbox' source client wasn't connected anymore.");
			}
		}