<?xml version="1.0" encoding="UTF-8"?>
<doc>
  <assembly>
    <name>GemBox.Email</name>
  </assembly>
  <members>
    <!-- Badly formed XML comment ignored for member "M:Polyfills.Polyfill.ToHashSet``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})" -->
    <member name="T:GemBox.Email.Attachment">
      <summary>
            Represents a mail message attachment.
            </summary>
    </member>
    <member name="M:GemBox.Email.Attachment.#ctor(GemBox.Email.Mime.MediaType,System.Byte[])">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.Attachment"/> class with specified content type and content.
            </summary>
      <param name="contentType">The Content-Type header value.</param>
      <param name="content">The content.</param>
      <exception cref="T:System.ArgumentNullException">
            Content is null.
            </exception>
    </member>
    <member name="M:GemBox.Email.Attachment.#ctor(GemBox.Email.Mime.MediaType,System.IO.Stream)">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.Attachment"/> class with specified content type and content.
            </summary>
      <param name="contentType">The Content-Type header value.</param>
      <param name="content">The content.</param>
      <exception cref="T:System.ArgumentException">
            Content is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Attachment.#ctor(System.String)">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.Attachment"/> class from specified file.
            </summary>
      <param name="filePath">A relative or absolute path for the file.</param>
      <exception cref="T:System.ArgumentException">
            File path is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Attachment.#ctor(GemBox.Email.Mime.MediaType,System.IO.Stream,System.String)">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.Attachment"/> class with specified content type, content and file name.
            </summary>
      <param name="contentType">The Content-Type header value.</param>
      <param name="content">The content.</param>
      <param name="fileName">File name.</param>
      <exception cref="T:System.ArgumentException">
            Content is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Attachment.#ctor(System.IO.Stream,System.String)">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.Attachment"/> class with specified content and file name.
            </summary>
      <param name="content">The content.</param>
      <param name="fileName">File name.</param>
      <exception cref="T:System.ArgumentException">
            Content is null or empty.
            </exception>
    </member>
    <member name="P:GemBox.Email.Attachment.MimeEntity">
      <summary>
            Gets the underlying MIME entity.
            </summary>
      <value>
            The underlying MIME entity.
            </value>
    </member>
    <member name="P:GemBox.Email.Attachment.DispositionType">
      <summary>
            Gets the attachment content disposition type.
            </summary>
      <value>
            The attachment content disposition type.
            </value>
      <exception cref="T:System.ArgumentException">
            Content disposition type cannot be set to <see cref="F:GemBox.Email.Mime.ContentDispositionType.Unknown"/>.
            </exception>
    </member>
    <member name="P:GemBox.Email.Attachment.ContentId">
      <summary>
            Gets or sets the attachment content id.
            </summary>
      <value>
            The attachment content id.
            </value>
    </member>
    <member name="P:GemBox.Email.Attachment.FileName">
      <summary>
            Gets the file name.
            </summary>
      <value>
            The file name, if defined; otherwise, null.
            </value>
    </member>
    <member name="P:GemBox.Email.Attachment.Size">
      <summary>
            Gets the data size.
            </summary>
      <value>
            The data size, if defined; otherwise, null.
            </value>
    </member>
    <member name="P:GemBox.Email.Attachment.Data">
      <summary>
            Gets the attachment data stream.
            </summary>
      <value>
            The attachment data stream.
            </value>
    </member>
    <member name="M:GemBox.Email.Attachment.Save(System.String)">
      <summary>
            Saves the attachment into the specified path.
            </summary>
      <param name="path">The path to which to save the attachment.</param>
    </member>
    <member name="M:GemBox.Email.Attachment.Save(System.IO.Stream)">
      <summary>
            Saves the attachment into the specified stream.
            </summary>
      <param name="stream">The stream in which to save the attachment.</param>
    </member>
    <member name="M:GemBox.Email.Attachment.GetTaggedProperty(GemBox.Email.Msg.Properties.PropertyTag)">
      <summary>
            Returns the value stored into a specific tagged property. Works only for messages loaded from MSG files.
            </summary>
      <param name="tag">The ID of the tag from which to retrieve the value.</param>
      <returns>An <see cref="T:System.Object"/> containing the value of the specified tag or <see langword="null"/> if the property was not found. </returns>
    </member>
    <member name="M:GemBox.Email.Attachment.SetTaggedProperty(GemBox.Email.Msg.Properties.PropertyTag,System.Object)">
      <summary>
            Explicitly sets the value of a tagged property. Works only for messages that will be saved to a MSG file.
            Items set with this method will be written when saving the message to .msg, overwriting
            any other properties normally set by other members, which can cause errors. <br/>
            For example, setting <see cref="F:GemBox.Email.Msg.Properties.PropertyTag.AttachDataBinary"/> will override the attachment's binary content regardless of what is on <see cref="P:GemBox.Email.Attachment.Data"/>.
            </summary>
      <param name="tag">The ID of the tag to set.</param>
      <param name="value">The value of the tagged property.</param>
    </member>
    <member name="T:GemBox.Email.AttachmentCollection">
      <summary>
            Represents a collection of <see cref="T:GemBox.Email.MailMessage"/> attachments.
            </summary>
    </member>
    <member name="P:GemBox.Email.AttachmentCollection.System#Collections#Generic#ICollection{GemBox#Email#Attachment}#IsReadOnly">
      <exclude/>
    </member>
    <member name="P:GemBox.Email.AttachmentCollection.Count">
      <summary>
            Gets the count.
            </summary>
      <value>
            The count.
            </value>
    </member>
    <member name="P:GemBox.Email.AttachmentCollection.Item(System.Int32)">
      <summary>
            Gets the <see cref="T:GemBox.Email.Attachment"/> at the specified index.
            </summary>
      <value>
            The <see cref="T:GemBox.Email.Attachment"/>.
            </value>
      <param name="index">The index.</param>
      <returns>
            The <see cref="T:GemBox.Email.Attachment"/> at the specified index.
            </returns>
    </member>
    <member name="M:GemBox.Email.AttachmentCollection.System#Collections#IEnumerable#GetEnumerator">
      <exclude/>
    </member>
    <member name="M:GemBox.Email.AttachmentCollection.System#Collections#Generic#IEnumerable{GemBox#Email#Attachment}#GetEnumerator">
      <exclude/>
    </member>
    <member name="M:GemBox.Email.AttachmentCollection.Contains(GemBox.Email.Attachment)">
      <summary>
            Determines whether this <see cref="T:GemBox.Email.AttachmentCollection"/> contains the specified <see cref="T:GemBox.Email.Attachment"/> item.
            </summary>
      <param name="item">The <see cref="T:GemBox.Email.Attachment"/> item.</param>
      <returns>
        <c>True</c> if <see cref="T:GemBox.Email.Attachment"/> item is found; otherwise, <c>false</c>.
            </returns>
    </member>
    <member name="M:GemBox.Email.AttachmentCollection.AddInline(GemBox.Email.Attachment)">
      <summary>
            Adds the specified <see cref="T:GemBox.Email.Attachment"/> item as an inline entity.
            </summary>
      <param name="item">The <see cref="T:GemBox.Email.Attachment"/> item.</param>
      <exception cref="T:System.ArgumentNullException">
            Item is null.
            </exception>
      <exception cref="T:System.ArgumentException">
            Collection already contains <see cref="T:GemBox.Email.Attachment"/> item.
            </exception>
    </member>
    <member name="M:GemBox.Email.AttachmentCollection.Add(GemBox.Email.Attachment)">
      <summary>
            Adds the specified <see cref="T:GemBox.Email.Attachment"/> item.
            </summary>
      <param name="item">The <see cref="T:GemBox.Email.Attachment"/> item.</param>
      <exception cref="T:System.ArgumentNullException">
            Item is null.
            </exception>
      <exception cref="T:System.ArgumentException">
            Collection already contains <see cref="T:GemBox.Email.Attachment"/> item.
            </exception>
    </member>
    <member name="M:GemBox.Email.AttachmentCollection.Clear">
      <summary>
            Removes all the items from this <see cref="T:GemBox.Email.AttachmentCollection"/></summary>
    </member>
    <member name="M:GemBox.Email.AttachmentCollection.Remove(GemBox.Email.Attachment)">
      <summary>
            Removes the specified <see cref="T:GemBox.Email.Attachment"/> item.
            </summary>
      <param name="item">The <see cref="T:GemBox.Email.Attachment"/> item.</param>
      <returns>
        <c>True</c> if item is successfully removed; otherwise, <c>false</c>.
            </returns>
    </member>
    <member name="M:GemBox.Email.AttachmentCollection.CopyTo(GemBox.Email.Attachment[],System.Int32)">
      <summary>
            Copies this <see cref="T:GemBox.Email.AttachmentCollection"/> or a portion of it to an array.
            </summary>
      <param name="array">The one-dimensional <see cref="T:GemBox.Email.Attachment"/> array that is the destination of the items copied from this <see cref="T:GemBox.Email.AttachmentCollection"/>.</param>
      <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
    </member>
    <member name="T:GemBox.Email.Calendar.Calendar">
      <summary>
            Represents a calendar
            </summary>
    </member>
    <member name="M:GemBox.Email.Calendar.Calendar.#ctor">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.Calendar.Calendar"/> class.
            </summary>
    </member>
    <member name="P:GemBox.Email.Calendar.Calendar.Method">
      <summary>
            Gets or sets the calendar method.
            </summary>
      <value>
            Method which specifies what is the calendar used for.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Calendar.Tasks">
      <summary>
            List of all Tasks
            </summary>
    </member>
    <member name="P:GemBox.Email.Calendar.Calendar.Events">
      <summary>
            List of all events
            </summary>
    </member>
    <member name="M:GemBox.Email.Calendar.Calendar.Save(System.String)">
      <summary>
            Saves the calendar to a file.
            </summary>
      <param name="filePath">A relative or absolute path for the file where calendar will be saved.</param>
      <exception cref="T:System.ArgumentException">
            File path is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Calendar.Calendar.Save(System.String,GemBox.Email.Calendar.CalendarFormat)">
      <summary>
            Saves the calendar to a file.
            </summary>
      <param name="filePath">A relative or absolute path for the file where calendar will be saved.</param>
      <param name="format">The calendar format.</param>
      <exception cref="T:System.ArgumentException">
            File path is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Calendar.Calendar.Save(System.IO.Stream,GemBox.Email.Calendar.CalendarFormat)">
      <summary>
            Saves the calendar to a stream.
            </summary>
      <param name="stream">The stream to save the calendar to.</param>
      <param name="format">The message format.</param>
      <exception cref="T:System.ArgumentNullException">
            Stream is null.
            </exception>
      <exception cref="T:System.ArgumentException">
            Unknown calendar format.
            </exception>
    </member>
    <member name="M:GemBox.Email.Calendar.Calendar.Load(System.String)">
      <summary>
            Loads the calendar from the specified file.
            </summary>
      <param name="filePath">A relative or absolute path to the file.</param>
      <returns>
        <see cref="T:GemBox.Email.Calendar.Calendar"/> instance.
            </returns>
      <exception cref="T:System.ArgumentException">
            File path is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Calendar.Calendar.Load(System.String,GemBox.Email.Calendar.CalendarFormat)">
      <summary>
            Loads the message from the specified file.
            </summary>
      <param name="filePath">A relative or absolute path to the file.</param>
      <param name="format">The calendar format.</param>
      <returns>
        <see cref="T:GemBox.Email.Calendar.Calendar"/> instance.
            </returns>
      <exception cref="T:System.ArgumentException">
            File path is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Calendar.Calendar.Load(System.IO.Stream,GemBox.Email.Calendar.CalendarFormat)">
      <summary>
            Loads the calendar from the specified stream.
            </summary>
      <param name="stream">The stream from which the calendar will be loaded.</param>
      <param name="format">The calendar format.</param>
      <returns>
        <see cref="T:GemBox.Email.Calendar.Calendar"/> instance.
            </returns>
      <exception cref="T:System.ArgumentNullException">
            Stream is null.
            </exception>
      <exception cref="T:System.ArgumentException">
            Unknown calendar format.
            </exception>
    </member>
    <member name="T:GemBox.Email.Calendar.CalendarCollection">
      <summary>
            Represents a collection of <see cref="T:GemBox.Email.Calendar.Calendar"/> elements.
            </summary>
    </member>
    <member name="P:GemBox.Email.Calendar.CalendarCollection.Count">
      <summary>
            Gets the number of elements contained in the <see cref="T:GemBox.Email.Calendar.CalendarCollection"/>.
            </summary>
      <value>
            The number of elements contained in the <see cref="T:GemBox.Email.Calendar.CalendarCollection"/>.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.CalendarCollection.IsReadOnly">
      <summary>
            Gets a value indicating whether the <see cref="T:GemBox.Email.Calendar.CalendarCollection"/> is read-only.
            </summary>
      <value>
        <c>true</c> if the <see cref="T:GemBox.Email.Calendar.CalendarCollection"/> is read-only; otherwise, <c>false</c>.
            </value>
    </member>
    <member name="M:GemBox.Email.Calendar.CalendarCollection.GetEnumerator">
      <summary>
            Returns an enumerator that iterates through the <see cref="T:GemBox.Email.Calendar.CalendarCollection"/>.
            </summary>
      <returns>
            An enumerator for the <see cref="T:GemBox.Email.Calendar.CalendarCollection"/>.
            </returns>
    </member>
    <member name="M:GemBox.Email.Calendar.CalendarCollection.Add(GemBox.Email.Calendar.Calendar)">
      <summary>
            Adds an element to the end of the <see cref="T:GemBox.Email.Calendar.CalendarCollection"/>.
            </summary>
      <param name="item">The element to be added to the end of the <see cref="T:GemBox.Email.Calendar.CalendarCollection"/>.</param>
    </member>
    <member name="M:GemBox.Email.Calendar.CalendarCollection.Add(GemBox.Email.Calendar.Calendar,System.String)">
      <summary>
            Adds an element to the end of the <see cref="T:GemBox.Email.Calendar.CalendarCollection"/>.
            </summary>
      <param name="item">The element to be added to the end of the <see cref="T:GemBox.Email.Calendar.CalendarCollection"/>.</param>
      <param name="fileName">The attachment's file name.</param>
    </member>
    <member name="M:GemBox.Email.Calendar.CalendarCollection.Clear">
      <summary>
            Removes all elements from the <see cref="T:GemBox.Email.Calendar.CalendarCollection"/>.
            </summary>
    </member>
    <member name="M:GemBox.Email.Calendar.CalendarCollection.Contains(GemBox.Email.Calendar.Calendar)">
      <summary>
            Determines whether this <see cref="T:GemBox.Email.Calendar.CalendarCollection"/> contains the specified <see cref="T:GemBox.Email.Calendar.Calendar"/> item.
            Returns true even if item has changed and is not synchronized with this <see cref="T:GemBox.Email.Calendar.CalendarCollection"/>.
            </summary>
      <param name="item">The <see cref="T:GemBox.Email.Calendar.Calendar"/> item.</param>
      <returns>
        <c>True</c> if <see cref="T:GemBox.Email.Calendar.Calendar"/> item is found; otherwise, <c>false</c>.
            </returns>
    </member>
    <member name="M:GemBox.Email.Calendar.CalendarCollection.CopyTo(GemBox.Email.Calendar.Calendar[],System.Int32)">
      <summary>
            Copies the entire <see cref="T:GemBox.Email.Calendar.CalendarCollection"/> to a compatible one-dimensional array, starting at the specified index of the target array.
            </summary>
      <param name="array">The one-dimensional array that is the destination of the elements copied from <see cref="T:GemBox.Email.Calendar.CalendarCollection"/>.</param>
      <param name="arrayIndex">The zero-based index in <paramref name="array"/> at which copying begins.</param>
    </member>
    <member name="M:GemBox.Email.Calendar.CalendarCollection.Remove(GemBox.Email.Calendar.Calendar)">
      <summary>
            Removes the first occurrence of a specific element from the <see cref="T:GemBox.Email.Calendar.CalendarCollection"/>.
            </summary>
      <param name="item">The element to remove from the <see cref="T:GemBox.Email.Calendar.CalendarCollection"/>.</param>
      <returns>
        <c>true</c> if element is successfully removed; otherwise, <c>false</c>. This method also returns <c>false</c> if item was not found in the <see cref="T:GemBox.Email.Calendar.CalendarCollection"/>.
            </returns>
    </member>
    <member name="T:GemBox.Email.Calendar.CalendarFormat">
      <summary>
            An enumeration of supported <see cref="T:GemBox.Email.Calendar.Calendar"/> formats.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.CalendarFormat.Ical">
      <summary>
            The iCalendar format.
            </summary>
    </member>
    <member name="T:GemBox.Email.Calendar.CalendarMethod">
      <summary>
            An enumeration of possible calendar methods that specify what the calendar is used for.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.CalendarMethod.Publish">
      <summary>
            The calendar is used to publish its events and tasks.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.CalendarMethod.Request">
      <summary>
            The calendar is used to represent a request, for example, an invitation to an event.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.CalendarMethod.Reply">
      <summary>
            The calendar is used to respond to a request.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.CalendarMethod.Add">
      <summary>
            The calendar is used by the organizer to add additional information to existing events or tasks.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.CalendarMethod.Cancel">
      <summary>
            The calendar is used by the organizer to send a cancellation notice of an existing
            event request to the affected attendees.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.CalendarMethod.Refresh">
      <summary>
            The calendar is used as a request to refresh calendar information.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.CalendarMethod.Counter">
      <summary>
            The calendar is used by an attendee as a counterproposal to the event or task.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.CalendarMethod.Declinecounter">
      <summary>
            The calendar is used by the organizer of an event to reject a counterproposal
            submitted by an attendee.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.CalendarMethod.Unspecified">
      <summary>
            A calendar method is not specified, therefore a calendar object
            is used to transport a snapshot of the calendar information.
            </summary>
    </member>
    <member name="T:GemBox.Email.Calendar.Event">
      <summary>
            Represents a calendar event.
            </summary>
    </member>
    <member name="M:GemBox.Email.Calendar.Event.#ctor">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.Calendar.Event"/> class.
            </summary>
    </member>
    <member name="P:GemBox.Email.Calendar.Event.Organizer">
      <summary>
            Gets or sets the organizer.
            </summary>
      <value>
            The organizer of the event.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Event.Name">
      <summary>
            Gets or sets the name.
            </summary>
      <value>
            The name of the event.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Event.Description">
      <summary>
            Gets or sets the description.
            </summary>
      <value>
            The description of the event.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Event.Location">
      <summary>
            Gets or sets the location.
            </summary>
      <value>
            The location of the event.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Event.Categories">
      <summary>
            Gets the categories.
            </summary>
      <value>
            The categories to which the event belongs.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Event.Start">
      <summary>
            Gets or sets the start.
            </summary>
      <value>
            The start of the event.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Event.End">
      <summary>
            Gets or sets the end.
            </summary>
      <value>
            The end of the event.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Event.Repeat">
      <summary>
            Gets or sets the frequency.
            </summary>
      <value>
            The frequency with which will the event repeat.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Event.RepeatUntil">
      <summary>
            Gets or sets the repeat deadline.
            </summary>
      <value>
            The date until which will the event repeat.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Event.Attendees">
      <summary>
            Gets the attendees.
            </summary>
      <value>
            The attendees of the event.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Event.Status">
      <summary>
            Gets or sets the status.
            </summary>
      <value>
            The current status of the event.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Event.Reminders">
      <summary>
            Gets the reminders.
            </summary>
      <value>
            The reminders associated with the event.
            </value>
    </member>
    <member name="T:GemBox.Email.Calendar.EventStatus">
      <summary>
            An enumeration of possible <see cref="T:GemBox.Email.Calendar.Event"/> statuses.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.EventStatus.Unspecified">
      <summary>
            The status of the event was not specified.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.EventStatus.Tentative">
      <summary>
            The event is tentative or provisional.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.EventStatus.Confirmed">
      <summary>
            The event was confirmed.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.EventStatus.Cancelled">
      <summary>
            The event was cancelled.
            </summary>
    </member>
    <member name="T:GemBox.Email.Calendar.Frequency">
      <summary>
            Enumeration of possible frequencies of repetition.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.Frequency.Never">
      <summary>
        <see cref="T:GemBox.Email.Calendar.Event"/> or <see cref="T:GemBox.Email.Calendar.Task"/> will not be repeated.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.Frequency.Daily">
      <summary>
        <see cref="T:GemBox.Email.Calendar.Event"/> or <see cref="T:GemBox.Email.Calendar.Task"/> will be repeated daily.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.Frequency.Weekly">
      <summary>
        <see cref="T:GemBox.Email.Calendar.Event"/> or <see cref="T:GemBox.Email.Calendar.Task"/> will be repeated weekly.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.Frequency.Monthly">
      <summary>
        <see cref="T:GemBox.Email.Calendar.Event"/> or <see cref="T:GemBox.Email.Calendar.Task"/> will be repeated monthly.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.Frequency.Yearly">
      <summary>
        <see cref="T:GemBox.Email.Calendar.Event"/> or <see cref="T:GemBox.Email.Calendar.Task"/> will be repeated yearly.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.Frequency.Unsupported">
      <summary>
            The currently set frequency of <see cref="T:GemBox.Email.Calendar.Event"/> or <see cref="T:GemBox.Email.Calendar.Task"/> is not supported.
            </summary>
    </member>
    <member name="T:GemBox.Email.Calendar.ICalendarItem">
      <summary>
            Represents an item (activity) in a calendar.
            </summary>
    </member>
    <member name="P:GemBox.Email.Calendar.ICalendarItem.Organizer">
      <summary>
            Gets or sets the organizer.
            </summary>
      <value>
            The organizer of the item.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.ICalendarItem.Name">
      <summary>
            Gets or sets the name.
            </summary>
      <value>
            The name of the item.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.ICalendarItem.Description">
      <summary>
            Gets or sets the description.
            </summary>
      <value>
            The description of the item.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.ICalendarItem.Location">
      <summary>
            Gets or sets the location.
            </summary>
      <value>
            The location of the item.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.ICalendarItem.Categories">
      <summary>
            Gets the categories.
            </summary>
      <value>
            The categories to which the item belongs.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.ICalendarItem.Start">
      <summary>
            Gets or sets the start.
            </summary>
      <value>
            The start of the item.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.ICalendarItem.End">
      <summary>
            Gets or sets the end.
            </summary>
      <value>
            The end of the item.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.ICalendarItem.Repeat">
      <summary>
            Gets or sets the frequency.
            </summary>
      <value>
            The frequency with which will the item repeat.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.ICalendarItem.RepeatUntil">
      <summary>
            Gets or sets the repeat deadline.
            </summary>
      <value>
            The date until which will the item repeat.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.ICalendarItem.Attendees">
      <summary>
            Gets the attendees.
            </summary>
      <value>
            The attendees of the item.
            </value>
    </member>
    <member name="T:GemBox.Email.Calendar.Reminder">
      <summary>
            Represents a reminder of the task or event.
            </summary>
    </member>
    <member name="M:GemBox.Email.Calendar.Reminder.#ctor">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.Calendar.Reminder"/> class.
            </summary>
    </member>
    <member name="P:GemBox.Email.Calendar.Reminder.Name">
      <summary>
            Gets or sets the name.
            </summary>
      <value>
            The name of the reminder.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Reminder.Description">
      <summary>
            Gets or sets the description.
            </summary>
      <value>
            The description of the task.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Reminder.ReminderAction">
      <summary>
            Gets or sets the reminder action.
            </summary>
      <value>
            The type of action that reminder should execute.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Reminder.ReminderAttendees">
      <summary>
            Gets the reminder attendees.
            </summary>
      <value>
        <see cref="T:GemBox.Email.MailAddress"/>s of the people which will be notified if <see cref="P:GemBox.Email.Calendar.Reminder.ReminderAction"/> is Email.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Reminder.TriggerDate">
      <summary>
            Gets or sets the trigger date.
            </summary>
      <value>
            Date when the reminder will be triggered.
            </value>
            /// <exception cref="T:System.InvalidOperationException">
            TriggerDate is null or empty.
            </exception></member>
    <member name="P:GemBox.Email.Calendar.Reminder.TriggerBeforeStart">
      <summary>
            Gets or sets the trigger before start.
            </summary>
      <value>
            Time span specifying how long before the start of the parent
            item (event or task) will the reminder be triggered.
            </value>
            /// <exception cref="T:System.InvalidOperationException">
            TriggerBeforeStart is null or empty.
            </exception></member>
    <member name="T:GemBox.Email.Calendar.ReminderAction">
      <summary>
            The enumeration of possible actions executed by <see cref="T:GemBox.Email.Calendar.Reminder"/>.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.ReminderAction.Display">
      <summary>
            Reminder will be displayed by the application.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.ReminderAction.Audio">
      <summary>
            Audio will be used by the application as a reminder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.ReminderAction.Email">
      <summary>
            Email will be sent as a reminder.
            </summary>
    </member>
    <member name="T:GemBox.Email.Calendar.ReminderCollection">
      <summary>
            Represents a collection of <see cref="T:GemBox.Email.Calendar.Reminder"/> elements.
            </summary>
    </member>
    <member name="P:GemBox.Email.Calendar.ReminderCollection.Count">
      <summary>
            Gets the number of elements contained in the <see cref="T:GemBox.Email.Calendar.ReminderCollection"/>.
            </summary>
      <value>
            The number of elements contained in the <see cref="T:GemBox.Email.Calendar.ReminderCollection"/>.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.ReminderCollection.IsReadOnly">
      <summary>
            Gets a value indicating whether the <see cref="T:GemBox.Email.Calendar.ReminderCollection"/> is read-only.
            </summary>
      <value>
        <c>true</c> if the <see cref="T:GemBox.Email.Calendar.ReminderCollection"/> is read-only; otherwise, <c>false</c>.
            </value>
    </member>
    <member name="M:GemBox.Email.Calendar.ReminderCollection.Add(GemBox.Email.Calendar.Reminder)">
      <summary>
            Adds an element to the end of the <see cref="T:GemBox.Email.Calendar.ReminderCollection"/>.
            </summary>
      <param name="item">The element to be added to the end of the <see cref="T:GemBox.Email.Calendar.ReminderCollection"/>.</param>
    </member>
    <member name="M:GemBox.Email.Calendar.ReminderCollection.Clear">
      <summary>
            Removes all elements from the <see cref="T:GemBox.Email.Calendar.ReminderCollection"/>.
            </summary>
    </member>
    <member name="M:GemBox.Email.Calendar.ReminderCollection.Contains(GemBox.Email.Calendar.Reminder)">
      <summary>
            Determines whether an element is in the <see cref="T:GemBox.Email.Calendar.ReminderCollection"/>.
            Returns true even if item has changed and is not synchronized with this <see cref="T:GemBox.Email.Calendar.ReminderCollection"/>.
            </summary>
      <param name="item">The element to locate in the <see cref="T:GemBox.Email.Calendar.ReminderCollection"/>.</param>
      <returns>
        <c>true</c> if <paramref name="item"/> is found in the <see cref="T:GemBox.Email.Calendar.ReminderCollection"/>; otherwise, <c>false</c>.
            </returns>
    </member>
    <member name="M:GemBox.Email.Calendar.ReminderCollection.CopyTo(GemBox.Email.Calendar.Reminder[],System.Int32)">
      <summary>
            Copies the entire <see cref="T:GemBox.Email.Calendar.ReminderCollection"/> to a compatible one-dimensional array, starting at the specified index of the target array.
            </summary>
      <param name="array">The one-dimensional array that is the destination of the elements copied from <see cref="T:GemBox.Email.Calendar.ReminderCollection"/>.</param>
      <param name="arrayIndex">The zero-based index in <paramref name="array"/> at which copying begins.</param>
    </member>
    <member name="M:GemBox.Email.Calendar.ReminderCollection.Remove(GemBox.Email.Calendar.Reminder)">
      <summary>
            Removes the first occurrence of a specific element from the <see cref="T:GemBox.Email.Calendar.ReminderCollection"/>.
            </summary>
      <param name="item">The element to remove from the <see cref="T:GemBox.Email.Calendar.ReminderCollection"/>.</param>
      <returns>
        <c>true</c> if element is successfully removed; otherwise, <c>false</c>. This method also returns <c>false</c> if item was not found in the <see cref="T:GemBox.Email.Calendar.ReminderCollection"/>.
            </returns>
    </member>
    <member name="M:GemBox.Email.Calendar.ReminderCollection.GetEnumerator">
      <summary>
            Returns an enumerator that iterates through the <see cref="T:GemBox.Email.Calendar.ReminderCollection"/>.
            </summary>
      <returns>
            An enumerator for the <see cref="T:GemBox.Email.Calendar.ReminderCollection"/>.
            </returns>
    </member>
    <member name="M:GemBox.Email.Calendar.ReminderCollection.IndexOf(GemBox.Email.Calendar.Reminder)">
      <summary>
            Searches for the specified object and returns the zero-based index of the first occurrence within the entire <see cref="T:GemBox.Email.Calendar.ReminderCollection"/>.
            </summary>
      <param name="item">The element to locate in the <see cref="T:GemBox.Email.Calendar.ReminderCollection"/>.</param>
      <returns>The zero-based index of the first occurrence of <paramref name="item"/> within the entire <see cref="T:GemBox.Email.Calendar.ReminderCollection"/>, if found; otherwise, -1.</returns>
    </member>
    <member name="M:GemBox.Email.Calendar.ReminderCollection.Insert(System.Int32,GemBox.Email.Calendar.Reminder)">
      <summary>
            Inserts an element into the <see cref="T:GemBox.Email.Calendar.ReminderCollection"/> at the specified index.
            </summary>
      <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
      <param name="item">The element to insert.</param>
    </member>
    <member name="M:GemBox.Email.Calendar.ReminderCollection.RemoveAt(System.Int32)">
      <summary>
            Removes the element at the specified index of the <see cref="T:GemBox.Email.Calendar.ReminderCollection"/>.
            </summary>
      <param name="index">The zero-based index of the element to remove.</param>
    </member>
    <member name="P:GemBox.Email.Calendar.ReminderCollection.Item(System.Int32)">
      <summary>
            Gets or sets the element at the specified index.
            </summary>
      <param name="index">The zero-based index of the element to get or set.</param>
      <returns>
            The element at the specified index.
            </returns>
    </member>
    <member name="T:GemBox.Email.Calendar.Task">
      <summary>
            Represents a calendar task (to-do).
            </summary>
    </member>
    <member name="M:GemBox.Email.Calendar.Task.#ctor">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.Calendar.Task"/> class.
            </summary>
    </member>
    <member name="P:GemBox.Email.Calendar.Task.Organizer">
      <summary>
            Gets or sets the organizer.
            </summary>
      <value>
            The organizer of the task.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Task.Name">
      <summary>
            Gets or sets the name.
            </summary>
      <value>
            The name of the task.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Task.Description">
      <summary>
            Gets or sets the description.
            </summary>
      <value>
            The description of the task.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Task.Location">
      <summary>
            Gets or sets the location.
            </summary>
      <value>
            The location of the task.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Task.Categories">
      <summary>
            Gets the categories.
            </summary>
      <value>
            The categories to which the task belongs.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Task.Start">
      <summary>
            Gets or sets the start.
            </summary>
      <value>
            The start of the task.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Task.Deadline">
      <summary>
            Gets or sets the deadline.
            </summary>
      <value>
            The deadline of the task.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Task.Repeat">
      <summary>
            Gets or sets the frequency.
            </summary>
      <value>
            The frequency with which will the task repeat.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Task.RepeatUntil">
      <summary>
            Gets or sets the repeat deadline.
            </summary>
      <value>
            The date until which will the task repeat.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Task.Attendees">
      <summary>
            Gets the attendees.
            </summary>
      <value>
            The attendees of the task.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Task.Status">
      <summary>
            Gets or sets the status.
            </summary>
      <value>
            The current status of the task.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Task.PercentComplete">
      <summary>
            Gets or sets the percentage.
            </summary>
      <value>
            The completeness of the task.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Task.Completed">
      <summary>
            Gets or sets the completion date.
            </summary>
      <value>
            The date when the task was completed.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Task.Priority">
      <summary>
            Gets or sets the priority.
            </summary>
      <value>
            Priority of the task.
            </value>
    </member>
    <member name="P:GemBox.Email.Calendar.Task.Reminders">
      <summary>
            Gets the reminders.
            </summary>
      <value>
            The reminders associated with the task.
            </value>
    </member>
    <member name="T:GemBox.Email.Calendar.TaskStatus">
      <summary>
            An enumeration of possible <see cref="T:GemBox.Email.Calendar.Task"/> statuses.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.TaskStatus.Unspecified">
      <summary>
            The status of the task was not specified.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.TaskStatus.NeedsAction">
      <summary>
            The task requires an action.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.TaskStatus.Completed">
      <summary>
            The task was completed.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.TaskStatus.InProcess">
      <summary>
            The task is in process of being completed.
            </summary>
    </member>
    <member name="F:GemBox.Email.Calendar.TaskStatus.Cancelled">
      <summary>
            The task was cancelled.
            </summary>
    </member>
    <member name="T:GemBox.Email.CertificateFieldInfo">
      <summary>
            Represents a collection of attributes of a <see cref="T:GemBox.Email.CertificateInfo"/>.
            </summary>
    </member>
    <member name="P:GemBox.Email.CertificateFieldInfo.FullName">
      <summary>
            The field's full name.
            </summary>
    </member>
    <member name="P:GemBox.Email.CertificateFieldInfo.CommonName">
      <summary>
            Common name.
            </summary>
    </member>
    <member name="P:GemBox.Email.CertificateFieldInfo.OrganizationalUnit">
      <summary>
            Organizational Unit.
            </summary>
    </member>
    <member name="P:GemBox.Email.CertificateFieldInfo.Organization">
      <summary>
            Organization.
            </summary>
    </member>
    <member name="P:GemBox.Email.CertificateFieldInfo.Locality">
      <summary>
            Locality.
            </summary>
    </member>
    <member name="P:GemBox.Email.CertificateFieldInfo.StateOrProvince">
      <summary>
            Name of state or province.
            </summary>
    </member>
    <member name="P:GemBox.Email.CertificateFieldInfo.Country">
      <summary>
            Country name.
            </summary>
    </member>
    <member name="P:GemBox.Email.CertificateFieldInfo.PostalCode">
      <summary>
            Postal Code.
            </summary>
    </member>
    <member name="P:GemBox.Email.CertificateFieldInfo.Street">
      <summary>
            Street.
            </summary>
    </member>
    <member name="P:GemBox.Email.CertificateFieldInfo.Email">
      <summary>
            Email.
            </summary>
    </member>
    <member name="P:GemBox.Email.CertificateFieldInfo.Title">
      <summary>
            Title.
            </summary>
    </member>
    <member name="M:GemBox.Email.CertificateFieldInfo.ToString">
      <inheritdoc/>
    </member>
    <member name="T:GemBox.Email.CertificateInfo">
      <summary>
            Represents the data of a digital certificate used to sign an email.
            </summary>
    </member>
    <member name="P:GemBox.Email.CertificateInfo.ValidFrom">
      <summary>
            This certificate should be considered valid only after this date.
            </summary>
    </member>
    <member name="P:GemBox.Email.CertificateInfo.ValidTo">
      <summary>
            This certificate should be considered valid only before this date.
            </summary>
    </member>
    <member name="P:GemBox.Email.CertificateInfo.Subject">
      <summary>
            For whom the certificate was issued for.
            </summary>
    </member>
    <member name="P:GemBox.Email.CertificateInfo.Issuer">
      <summary>
            The certificate issuer.
            </summary>
    </member>
    <member name="T:GemBox.Email.ComponentInfo">
      <summary>
            Contains static licensing methods and diagnostic information about executing GemBox.Email assembly.     
            </summary>
    </member>
    <member name="E:GemBox.Email.ComponentInfo.FreeLimitReached">
      <summary>
            Occurs when GemBox.Email assembly is used with <b>FREE-LIMITED-KEY</b> license key and free limit is reached.
            </summary>
      <remarks>
            This event is raised when GemBox.Email assembly is used with <b>FREE-LIMITED-KEY</b> license key and maximum number of sent and received <see cref="T:GemBox.Email.MailMessage"/> instances (50)
            is reached or <see cref="T:GemBox.Email.Mime.ContentEntity"/> content size exceeds maximum value (50 KB).
            <para>You can use this event to continue using the assembly by stopping further sending/receiving of messages by setting <see cref="P:GemBox.Email.FreeLimitEventArgs.FreeLimitReachedAction"/> to
            <see cref="F:GemBox.Email.FreeLimitReachedAction.Stop"/>).</para></remarks>
    </member>
    <member name="P:GemBox.Email.ComponentInfo.Title">
      <summary>
            GemBox.Email assembly title.
            </summary>
    </member>
    <member name="P:GemBox.Email.ComponentInfo.FullVersion">
      <summary>
            Gets GemBox.Email assembly full version.
            </summary>
    </member>
    <member name="M:GemBox.Email.ComponentInfo.SetLicense(System.String)">
      <summary>
            Sets the license (serial) key.
            </summary>
      <param name="serialKey">The serial key.</param>
      <remarks>
        <para>You should call this method before using any other class from GemBox.Email assembly.</para>
        <para>Key can only be set once (if you try another key, it will be ignored).</para>
        <para>The best place to call this method is from static constructor of your application's main class.</para>
        <para>Valid serial key has multiple groups of alphanumeric characters, separated with dashes.</para>
        <para>To use the assembly in free limited mode use <b>FREE-LIMITED-KEY</b> as <paramref name="serialKey"/>.</para>
      </remarks>
    </member>
    <member name="T:GemBox.Email.ConversationIndex">
      <summary>
            Represents an email's conversation index, containing the delivery time for the messages in this conversation's thread.
            </summary>
    </member>
    <member name="P:GemBox.Email.ConversationIndex.MessageId">
      <summary>
            ID registered in the conversation index for the first message in the thread.
            </summary>
    </member>
    <member name="P:GemBox.Email.ConversationIndex.FileTime">
      <summary>
            Time of delivery of the initial message, in UTC.
            </summary>
    </member>
    <member name="P:GemBox.Email.ConversationIndex.ResponseDateTimes">
      <summary>
            List of response levels for this message. Each response level represents the delivery time of a reply in this message thread, in UTC.
            </summary>
    </member>
    <member name="M:GemBox.Email.ConversationIndex.ToString">
      <summary>
            Returns the conversation index's raw hexadecimal string.
            </summary>
    </member>
    <member name="T:GemBox.Email.DigitalSignatureInfo">
      <summary>
            Represents a signature attached to an e-mail.
            </summary>
    </member>
    <member name="P:GemBox.Email.DigitalSignatureInfo.SignerCertificateInfo">
      <summary>
            Gets the information about the certificate used to create this signature.
            </summary>
      <value>
            The information about the certificate used to create this signature, represented by an instance of <see cref="T:GemBox.Email.CertificateInfo"/>.
            </value>
    </member>
    <member name="P:GemBox.Email.DigitalSignatureInfo.HashAlgorithm">
      <summary>
            Gets the algorithm used to compute a hash that was used to generate this signature and that represents a hashed version of the original content of the signed email.
            </summary>
      <value>
            The algorithm used to compute a hash that was used to generate this signature and that represents a hashed version of the original content of the signed email.
            </value>
    </member>
    <member name="P:GemBox.Email.DigitalSignatureInfo.SignedBy">
      <summary>
            Who signed the email.
            </summary>
    </member>
    <member name="P:GemBox.Email.DigitalSignatureInfo.SigningTime">
      <summary>
            When the signature was created.
            </summary>
    </member>
    <member name="M:GemBox.Email.DigitalSignatureInfo.GetRawData">
      <summary>
            Gets a copy of the raw data that composes this signature.
            </summary>
      <returns>A copy of the raw data that composes this signature.</returns>
    </member>
    <member name="T:GemBox.Email.DigitalSignatureOptions">
      <summary>
            Represents a set of options for signing an e-mail with a digital signature.
            </summary>
    </member>
    <member name="P:GemBox.Email.DigitalSignatureOptions.Certificate">
      <summary>
            The <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2"/> to be used on signing.
            </summary>
    </member>
    <member name="P:GemBox.Email.DigitalSignatureOptions.CertificatePath">
      <summary>
            The path to the certificate to be used on signing.
            </summary>
    </member>
    <member name="P:GemBox.Email.DigitalSignatureOptions.CertificatePassword">
      <summary>
            The password for the certificate to be loaded from <see cref="P:GemBox.Email.DigitalSignatureOptions.CertificatePath"/>.
            </summary>
    </member>
    <member name="P:GemBox.Email.DigitalSignatureOptions.ClearSigned">
      <summary>
            Indicates if the signature should be clear-signed (<see langword="true"/>) or opaque-signed (<see langword="false"/>). <br/>
            By default this is set to <see langword="true"/>.
            <para><b>Opaque-signed</b> messages are composed of a single part containing both the signature and e-mail's content (like body and attachments) encoded into binary form. <br/><b>Clear-signed</b> messages are composed of two separate parts: the e-mail's content (body and attachments) and a signature.
            </para><para>
            Because of that, opaque-signed messages are only visible on e-mail applications that know how to handle singed messages, while clear-signed messages are visible on any e-mail application.
            </para></summary>
    </member>
    <member name="M:GemBox.Email.DigitalSignatureOptions.#ctor">
      <summary>
            Creates a new instance of <see cref="T:GemBox.Email.DigitalSignatureOptions"/>.
            </summary>
    </member>
    <member name="T:GemBox.Email.Exchange.DefaultFolders">
      <summary>
            Represents the list of folders that exist by default inside Exchange.
            </summary>
    </member>
    <member name="F:GemBox.Email.Exchange.DefaultFolders.Root">
      <summary>
            Default value, represents the "invisible parent" of every other default folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Exchange.DefaultFolders.Calendar">
      <summary>
            Calendar folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Exchange.DefaultFolders.Contacts">
      <summary>
            Contacts folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Exchange.DefaultFolders.Deleted">
      <summary>
            Deleted Items folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Exchange.DefaultFolders.Drafts">
      <summary>
            Drafts folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Exchange.DefaultFolders.Inbox">
      <summary>
            Inbox folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Exchange.DefaultFolders.Journal">
      <summary>
            Journal folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Exchange.DefaultFolders.Notes">
      <summary>
            Notes folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Exchange.DefaultFolders.Outbox">
      <summary>
            Outbox folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Exchange.DefaultFolders.Sent">
      <summary>
            Sent Items folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Exchange.DefaultFolders.Tasks">
      <summary>
            Tasks folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Exchange.DefaultFolders.Junk">
      <summary>
            Junk Email folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Exchange.DefaultFolders.Favorites">
      <summary>
            Favorites folder.
            </summary>
    </member>
    <member name="T:GemBox.Email.Exchange.ExchangeAuthentication">
      <summary>
            An enumeration of supported Exchange authentication mechanisms.
            </summary>
    </member>
    <member name="F:GemBox.Email.Exchange.ExchangeAuthentication.Basic">
      <summary>
            Basic authentication mechanism.
            </summary>
    </member>
    <member name="F:GemBox.Email.Exchange.ExchangeAuthentication.OAuth2">
      <summary>
            OAuth 2.0 authentication mechanism.
            </summary>
    </member>
    <member name="T:GemBox.Email.Exchange.ExchangeClient">
      <summary>
            Represents a mail client that can be used for connecting to Exchange using the EWS protocol.
            </summary>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.#ctor(System.String)">
      <summary>
            Initializes new instance of <see cref="T:GemBox.Email.Exchange.ExchangeClient"/>.
            </summary>
      <param name="host">The address of the server.</param>
    </member>
    <member name="P:GemBox.Email.Exchange.ExchangeClient.LogOutput">
      <summary>
            Gets or sets the log output writer.
            </summary>
      <value>
            The log output writer.
            </value>
      <remarks>
            Setting this property to a non-null value, enables communication logging.
            All commands and responses between the client and server will be written to the provided <see cref="T:System.IO.TextWriter"/>.
            Logging is disabled by setting this property to null.
            </remarks>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.ImpersonateUser(System.String)">
      <summary>
            Defines an email to impersonate, allowing the client to perform operations on another user's mailbox.
            </summary>
      <remarks>
            Successfully using the impersonation requires the client to be authenticated using a token created with this permission.
            </remarks>
      <param name="email">The email of the user to impersonate.</param>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.Authenticate(System.String,System.String)">
      <summary>
            Authenticates the client with a specified user name and password.
            </summary>
      <param name="userName">The user name.</param>
      <param name="password">The password for the user name.</param>
      <exception cref="T:System.InvalidOperationException">Client is already authenticated.</exception>
      <exception cref="T:System.ArgumentException">
            Specified user name is null
            or
            Specified password is null.</exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.Authenticate(System.String,System.String,GemBox.Email.Exchange.ExchangeAuthentication)">
      <summary>
            Authenticates the client with specified user name, password or access token, and <see cref="T:GemBox.Email.Exchange.ExchangeAuthentication"/> mechanism.
            </summary>
      <param name="userName">The user name.</param>
      <param name="passwordOrToken">The password or access token for the user name.</param>
      <param name="authentication">A constant that specifies which authentication mechanism to use.</param>
      <exception cref="T:System.InvalidOperationException">Client is already authenticated.</exception>
      <exception cref="T:System.ArgumentException">
            Specified user name is null
            or
            Specified password or access token is null.</exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.SendMessage(GemBox.Email.MailMessage)">
      <summary>
            Sends the message.
            </summary>
      <param name="message">The message.</param>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Free license limitation exceeded.
            </exception>
      <remarks>The message will also be saved to the SentItems folder.</remarks>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.SendMessage(GemBox.Email.MailMessage,System.Boolean)">
      <summary>
            Sends the message.
            </summary>
      <param name="message">The message.</param>
      <param name="saveOnSentItems">True if the message should be saved to the SentItems folder, otherwise false.</param>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Free license limitation exceeded.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.CreateFolder(System.String)">
      <summary>
            Creates folders based on full name.
            <para>
            For the input "Inbox/Parent/Child": <br/>
            If there is already a "Parent" folder under the Inbox folder, a folder named "Child" will be created under that.  <br/>
            If there is no folder named "Parent" under the Inbox folder, first that one will be created, and then another folder named "Child" will be created under it.
            </para></summary>
      <param name="name">The full folder name.</param>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Folder name is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.CreateFolder(System.String,GemBox.Email.Exchange.DefaultFolders)">
      <summary>
            Creates a new sub folder with the specified name inside a default folder.
            </summary>
      <param name="name">The full folder name.</param>
      <param name="parent">The parent default folder.</param>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Folder name is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.CreateFolder(System.String,System.String)">
      <summary>
            Creates a new sub folder with the specified name inside a specific folder.
            </summary>
      <param name="name">The folder name.</param>
      <param name="parentId">The Id of the parent folder. </param>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Folder name is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.DeleteFolder(System.String,System.Boolean)">
      <summary>
            Deletes the specified folder.
            </summary>
      <param name="name">The folder name.</param>
      <param name="moveToDeletedItems">
            True if message should be moved to deleted items,
            false if it should be completely removed.
            </param>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Folder name is null or empty or folder was not found.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.DeleteFolderById(System.String,System.Boolean)">
      <summary>
            Deletes the specified folder.
            </summary>
      <param name="id">The folder's id.</param>
      <param name="moveToDeletedItems">
            True if message should be moved to deleted items,
            false if it should be completely removed.
            </param>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Folder id is null or empty or folder was not found.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.RenameFolder(System.String,System.String)">
      <summary>
            Renames the folder.
            </summary>
      <param name="oldName">Current folder full name.</param>
      <param name="newName">New folder full name.</param>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Old folder name is null or empty or the folder wasn't found,
            or
            the new folder name is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.RenameFolderById(System.String,System.String)">
      <summary>
            Renames the folder.
            </summary>
      <param name="id">The folder's id.</param>
      <param name="newName">New folder name.</param>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Folder id is null or empty or the folder wasn't found,
            or
            the new folder name is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.ListFolders">
      <summary>
            Lists all folders on the server.
            </summary>
      <returns>
            A read-only collection of all folders on the server.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.ListFolders(GemBox.Email.Exchange.DefaultFolders,System.Boolean)">
      <summary>
            Lists sub folders of a default folder on the server.
            </summary>
      <param name="parent">The parent default folder.</param>
      <param name="directChildrenOnly">Whether or not to include only the parent's direct children (<see langword="true"/>) or to also include every child's sub folders recursively (<see langword="false"/>). </param>
      <returns>
            A read-only collection of all folders on the server.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.ListFolders(GemBox.Email.Exchange.DefaultFolders)">
      <summary>
            Lists sub folders of a default folder on the server.
            </summary>
      <param name="parent">The parent default folder.</param>
      <returns>
            A read-only collection of all folders on the server.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.ListFolders(System.String)">
      <summary>
            Lists sub folders of a specific folder on the server.
            </summary>
      <param name="parentName">The full name of the parent folder.</param>
      <returns>
            A read-only collection of all folders on the server.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.ListFolders(System.String,System.Boolean)">
      <summary>
            Lists sub folders of a specific folder on the server.
            </summary>
      <param name="parentName">The full name of the parent folder.</param>
      <param name="directChildrenOnly">Whether or not to include only the parent's direct children (<see langword="true"/>) or to also include every child's sub folders recursively (<see langword="false"/>). </param>
      <returns>
            A read-only collection of all folders on the server.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.ListFoldersById(System.String)">
      <summary>
            Lists sub folders of a specific folder on the server.
            </summary>
      <param name="parentId">The id of the parent folder.</param>
      <returns>
            A read-only collection of all folders on the server.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.ListFoldersById(System.String,System.Boolean)">
      <summary>
            Lists sub folders of a specific folder on the server.
            </summary>
      <param name="parentId">The id of the parent folder.</param>
      <param name="directChildrenOnly">Whether or not to include only the parent's direct children (<see langword="true"/>) or to also include every child's sub folders recursively (<see langword="false"/>). </param>
      <returns>
            A read-only collection of all folders on the server.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.GetFolderInfo(System.String)">
      <summary>
            Gets the info of a specified folder.
            </summary>
      <param name="name">The full folder name.</param>
      <returns>
            The info of the specified folder.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Folder name is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.GetFolderInfoById(System.String)">
      <summary>
            Gets the info of a specified folder.
            </summary>
      <param name="id">The folder's id.</param>
      <returns>
            The info of the specified folder.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Folder id is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.ListMessages(System.String)">
      <summary>
            Lists all messages in the selected folder.
            </summary>
      <param name="folderName">The full folder name.</param>
      <returns>
            A read-only collection of all messages in the selected folder. If the folder is empty, returns an empty collection.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Folder name is null or empty or folder was not found.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.ListMessagesById(System.String)">
      <summary>
            Lists all messages in the selected folder.
            </summary>
      <param name="folderId">The folder id.</param>
      <returns>
            A read-only collection of all messages in the selected folder. If the folder is empty, returns an empty collection.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Folder id is null or empty or folder was not found.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.ListMessages(System.String,System.Int32,System.Int32)">
      <summary>
            Lists all messages in the selected folder in the specified range.
            </summary>
      <param name="folderName">The folder name.</param>
      <param name="offset">Number of messages that should be skipped.</param>
      <param name="count">Number of messages that should be returned.</param>
      <returns>
            A read-only collection of all messages in the selected folder. If folder is empty, returns an empty collection.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Folder name is null or empty or folder was not found.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.ListMessagesById(System.String,System.Int32,System.Int32)">
      <summary>
            Lists all messages in the selected folder in the specified range.
            </summary>
      <param name="folderId">The folder id.</param>
      <param name="offset">Number of messages that should be skipped.</param>
      <param name="count">Number of messages that should be returned.</param>
      <returns>
            A read-only collection of all messages in the selected folder. If folder is empty, returns an empty collection.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Folder id is null or empty or folder was not found.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.SearchMessages(System.String,System.String)">
      <summary>
            Searches for messages that match the specified AQS query in the selected folder.
            </summary>
      <param name="folderName">The full folder name.</param>
      <param name="query">The query string in Advanced Query Syntax (AQS) format.</param>
      <returns>
            A read-only collection of all messages in the selected folder that match the specified query.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Folder name is null or empty or folder was not found.
            </exception>
      <seealso href="https://docs.microsoft.com/en-us/exchange/client-developer/exchange-web-services/how-to-perform-an-aqs-search-by-using-ews-in-exchange">AQS search by using EWS in Exchange</seealso>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.SearchMessagesById(System.String,System.String)">
      <summary>
            Searches for messages that match the specified AQS query in the selected folder.
            </summary>
      <param name="folderId">The folder id.</param>
      <param name="query">The query string in Advanced Query Syntax (AQS) format.</param>
      <returns>
            A read-only collection of all messages in the selected folder that match the specified query.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Folder id is null or empty or folder was not found.
            </exception>
      <seealso href="https://docs.microsoft.com/en-us/exchange/client-developer/exchange-web-services/how-to-perform-an-aqs-search-by-using-ews-in-exchange">AQS search by using EWS in Exchange</seealso>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.SearchMessages(System.String,System.Int32,System.Int32,System.String)">
      <summary>
            Searches for messages that match the specified AQS query in the selected folder.
            </summary>
      <param name="folderName">The full folder name.</param>
      <param name="offset">Number of messages that should be skipped.</param>
      <param name="count">Number of messages that should be returned.</param>
      <param name="query">The query string in Advanced Query Syntax (AQS) format.</param>
      <returns>
            A read-only collection of all messages in the selected folder that match the specified query.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Folder name is null or empty or folder was not found.
            </exception>
      <seealso href="https://docs.microsoft.com/en-us/exchange/client-developer/exchange-web-services/how-to-perform-an-aqs-search-by-using-ews-in-exchange">AQS search by using EWS in Exchange</seealso>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.SearchMessagesById(System.String,System.Int32,System.Int32,System.String)">
      <summary>
            Searches for messages that match the specified AQS query in the selected folder.
            </summary>
      <param name="folderId">The folder id.</param>
      <param name="offset">Number of messages that should be skipped.</param>
      <param name="count">Number of messages that should be returned.</param>
      <param name="query">The query string in Advanced Query Syntax (AQS) format.</param>
      <returns>
            A read-only collection of all messages in the selected folder that match the specified query.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Folder id is null or empty or folder was not found.
            </exception>
      <seealso href="https://docs.microsoft.com/en-us/exchange/client-developer/exchange-web-services/how-to-perform-an-aqs-search-by-using-ews-in-exchange">AQS search by using EWS in Exchange</seealso>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.GetMessage(System.String)">
      <summary>
            Finds a message with given id.
            </summary>
      <param name="exchangeMessageId">The Exchange message id.</param>
      <returns>
            The found message.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Free license limitation exceeded.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.DeleteMessage(System.String,System.Boolean)">
      <summary>
            Deletes the specified message.
            </summary>
      <param name="exchangeMessageId">The Exchange message id.</param>
      <param name="moveToDeletedItems">
            True if message should be moved to deleted items,
            false if it should be completely removed.
            </param>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.MarkAllMessagesAsRead(System.String)">
      <summary>
            Marks all messages in a given folder as read.
            </summary>
      <param name="folderName">The name of the folder.</param>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Folder name is null or empty or folder couldn't be found.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.MarkMessageAsRead(System.String)">
      <summary>
            Marks message with a given id as read.
            </summary>
      <param name="exchangeMessageId">The Exchange message id.</param>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.MarkMessageAsUnread(System.String)">
      <summary>
            Marks message with a given id as unread.
            </summary>
      <param name="exchangeMessageId">The Exchange message id.</param>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.UpdateMessage(GemBox.Email.MailMessage)">
      <summary>
            Updates the message.
            </summary>
      <param name="message">The message.</param>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
      <remarks>Microsoft Exchange allows editing of only a limited set of message properties.</remarks>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.GetHeaders(System.String)">
      <summary>
            Gets the headers for the specified message.
            </summary>
      <param name="exchangeMessageId">The Exchange message id.</param>
      <returns>
            A collection of message headers.
            </returns>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.MoveMessage(System.String,System.String)">
      <summary>
            Moves the specified message to another folder.
            </summary>
      <param name="messageId">The message id.</param>
      <param name="destinationFolder">The destination folder name.</param>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Destination folder is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.CopyMessage(System.String,System.String)">
      <summary>
            Copies the specified message to another folder.
            </summary>
      <param name="messageId">The message id.</param>
      <param name="destinationFolder">The destination folder name.</param>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Destination folder is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeClient.UploadMessage(GemBox.Email.MailMessage,System.String)">
      <summary>
            Uploads the specified message to the given folder.
            </summary>
      <param name="message">The message.</param>
      <param name="destinationFolder">The destination folder name.</param>
      <exception cref="T:System.InvalidOperationException">
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message is null,
            or
            destination folder is null or empty or the destination folder wasn't found.
            </exception>
    </member>
    <member name="T:GemBox.Email.Exchange.ExchangeFolderInfo">
      <summary>
            Provides information about a folder.
            </summary>
    </member>
    <member name="P:GemBox.Email.Exchange.ExchangeFolderInfo.FolderId">
      <summary>
            Gets the folder identifier.
            </summary>
      <value>
            The folder identifier.
            </value>
    </member>
    <member name="P:GemBox.Email.Exchange.ExchangeFolderInfo.ParentFolderId">
      <summary>
            Gets the parent folder identifier.
            </summary>
      <value>
            The folder identifier.
            </value>
    </member>
    <member name="P:GemBox.Email.Exchange.ExchangeFolderInfo.Name">
      <summary>
            Gets the folder display name.
            </summary>
      <value>
            The folder display name.
            </value>
    </member>
    <member name="P:GemBox.Email.Exchange.ExchangeFolderInfo.TotalCount">
      <summary>
            Gets the total count of items within a given folder.
            </summary>
      <value>
            The total count of items within a given folder.
            </value>
    </member>
    <member name="P:GemBox.Email.Exchange.ExchangeFolderInfo.ChildFolderCount">
      <summary>
            Gets the number of child folders that are contained within a folder.
            </summary>
      <value>
            The number of child folders that are contained within a folder.
            </value>
    </member>
    <member name="P:GemBox.Email.Exchange.ExchangeFolderInfo.UnreadCount">
      <summary>
            Gets the count of unread items within a given folder.
            </summary>
      <value>
            The count of unread items within a given folder.
            </value>
    </member>
    <member name="M:GemBox.Email.Exchange.ExchangeFolderInfo.ToString">
      <summary>
            Returns a <see cref="T:System.String"/> that represents this <see cref="T:GemBox.Email.Exchange.ExchangeFolderInfo"/> instance.
            </summary>
      <returns>
            A <see cref="T:System.String"/> that represents this <see cref="T:GemBox.Email.Exchange.ExchangeFolderInfo"/> instance.
            </returns>
      <remarks>This method should be used primarily for debugging purposes and should be considered volatile (format of its return value might change in future versions).</remarks>
    </member>
    <member name="T:GemBox.Email.Exchange.ExchangeMessageInfo">
      <summary>
            Provides information about an Exchange mail message.
            </summary>
    </member>
    <member name="P:GemBox.Email.Exchange.ExchangeMessageInfo.ExchangeMessageId">
      <summary>
            Gets the exchange message identifier.
            </summary>
      <value>
            The exchange message identifier.
            </value>
    </member>
    <member name="P:GemBox.Email.Exchange.ExchangeMessageInfo.ChangeKey">
      <summary>
            Gets the change key that identifies a version of an item.
            </summary>
      <value>
            The change key that identifies a version of an item.
            </value>
    </member>
    <member name="P:GemBox.Email.Exchange.ExchangeMessageInfo.Subject">
      <summary>
            Gets the subject of the message.
            </summary>
      <value>
            The subject of the message.
            </value>
    </member>
    <member name="P:GemBox.Email.Exchange.ExchangeMessageInfo.Size">
      <summary>
            Gets the size of the message.
            </summary>
      <value>
            The size of the message.
            </value>
    </member>
    <member name="P:GemBox.Email.Exchange.ExchangeMessageInfo.HasAttachments">
      <summary>
            Gets a value that specifies whether a message has attachments.
            </summary>
      <value>
            True if message has attachments, false otherwise.
            </value>
    </member>
    <member name="P:GemBox.Email.Exchange.ExchangeMessageInfo.From">
      <summary>
            Gets the 'From' address.
            </summary>
      <value>
            The 'From' address.
            </value>
    </member>
    <member name="P:GemBox.Email.Exchange.ExchangeMessageInfo.IsRead">
      <summary>
            Gets a value that specifies if a message was read.
            </summary>
      <value>
            True if message was read, false otherwise.
            </value>
    </member>
    <member name="T:GemBox.Email.FreeLimitEventArgs">
      <summary>
            Provides data for the <see cref="E:GemBox.Email.ComponentInfo.FreeLimitReached"/> event.
            </summary>
    </member>
    <member name="P:GemBox.Email.FreeLimitEventArgs.FreeLimitReachedAction">
      <summary>
            Gets or sets the choice for proceeding when free limit is reached.
            </summary>
      <value>
            The choice for proceeding when free limit is reached.
            </value>
    </member>
    <member name="T:GemBox.Email.FreeLimitReachedAction">
      <summary>
            Type of action that can be chosen when free limit is reached.
            </summary>
    </member>
    <member name="F:GemBox.Email.FreeLimitReachedAction.ThrowException">
      <summary>
            Throw <see cref="T:GemBox.Email.FreeLimitReachedException"/>.
            </summary>
    </member>
    <member name="F:GemBox.Email.FreeLimitReachedAction.Stop">
      <summary>
            Stop reading/writing.
            </summary>
    </member>
    <member name="T:GemBox.Email.FreeLimitReachedException">
      <summary>
            Exception that occurs when free limit is reached.
            </summary>
    </member>
    <member name="T:GemBox.Email.Graph.DefaultFolders">
      <summary>
            Represents the list of folders that exist by default on the mailbox
            </summary>
      <seealso href="https://learn.microsoft.com/en-us/graph/api/resources/mailfolder?view=graph-rest-1.0">Mail folder resource documentation</seealso>
    </member>
    <member name="F:GemBox.Email.Graph.DefaultFolders.Root">
      <summary>
            Default value, represents the "invisible parent" of every other default folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Graph.DefaultFolders.Archive">
      <summary>
            Archive folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Graph.DefaultFolders.Clutter">
      <summary>
            Clutter folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Graph.DefaultFolders.ConversationHistory">
      <summary>
            Conversation History folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Graph.DefaultFolders.DeletedItems">
      <summary>
            Deleted Items folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Graph.DefaultFolders.Drafts">
      <summary>
            Drafts folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Graph.DefaultFolders.Inbox">
      <summary>
            Inbox folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Graph.DefaultFolders.JunkEmail">
      <summary>
            Junk Email folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Graph.DefaultFolders.Outbox">
      <summary>
            Outbox folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Graph.DefaultFolders.RecoverableItemsDeletions">
      <summary>
            Recoverable Items Deletions folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Graph.DefaultFolders.Scheduled">
      <summary>
            Scheduled folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Graph.DefaultFolders.SearchFolders">
      <summary>
            Search folders folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Graph.DefaultFolders.SentItems">
      <summary>
            Sent Items folder.
            </summary>
    </member>
    <member name="T:GemBox.Email.Graph.GraphClient">
      <summary>
            Represents a mail client that can be used for interaction with Microsoft Graph API.
            </summary>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.#ctor">
      <summary>
            Initializes a new instance of <see cref="T:GemBox.Email.Graph.GraphClient"/>.
            </summary>
      <remarks>
            This constructor initializes a <see cref="T:GemBox.Email.Graph.GraphClient"/> using the default Graph API endpoint.
            </remarks>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.#ctor(System.String)">
      <summary>
            Initializes a new instance of <see cref="T:GemBox.Email.Graph.GraphClient"/>.
            <param name="baseUrl">Base URL for Graph API requests.</param></summary>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.#ctor(System.Net.IWebProxy,System.Boolean)">
      <summary>
            Initializes a new instance of <see cref="T:GemBox.Email.Graph.GraphClient"/>.
            <param name="proxy">The proxy through which the network requests will be sent.</param><param name="acceptAnyCertificate"><c>True</c> to ignore any SSL certificate errors; otherwise, <c>false</c>.</param></summary>
      <remarks>
            This constructor initializes a <see cref="T:GemBox.Email.Graph.GraphClient"/> using the default Graph API endpoint.
            <para>HTTPS proxies are only supported on .NET8.0 or higher.</para></remarks>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.#ctor(System.String,System.Net.IWebProxy,System.Boolean)">
      <summary>
            Initializes a new instance of <see cref="T:GemBox.Email.Graph.GraphClient"/>.
            <param name="baseUrl">Base URL for Graph API requests.</param><param name="proxy">The proxy through which the network requests will be sent.</param><param name="acceptAnyCertificate"><c>True</c> to ignore any SSL certificate errors; otherwise, <c>false</c>.</param></summary>
      <remarks>
            HTTPS proxies are only supported on .NET8.0 or higher.
            </remarks>
    </member>
    <member name="P:GemBox.Email.Graph.GraphClient.LogOutput">
      <summary>
            Gets or sets the log output writer.
            </summary>
      <value>
            The log output writer.
            </value>
      <remarks>
            Setting this property to a non-null value, enables communication logging.
            All commands and responses between the client and server will be written to the provided <see cref="T:System.IO.TextWriter"/>.
            Logging is disabled by setting this property to null.
            </remarks>
    </member>
    <member name="P:GemBox.Email.Graph.GraphClient.Proxy">
      <summary>
            Gets the proxy settings used for network requests.
            </summary>
      <value>
            The proxy settings used for network requests.
            </value>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.Authenticate(System.String)">
      <summary>
            Authenticates the client with the specified access token.
            </summary>
      <param name="token">Access token for authentication in Graph API.</param>
      <exception cref="T:System.ArgumentException">Specified token is null.</exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.ImpersonateUser(System.String)">
      <summary>
            Defines a user to impersonate, allowing the client to perform operations on another user's mailbox.
            </summary>
      <param name="emailOrUserId">The email or id of the user to impersonate.</param>
      <remarks>
            Successfully using the impersonation requires the client to be authenticated using a token created with this permission.
            </remarks>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.SendMessage(GemBox.Email.MailMessage)">
      <summary>
            Sends the message.
            </summary>
      <param name="message">The message.</param>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">Free license limitation exceeded.</exception>
      <remarks>The message will also be saved to the SentItems folder.</remarks>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.SendMessage(GemBox.Email.MailMessage,System.Boolean)">
      <summary>
            Sends the message.
            </summary>
      <param name="message">The message.</param>
      <param name="saveOnSentItems">True if the message should be saved to the SentItems folder, otherwise false.</param>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">Free license limitation exceeded.</exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.CreateFolder(System.String)">
      <summary>
            Creates folders based on full name.
            <para>
            For the input "Inbox/Parent/Child": <br/>
            If there is already a "Parent" folder under the Inbox folder, a folder named "Child" will be created under that.  <br/>
            If there is no folder named "Parent" under the Inbox folder, it will be created, and then another folder named "Child" will be created under it.
            </para></summary>
      <param name="name">The full folder name.</param>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Folder name is null or empty.</exception>
      <remarks>The folder will be created as visible (not hidden)</remarks>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.CreateFolder(System.String,System.Boolean)">
      <summary>
            Creates folders based on full name.
            <para>
            For the input "Inbox/Parent/Child": <br/>
            If there is already a "Parent" folder under the Inbox folder, a folder named "Child" will be created under that.  <br/>
            If there is no folder named "Parent" under the Inbox folder, it will be created, and then another folder named "Child" will be created under it.
            </para></summary>
      <param name="name">The full folder name.</param>
      <param name="hidden">True if folder should be hidden, otherwise false.</param>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Folder name is null or empty.</exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.CreateFolder(System.String,GemBox.Email.Graph.DefaultFolders)">
      <summary>
            Creates a new subfolder with the specified name inside a default folder.
            <para>Path syntax is also supported on this overload.</para></summary>
      <param name="name">The full folder name.</param>
      <param name="parent">The parent default folder.</param>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Folder name is null or empty.</exception>
      <remarks>The folder will be created as visible (not hidden)</remarks>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.CreateFolder(System.String,GemBox.Email.Graph.DefaultFolders,System.Boolean)">
      <summary>
            Creates a new subfolder with the specified name inside a default folder.
            <para>Path syntax is also supported on this overload</para></summary>
      <param name="name">The full folder name.</param>
      <param name="parent">The parent default folder.</param>
      <param name="hidden">True if folder should be hidden, otherwise false.</param>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Folder name is null or empty.</exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.CreateFolder(System.String,System.String)">
      <summary>
            Creates a new subfolder with the specified name inside a specific folder.
            <para>Path syntax is also supported on this overload.</para></summary>
      <param name="name">The folder name.</param>
      <param name="parentId">The Id of the parent folder.</param>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Folder name is null or empty.</exception>
      <remarks>The folder will be created as visible (not hidden)</remarks>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.CreateFolder(System.String,System.String,System.Boolean)">
      <summary>
            Creates a new subfolder with the specified name inside a specific folder.
            <para>Path syntax is also supported on this overload</para></summary>
      <param name="name">The folder name.</param>
      <param name="parentId">The Id of the parent folder. </param>
      <param name="hidden">True if folder should be hidden, otherwise false.</param>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Folder name is null or empty.</exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.DeleteFolder(System.String)">
      <summary>
            Deletes the specified folder.
            </summary>
      <param name="name">The full folder name.</param>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Folder name is null or empty or folder was not found.</exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.DeleteFolderById(System.String)">
      <summary>
            Deletes the specified folder.
            </summary>
      <param name="id">The folder's id.</param>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Folder id is null or empty.</exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.RenameFolder(System.String,System.String)">
      <summary>
            Renames the folder.
            </summary>
      <param name="oldName">Current folder full name.</param>
      <param name="newName">New folder name.</param>
      <returns>The renamed folder.</returns>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Old folder name is null or empty or the folder wasn't found,
            or
            the new folder name is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.RenameFolderById(System.String,System.String)">
      <summary>
            Renames the folder.
            </summary>
      <param name="id">The folder's id.</param>
      <param name="newName">New folder name.</param>
      <returns>The renamed folder.</returns>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Folder id is null or empty,
            or
            the new folder name is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.ListFolders">
      <summary>
            Lists all folders (and their subfolders) on the server.
            </summary>
      <returns>
            A read-only collection of all folders (and their subfolders) on the server.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <remarks>Hidden folders will not be included in the result list.</remarks>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.ListFolders(System.Boolean)">
      <summary>
            Lists all folders (and their subfolders) on the server.
            </summary>
      <param name="includeHidden">Whether or not to include hidden folders.</param>
      <returns>
            A read-only collection of all folders (and their subfolders) on the server.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.ListFolders(GemBox.Email.Graph.DefaultFolders)">
      <summary>
            Lists subfolders (and their subfolders) of a default folder on the server.
            </summary>
      <param name="parent">The parent default folder.</param>
      <returns>
            A read-only collection of subfolders (and their subfolders) of a default folder on the server.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <remarks>Hidden folders will not be included in the result list.</remarks>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.ListFolders(GemBox.Email.Graph.DefaultFolders,System.Boolean)">
      <summary>
            Lists subfolders of a default folder on the server.
            </summary>
      <param name="parent">The parent default folder.</param>
      <param name="directChildrenOnly">Whether or not to include only the parent's direct children (<see langword="true"/>) or to also include every child's subfolders recursively (<see langword="false"/>).</param>
      <returns>
            A read-only collection of subfolders of a default folder on the server.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <remarks>Hidden folders will not be included in the result list.</remarks>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.ListFolders(GemBox.Email.Graph.DefaultFolders,System.Boolean,System.Boolean)">
      <summary>
            Lists subfolders of a default folder on the server.
            </summary>
      <param name="parent">The parent default folder.</param>
      <param name="directChildrenOnly">Whether or not to include only the parent's direct children (<see langword="true"/>) or to also include every child's subfolders recursively (<see langword="false"/>).</param>
      <param name="includeHidden">Whether or not to include hidden folders.</param>
      <returns>
            A read-only collection of subfolders of a default folder on the server.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.ListFolders(System.String)">
      <summary>
            Lists subfolders (and their subfolders) of a specific folder on the server.
            </summary>
      <param name="parentName">The full name of the parent folder.</param>
      <returns>
            A read-only collection of subfolders (and their subfolders) of a specific folder on the server.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Parent folder name is null or empty or the parent folder wasn't found.</exception>
      <remarks>Hidden folders will not be included in the result list.</remarks>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.ListFolders(System.String,System.Boolean)">
      <summary>
            Lists subfolders of a specific folder on the server.
            </summary>
      <param name="parentName">The full name of the parent folder.</param>
      <param name="directChildrenOnly">Whether or not to include only the parent's direct children (<see langword="true"/>) or to also include every child's subfolders recursively (<see langword="false"/>).</param>
      <returns>
            A read-only collection of subfolders of a specific folder on the server.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Parent folder name is null or empty or the parent folder wasn't found.</exception>
      <remarks>Hidden folders will not be included in the result list.</remarks>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.ListFolders(System.String,System.Boolean,System.Boolean)">
      <summary>
            Lists subfolders of a specific folder on the server.
            </summary>
      <param name="parentName">The full name of the parent folder.</param>
      <param name="directChildrenOnly">Whether or not to include only the parent's direct children (<see langword="true"/>) or to also include every child's subfolders recursively (<see langword="false"/>).</param>
      <param name="includeHidden">Whether or not to include hidden folders.</param>
      <returns>
            A read-only collection of all folders on the server.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Parent folder name is null or empty or the parent folder wasn't found.</exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.ListFoldersById(System.String,System.Boolean,System.Boolean)">
      <summary>
            Lists subfolders of a specific folder on the server.
            </summary>
      <param name="parentId">The parent folder id.</param>
      <param name="directChildrenOnly">Whether or not to include only the parent's direct children (<see langword="true"/>) or to also include every child's subfolders recursively (<see langword="false"/>).</param>
      <param name="includeHidden">Whether or not to include hidden folders.</param>
      <returns>
            A read-only collection of all folders on the server.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.GetFolderInfo(System.String)">
      <summary>
            Gets information of a specified folder.
            </summary>
      <param name="name">The full folder name.</param>
      <returns>
            The information of the specified folder.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Folder name is null or empty.</exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.GetFolderInfoById(System.String)">
      <summary>
            Gets the information of a specified folder.
            </summary>
      <param name="id">The folder's id.</param>
      <returns>
            The information of the specified folder.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Folder id is null or empty.</exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.ListMessages">
      <summary>
            Lists all messages in all folders.
            </summary>
      <returns>
            A read-only collection of all messages in all folders. Returns an empty collection if no messages were found.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.ListMessages(System.String)">
      <summary>
            Lists all messages in the selected folder.
            </summary>
      <param name="folderName">The full folder name.</param>
      <returns>
            A read-only collection of all messages in the selected folder. Returns an empty collection if the folder is empty.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Folder name is null or empty.</exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.ListMessages(GemBox.Email.Graph.DefaultFolders)">
      <summary>
            Lists all messages in the selected default folder.
            </summary>
      <param name="folder">The default folder</param>
      <returns>
            A read-only collection of all messages in the selected folder. Returns an empty collection if the folder is empty.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.ListMessagesByFolderId(System.String)">
      <summary>
            Lists all messages in the selected folder.
            </summary>
      <param name="folderId">The folder id.</param>
      <returns>
            A read-only collection of all messages in the selected folder. Returns an empty collection if the folder is empty.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Folder id is null or empty or folder was not found.</exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.ListMessages(System.String,System.Int32,System.Int32)">
      <summary>
            Lists all messages in the selected folder in the specified range.
            </summary>
      <param name="folderName">The full folder name.</param>
      <param name="offset">Number of messages that should be skipped.</param>
      <param name="count">Number of messages that should be returned.</param>
      <returns>
            A read-only collection of all messages in the selected folder in the specified range. Returns an empty collection if the folder is empty.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Folder name is null or empty or folder was not found.</exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.ListMessages(GemBox.Email.Graph.DefaultFolders,System.Int32,System.Int32)">
      <summary>
            Lists all messages in the selected default folder in the specified range.
            </summary>
      <param name="folder">The default folder</param>
      <param name="offset">Number of messages that should be skipped.</param>
      <param name="count">Number of messages that should be returned.</param>
      <returns>
            A read-only collection of all messages in the selected folder. Returns an empty collection if the folder is empty.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.ListMessagesByFolderId(System.String,System.Int32,System.Int32)">
      <summary>
            Lists all messages in the selected folder in the specified range.
            </summary>
      <param name="folderId">The folder id.</param>
      <param name="offset">Number of messages that should be skipped.</param>
      <param name="count">Number of messages that should be returned.</param>
      <returns>
            A read-only collection of all messages in the selected folder. Returns an empty collection if the folder is empty.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Folder id is null or empty or folder was not found.</exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.SearchMessages(System.String)">
      <summary>
            Searches for messages that match the specified OData query in all folders.
            </summary>
      <param name="query">The query string in $filter OData query parameter format.</param>
      <returns>
            A read-only collection of all messages in the selected folder that match the specified query.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <seealso href="https://learn.microsoft.com/en-us/graph/filter-query-parameter?tabs=http">$filter query parameter in Microsoft Graph.</seealso>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.SearchMessages(System.String,System.String)">
      <summary>
            Searches for messages that match the specified OData query in the selected folder.
            </summary>
      <param name="folderName">The full folder name.</param>
      <param name="query">The query string in $filter OData query parameter format.</param>
      <returns>
            A read-only collection of all messages in the selected folder that match the specified query.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Folder name is null or empty or folder was not found.</exception>
      <seealso href="https://learn.microsoft.com/en-us/graph/filter-query-parameter?tabs=http">$filter query parameter in Microsoft Graph.</seealso>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.SearchMessages(GemBox.Email.Graph.DefaultFolders,System.String)">
      <summary>
            Searches for messages that match the specified OData query in the selected default folder.
            </summary>
      <param name="folder">The default folder.</param>
      <param name="query">The query string in $filter OData query parameter format.</param>
      <returns>
            A read-only collection of all messages in the selected folder that match the specified query.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <seealso href="https://learn.microsoft.com/en-us/graph/filter-query-parameter?tabs=http">$filter query parameter in Microsoft Graph.</seealso>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.SearchMessagesByFolderId(System.String,System.String)">
      <summary>
            Searches for messages that match the specified OData query in the selected folder.
            </summary>
      <param name="folderId">The folder id.</param>
      <param name="query">The query string in $filter OData query parameter format.</param>
      <returns>
            A read-only collection of all messages in the selected folder that match the specified query.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Folder id is null or empty or folder was not found.</exception>
      <seealso href="https://learn.microsoft.com/en-us/graph/filter-query-parameter?tabs=http">$filter query parameter in Microsoft Graph.</seealso>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.SearchMessages(System.String,System.Int32,System.Int32,System.String)">
      <summary>
            Searches for messages that match the specified OData query in the selected folder.
            </summary>
      <param name="folderName">The full folder name.</param>
      <param name="offset">Number of messages that should be skipped.</param>
      <param name="count">Number of messages that should be returned.</param>
      <param name="query">The query string in $filter OData query parameter format.</param>
      <returns>
            A read-only collection of all messages in the selected folder that match the specified query.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Folder name is null or empty or folder was not found.</exception>
      <seealso href="https://learn.microsoft.com/en-us/graph/filter-query-parameter?tabs=http">$filter query parameter in Microsoft Graph.</seealso>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.SearchMessagesByFolderId(System.String,System.Int32,System.Int32,System.String)">
      <summary>
            Searches for messages that match the specified OData query in the selected folder.
            </summary>
      <param name="folderId">The folder id.</param>
      <param name="offset">Number of messages that should be skipped.</param>
      <param name="count">Number of messages that should be returned.</param>
      <param name="query">The query string in $filter OData query parameter format.</param>
      <returns>
            A read-only collection of all messages in the selected folder that match the specified query.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Folder id is null or empty or folder was not found.</exception>
      <seealso href="https://learn.microsoft.com/en-us/graph/filter-query-parameter?tabs=http">$filter query parameter in Microsoft Graph.</seealso>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.GetMessage(System.String)">
      <summary>
            Finds a message with the given id.
            </summary>
      <param name="messageId">The message id.</param>
      <returns>
            The found message.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Message id is null or empty.</exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">Free license limitation exceeded.</exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.DeleteMessage(System.String)">
      <summary>
            Deletes the specified message.
            </summary>
      <param name="messageId">The message id.</param>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Message id is null or empty.</exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.MarkAllMessagesAsRead(System.String)">
      <summary>
            Marks all messages in a given folder as read.
            </summary>
      <param name="folderName">The full folder name.</param>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Folder name is null or empty or folder couldn't be found.</exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.MarkAllMessagesAsReadByFolderId(System.String)">
      <summary>
            Marks all messages in a given folder as read.
            </summary>
      <param name="folderId">The folder's id.</param>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Folder id is null or empty</exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.MarkMessageAsRead(System.String)">
      <summary>
            Marks message with a given id as read.
            </summary>
      <param name="messageId">The message id.</param>
      <returns>The message marked as read.</returns>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Message id is null or empty.</exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.MarkMessageAsUnread(System.String)">
      <summary>
            Marks message with a given id as unread.
            </summary>
      <param name="messageId">The message id.</param>
      <returns>The message marked as unread.</returns>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">Message id is null or empty.</exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.GetHeaders(System.String)">
      <summary>
            Gets the headers for the specified message.
            </summary>
      <param name="messageId">The message id.</param>
      <returns>
            A collection of message headers.
            </returns>
      <exception cref="T:System.ArgumentException">Message id is null or empty.</exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.MoveMessage(System.String,System.String)">
      <summary>
            Moves the specified message to another folder.
            </summary>
      <param name="messageId">The message id.</param>
      <param name="destinationFolder">The destination folder name.</param>
      <returns>The moved message.</returns>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty,
            or
            destination folder is null or empty or the destination folder wasn't found.
            </exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.MoveMessageByFolderId(System.String,System.String)">
      <summary>
            Moves the specified message to another folder.
            </summary>
      <param name="messageId">The message id.</param>
      <param name="destinationFolderId">The destination folder id.</param>
      <returns>The moved message.</returns>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty,
            or
            destination folder is null or empty or the destination folder wasn't found.
            </exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.CopyMessage(System.String,System.String)">
      <summary>
            Copies the specified message to another folder.
            </summary>
      <param name="messageId">The message id.</param>
      <param name="destinationFolder">The destination folder name.</param>
      <returns>The copied message.</returns>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty,
            or
            destination folder is null or empty or the destination folder wasn't found.
            </exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.CopyMessageByFolderId(System.String,System.String)">
      <summary>
            Copies the specified message to another folder.
            </summary>
      <param name="messageId">The message id.</param>
      <param name="destinationFolderId">The destination folder id.</param>
      <returns>The copied message.</returns>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty,
            or
            destination folder is null or empty or the destination folder wasn't found.
            </exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.UploadMessage(GemBox.Email.MailMessage,System.String)">
      <summary>
            Uploads the specified message to the given folder.
            </summary>
      <param name="message">The message.</param>
      <param name="destinationFolder">The destination folder full name.</param>
      <returns>The uploaded message.</returns>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message is null,
            or
            destination folder is null or empty or the destination folder wasn't found.
            </exception>
    </member>
    <member name="M:GemBox.Email.Graph.GraphClient.UploadMessageByFolderId(GemBox.Email.MailMessage,System.String)">
      <summary>
            Uploads the specified message to the given folder.
            </summary>
      <param name="message">The message.</param>
      <param name="destinationFolderId">The destination folder id.</param>
      <returns>The uploaded message.</returns>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message is null,
            or
            destination folder is null or empty or the destination folder wasn't found.
            </exception>
    </member>
    <member name="T:GemBox.Email.Graph.GraphFolderInfo">
      <summary>
            Provides information about a folder.
            </summary>
    </member>
    <member name="P:GemBox.Email.Graph.GraphFolderInfo.FolderId">
      <summary>
            Gets the folder identifier.
            </summary>
      <value>
            The folder identifier.
            </value>
    </member>
    <member name="P:GemBox.Email.Graph.GraphFolderInfo.ParentFolderId">
      <summary>
            Gets the parent folder identifier.
            </summary>
      <value>
            The parent folder identifier.
            </value>
    </member>
    <member name="P:GemBox.Email.Graph.GraphFolderInfo.Name">
      <summary>
            Gets the folder display name.
            </summary>
      <value>
            The folder display name.
            </value>
    </member>
    <member name="P:GemBox.Email.Graph.GraphFolderInfo.TotalCount">
      <summary>
            Gets the total count of items within a given folder.
            </summary>
      <value>
            The total count of items within a given folder.
            </value>
    </member>
    <member name="P:GemBox.Email.Graph.GraphFolderInfo.ChildFolderCount">
      <summary>
            Gets the number of child folders that are contained within a folder.
            </summary>
      <value>
            The number of child folders that are contained within a folder.
            </value>
    </member>
    <member name="P:GemBox.Email.Graph.GraphFolderInfo.UnreadCount">
      <summary>
            Gets the count of unread items within a given folder.
            </summary>
      <value>
            The count of unread items within a given folder.
            </value>
    </member>
    <member name="P:GemBox.Email.Graph.GraphFolderInfo.IsHidden">
      <summary>
            Gets a value that specifies if a folder is hidden.
            </summary>
      <value>
            True if the folder is hidden, false otherwise.
            </value>
    </member>
    <member name="M:GemBox.Email.Graph.GraphFolderInfo.ToString">
      <summary>
            Returns a <see cref="T:System.String"/> that represents this <see cref="T:GemBox.Email.Graph.GraphFolderInfo"/> instance.
            </summary>
      <returns>
            A <see cref="T:System.String"/> that represents this <see cref="T:GemBox.Email.Graph.GraphFolderInfo"/> instance.
            </returns>
      <remarks>This method should be used primarily for debugging purposes and should be considered volatile (the format of its return value might change in future versions).</remarks>
    </member>
    <member name="T:GemBox.Email.Graph.GraphMessageInfo">
      <summary>
            Provides information about a Graph mail message.
            </summary>
    </member>
    <member name="P:GemBox.Email.Graph.GraphMessageInfo.MessageId">
      <summary>
            Gets the message identifier.
            </summary>
      <value>
            The message identifier.
            </value>
    </member>
    <member name="P:GemBox.Email.Graph.GraphMessageInfo.ChangeKey">
      <summary>
            Gets the change key that identifies the version of an item.
            </summary>
      <value>
            The change key that identifies the version of an item.
            </value>
    </member>
    <member name="P:GemBox.Email.Graph.GraphMessageInfo.Subject">
      <summary>
            Gets the subject of the message.
            </summary>
      <value>
            The subject of the message.
            </value>
    </member>
    <member name="P:GemBox.Email.Graph.GraphMessageInfo.Size">
      <summary>
            Gets the size of the message.
            </summary>
      <value>
            The size of the message.
            </value>
    </member>
    <member name="P:GemBox.Email.Graph.GraphMessageInfo.HasAttachments">
      <summary>
            Gets a value that specifies whether a message has attachments.
            </summary>
      <value>
            True if message has attachments, false otherwise.
            </value>
    </member>
    <member name="P:GemBox.Email.Graph.GraphMessageInfo.From">
      <summary>
            Gets the 'From' address.
            </summary>
      <value>
            The 'From' address.
            </value>
    </member>
    <member name="P:GemBox.Email.Graph.GraphMessageInfo.IsRead">
      <summary>
            Gets a value that specifies if a message was read.
            </summary>
      <value>
            True if the message was read, false otherwise.
            </value>
    </member>
    <member name="P:GemBox.Email.Graph.GraphMessageInfo.ReceivedDateTime">
      <summary>
            Gets the date and time (in UTC) when the message was received
            </summary>
      <value>
            The date and time (in UTC) when the message was received
            </value>
    </member>
    <member name="M:GemBox.Email.Graph.GraphMessageInfo.ToString">
      <summary>
            Returns a <see cref="T:System.String"/> that represents this <see cref="T:GemBox.Email.Graph.GraphFolderInfo"/> instance.
            </summary>
      <returns>
            A <see cref="T:System.String"/> that represents this <see cref="T:GemBox.Email.Graph.GraphFolderInfo"/> instance.
            </returns>
      <remarks>This method should be used primarily for debugging purposes and should be considered volatile (the format of its return value might change in future versions).</remarks>
    </member>
    <member name="T:GemBox.Email.IMailMergeDataSource">
      <summary>
            Represents a mail merge data source. By adapting your custom data source to implement this interface, you can use it as a data source in mail merging.
            </summary>
    </member>
    <member name="M:GemBox.Email.IMailMergeDataSource.MoveNext">
      <summary>
            Moves to the next record in the data source.
            </summary>
      <returns>
        <see langword="True"/> if next record is available; otherwise, <see langword="false"/>.
            </returns>
    </member>
    <member name="M:GemBox.Email.IMailMergeDataSource.Contains(System.String)">
      <summary>
            Determines whether data source contains values with specified name.
            </summary>
      <param name="valueName">The value name.</param>
      <returns>
        <see langword="True"/> if values with specified name exist; otherwise, <see langword="false"/>.
            </returns>
    </member>
    <member name="M:GemBox.Email.IMailMergeDataSource.GetValue(System.String)">
      <summary>
            Gets the value with a name equal to <paramref name="valueName"/> from the current record in data source.
            </summary>
      <param name="valueName">The value name.</param>
      <returns>
        <see langword="True"/> if the current record has a value with a name equal to <paramref name="valueName"/>.
            </returns>
    </member>
    <member name="T:GemBox.Email.Imap.ImapAuthentication">
      <summary>
            An enumeration of supported IMAP authentication mechanisms.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapAuthentication.Native">
      <summary>
            Native IMAP authentication mechanism using LOGIN command.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapAuthentication.Login">
      <summary>
            SASL LOGIN mechanism.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapAuthentication.Plain">
      <summary>
            SASL PLAIN mechanism.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapAuthentication.DigestMd5">
      <summary>
            SASL DIGEST-MD5 mechanism.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapAuthentication.CramMd5">
      <summary>
            SASL CRAM-MD5 mechanism.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapAuthentication.XOAuth2">
      <summary>
            SASL XOAUTH2 mechanism.
            </summary>
    </member>
    <member name="T:GemBox.Email.Imap.ImapCapability">
      <summary>
            An enumeration of IMAP server capabilities.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapCapability.Imap4">
      <summary>
            The server supports IMAP v4 specification.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapCapability.Imap4rev1">
      <summary>
            The server supports IMAP v4 rev1 specification.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapCapability.StartTls">
      <summary>
            The server supports STARTTLS command.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapCapability.LoginDisabled">
      <summary>
            The server doesn't support native LOGIN authentication mechanism.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapCapability.Authenticate">
      <summary>
            The server supports SASL authentication mechanisms.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapCapability.Children">
      <summary>
            The server supports CHILDREN extension defined in <a href="https://tools.ietf.org/html/rfc3348">RFC 3348</a>.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapCapability.Idle">
      <summary>
            The server supports IDLE command defined in <a href="https://tools.ietf.org/html/rfc2177">RFC 2177</a>.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapCapability.Move">
      <summary>
            The server supports MOVE command defined in <a href="https://tools.ietf.org/html/rfc6851">RFC 6851</a>.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapCapability.LiteralPlus">
      <summary>
            The server has LITERAL+ capability to handle literals as defined in <a href="https://tools.ietf.org/html/rfc7888">RFC 7888</a>.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapCapability.LiteralMinus">
      <summary>
            The server has LITERAL- capability to handle literals as defined in <a href="https://tools.ietf.org/html/rfc7888">RFC 7888</a>.
            </summary>
    </member>
    <member name="T:GemBox.Email.Imap.ImapClient">
      <summary>
            Represents mail client that can be used for manipulating folders and retrieving messages using Internet Mail Access Protocol (IMAP).
            </summary>
      <remarks>
        <see cref="T:GemBox.Email.Imap.ImapClient"/> is implemented according to <a href="https://tools.ietf.org/html/rfc3501">RFC 3501</a>.
            </remarks>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-imap-client/301">IMAP Client in C# and VB.NET</seealso>
    </member>
    <member name="E:GemBox.Email.Imap.ImapClient.Terminated">
      <summary>
            Occurs when connection with server is terminated.
            </summary>
      <remarks>
            This event is raised when connection with server is improperly terminated due to inactivity or some other reason.
            Client will close and dispose its internal stream so there is no need for calling <see cref="M:GemBox.Email.Imap.ImapClient.Disconnect"/> method.
            </remarks>
    </member>
    <member name="P:GemBox.Email.Imap.ImapClient.IsAuthenticated">
      <summary>
            Gets whether or not client is authenticated.
            </summary>
      <value>
        <c>True</c> if client is authenticated; otherwise, <c>false</c>.
            </value>
      <remarks>
            Property indicates whether or not client is currently authenticated with server using <see cref="M:GemBox.Email.Imap.ImapClient.Authenticate(System.String,System.String)"/> or <see cref="M:GemBox.Email.Imap.ImapClient.Authenticate(System.String,System.String,GemBox.Email.Imap.ImapAuthentication)"/> method.
            </remarks>
    </member>
    <member name="P:GemBox.Email.Imap.ImapClient.Security">
      <summary>
            Gets the current connection security mode.
            </summary>
      <value>
            The current connection security mode.
            </value>
    </member>
    <member name="P:GemBox.Email.Imap.ImapClient.SupportedCapabilities">
      <summary>
            Gets the collection of supported capabilities.
            </summary>
      <value>
            A read-only collection of supported capabilities.
            </value>
      <remarks>
            Collection is populated on successful connect, and refreshed after successful authentication.
            </remarks>
    </member>
    <member name="P:GemBox.Email.Imap.ImapClient.SupportedAuthentications">
      <summary>
            Gets collection of supported authentication mechanisms.
            </summary>
      <value>
            A read-only collection of supported authentication mechanisms.
            </value>
      <remarks>
            Collection is populated on successful connect. Values are sorted from strongest to weakest mechanism.
            </remarks>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.#ctor(System.String)">
      <summary>
            Initializes new instance of <see cref="T:GemBox.Email.Imap.ImapClient"/> class with specified host address.
            </summary>
      <param name="host">The address of the server.</param>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-imap-client/301">IMAP Client in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.#ctor(System.String,System.Boolean)">
      <summary>
            Initializes new instance of <see cref="T:GemBox.Email.Imap.ImapClient"/> class with specified host address and option to ignore SSL certificate errors.
            </summary>
      <param name="host">The address of the server.</param>
      <param name="acceptAnyCertificate">
        <c>True</c> to ignore any SSL certificate errors; otherwise, <c>false</c>.</param>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-imap-client/301">IMAP Client in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.#ctor(System.String,GemBox.Email.Security.ConnectionSecurity,System.Boolean)">
      <summary>
            Initializes new instance of <see cref="T:GemBox.Email.Imap.ImapClient"/> class with specified host address, <see cref="T:GemBox.Email.Security.ConnectionSecurity"/> option and option to ignore SSL certificate errors.
            </summary>
      <param name="host">The address of the server.</param>
      <param name="security">A constant that determines connection security level.</param>
      <param name="acceptAnyCertificate">
        <c>True</c> to ignore any SSL certificate errors; otherwise, <c>false</c>.</param>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-imap-client/301">IMAP Client in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.#ctor(System.String,System.Int32)">
      <summary>
            Initializes new instance of <see cref="T:GemBox.Email.Imap.ImapClient"/> class with specified host address and port number.
            </summary>
      <param name="host">The address of the server.</param>
      <param name="port">An integer value between 1 and 65535 indicating remote server IP port. Value 0 indicates that client will use default port value for specified connection security level.</param>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-imap-client/301">IMAP Client in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.#ctor(System.String,System.Int32,GemBox.Email.Security.ConnectionSecurity)">
      <summary>
            Initializes new instance of <see cref="T:GemBox.Email.Imap.ImapClient"/> class with specified host address, port number and <see cref="T:GemBox.Email.Security.ConnectionSecurity"/> option.
            </summary>
      <param name="host">The address of the server.</param>
      <param name="port">An integer value between 1 and 65535 indicating remote server IP port. Value 0 indicates that client will use default port value for specified connection security level.</param>
      <param name="security">A constant that determines connection security level.</param>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-imap-client/301">IMAP Client in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.#ctor(System.String,System.Int32,GemBox.Email.Security.ConnectionSecurity,System.Net.Security.RemoteCertificateValidationCallback)">
      <summary>
            Initializes new instance of <see cref="T:GemBox.Email.Imap.ImapClient"/> class with specified host address, port number, <see cref="T:GemBox.Email.Security.ConnectionSecurity"/> option and host certificate validation delegate method.
            </summary>
      <param name="host">The address of the server.</param>
      <param name="port">An integer value between 1 and 65535 indicating remote server IP port. Value 0 indicates that client will use default port value for specified connection security level.</param>
      <param name="security">A constant that determines connection security level.</param>
      <param name="certificateValidationCallback">A delegate method for validating server SSL certificate on successful connection.</param>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-imap-client/301">IMAP Client in C# and VB.NET</seealso>
    </member>
    <member name="P:GemBox.Email.Imap.ImapClient.SelectedFolder">
      <summary>
            Gets the currently selected IMAP folder.
            </summary>
      <value>
            The currently selected IMAP folder or null if no folder is selected.
            </value>
      <remarks>
            This property is set by calling <see cref="M:GemBox.Email.Imap.ImapClient.SelectInbox"/> or <see cref="M:GemBox.Email.Imap.ImapClient.SelectFolder(System.String,System.Boolean)"/> method.
            </remarks>
    </member>
    <member name="P:GemBox.Email.Imap.ImapClient.IdleEnabled">
      <summary>
            Gets whether or not IDLE mode is enabled.
            </summary>
      <value>
        <c>True</c> if IDLE mode is enabled; otherwise, <c>false</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Imap.ImapClient.IsConnected">
      <summary>
            Gets whether or not client is connected to remote server.
            </summary>
      <value>
        <c>True</c> if client is connected; otherwise, <c>false</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Imap.ImapClient.Host">
      <summary>
            Gets the server address.
            </summary>
      <value>
            The server address.
            </value>
    </member>
    <member name="P:GemBox.Email.Imap.ImapClient.Port">
      <summary>
            Gets the server IP port.
            </summary>
      <value>
            The server IP port.
            </value>
    </member>
    <member name="P:GemBox.Email.Imap.ImapClient.LogOutput">
      <summary>
            Gets or sets the log output writer.
            </summary>
      <value>
            The log output writer.
            </value>
      <remarks>
            Setting this property to a non-null value, enables communication logging.
            All commands and responses between the client and server will be written to the provided <see cref="T:System.IO.TextWriter"/>.
            Logging is disabled by setting this property to null.
            </remarks>
    </member>
    <member name="P:GemBox.Email.Imap.ImapClient.ConnectTimeout">
      <summary>
            Gets or sets the connect timeout.
            </summary>
      <value>
            The connect timeout.
            </value>
      <exception cref="T:System.InvalidOperationException">
            Timeout cannot be set while client is connected.
            </exception>
    </member>
    <member name="P:GemBox.Email.Imap.ImapClient.ReadTimeout">
      <summary>
            Gets or sets the read timeout.
            </summary>
      <value>
            The read timeout.
            </value>
      <exception cref="T:System.InvalidOperationException">
            Timeout cannot be set while client is connected.
            </exception>
    </member>
    <member name="P:GemBox.Email.Imap.ImapClient.WriteTimeout">
      <summary>
            Gets or sets the write timeout.
            </summary>
      <value>
            The write timeout.
            </value>
      <exception cref="T:System.InvalidOperationException">
            Timeout cannot be set while client is connected.
            </exception>
    </member>
    <member name="P:GemBox.Email.Imap.ImapClient.LocalEndPoint">
      <summary>
            Gets or sets the local IP address and port.
            </summary>
      <value>
            The local IP address and port.
            </value>
      <exception cref="T:System.InvalidOperationException">
            Local IP address and port cannot be set while client is connected.
            </exception>
      <remarks>
            Use this property to force the client to use a specific local IP address and port for server connection.
            If not specified or null, the system will automatically select the values. Value must be set before calling the <see cref="M:GemBox.Email.Imap.ImapClient.Connect"/> method.
            </remarks>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.Connect">
      <summary>
            Connects to the server.
            </summary>
      <exception cref="T:System.InvalidOperationException">
            Using <see cref="F:GemBox.Email.Security.ConnectionSecurity.StartTls"/> for the server which doesn't support it
            or
            Client is already connected.
            </exception>
      <exception cref="T:System.TimeoutException">
            The server failed to respond in given time.
            </exception>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-imap-client/301">IMAP Client in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.Connect(System.Security.Authentication.SslProtocols)">
      <summary>
            Connects to the server using specified SSL protocols.
            </summary>
      <remarks>
            The client connects to the server using the most secure protocol out of the specified protocols.
            To specify them, use the following numeric values: 3072 for TLS 1.2, and 12288 for TLS 1.3.
            </remarks>
      <exception cref="T:System.InvalidOperationException">
            Using <see cref="F:GemBox.Email.Security.ConnectionSecurity.StartTls"/> for the server which doesn't support it
            or
            Client is already connected.
            </exception>
      <exception cref="T:System.TimeoutException">
            The server failed to respond in given time.
            </exception>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-imap-client/301">IMAP Client in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.Authenticate(System.String,System.String)">
      <summary>
            Authenticates client with specified user name and password.
            </summary>
      <param name="userName">The user name.</param>
      <param name="password">The password for the user name.</param>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Client is already authenticated.</exception>
      <exception cref="T:System.ArgumentException">
            Specified user name is null or empty
            or
            Specified password is null or empty.</exception>
      <exception cref="T:System.NotSupportedException">
            Remote host doesn't support authentication.
            </exception>
      <remarks>
        <para>When calling the <see cref="M:GemBox.Email.Imap.ImapClient.Authenticate(System.String,System.String)"/> method, the strongest possible password-based authentication mechanism will be used from the <see cref="P:GemBox.Email.Imap.ImapClient.SupportedAuthentications"/> collection.</para>
        <para>Method authenticates connected client with remote host. Connected client cannot be reauthenticated. You have to call <see cref="M:GemBox.Email.Imap.ImapClient.Disconnect"/> first.</para>
      </remarks>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.Authenticate(System.String,System.String,GemBox.Email.Imap.ImapAuthentication)">
      <summary>
            Authenticates client with specified user name, password or access token, and <see cref="T:GemBox.Email.Imap.ImapAuthentication"/> mechanism.
            </summary>
      <param name="userName">The user name.</param>
      <param name="passwordOrToken">The password or access token for the user name.</param>
      <param name="authentication">A constant that specifies which authentication mechanism to use.</param>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Client is already authenticated.
            </exception>
      <exception cref="T:System.ArgumentException">
            Specified authentication mechanism is not supported
            or
            Specified user name is null or empty
            or
            Specified password or access token is null or empty.
            </exception>
      <remarks>
            Method authenticates connected client with remote host. Connected client cannot be re-authenticated. You have to call <see cref="M:GemBox.Email.Imap.ImapClient.Disconnect"/> first.
            </remarks>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.Disconnect">
      <summary>
            Disconnects client from the server.
            </summary>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.Dispose">
      <summary>
            Disconnects client from the server and disposes all used resources.
            </summary>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.KeepAlive">
      <summary>
            Executes NOOP command.
            </summary>
      <remarks>
            Executing NOOP command prevents server from terminating connection due to client inactivity.
            </remarks>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.ListFolders">
      <summary>
            Lists all folders on the server.
            </summary>
      <returns>
            A read-only collection of all folders on the server.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.ListSubscribedFolders">
      <summary>
            Lists all subscribed folders on the server.
            </summary>
      <returns>
            A read-only collection of all subscribed folders on the server.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.GetFolderStatus(System.String)">
      <summary>
            Gets the status of specified folder.
            </summary>
      <param name="name">The full folder name.</param>
      <returns>
            The status of specified folder.
            </returns>
      <remarks>
            This method doesn't change <see cref="P:GemBox.Email.Imap.ImapClient.SelectedFolder"/> property value.
            </remarks>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Folder name is null or empty.
            </exception>
      <exception cref="T:System.FormatException">
            Server returned invalid response.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.SelectInbox">
      <summary>
            Selects INBOX folder.
            </summary>
      <remarks>
            Calling this method will select folder named INBOX in read-write mode.
            </remarks>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.SelectFolder(System.String,System.Boolean)">
      <summary>
            Selects the specified folder.
            </summary>
      <param name="name">The full folder name.</param>
      <param name="readOnly">
        <c>True</c> if folder will be selected as read-only; otherwise, <c>false</c>.</param>
      <remarks>
            Selecting folder in read-only mode will not permit any changes of the permanent state of that folder.
            </remarks>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.SubscribeFolder(System.String)">
      <summary>
            Adds specified folder to the subscribed folders list.
            </summary>
      <param name="name">The full folder name.</param>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Folder name is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.UnsubscribeFolder(System.String)">
      <summary>
            Removes specified folder the from subscribed folders list.
            </summary>
      <param name="name">The full folder name.</param>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Folder name is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.CreateFolder(System.String)">
      <summary>
            Creates new folder with specified name.
            </summary>
      <param name="name">The full folder name.</param>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Folder name is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.DeleteFolder(System.String)">
      <summary>
            Deletes the specified folder.
            </summary>
      <param name="name">The full folder name.</param>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Folder name is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.RenameFolder(System.String,System.String)">
      <summary>
            Renames the folder.
            </summary>
      <param name="oldName">Current folder full name.</param>
      <param name="newName">New folder full name.</param>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Old folder name is null or empty
            or
            New folder name is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.CloseSelectedFolder">
      <summary>
            Closes the currently selected folder.
            </summary>
      <remarks>
            Closing currently selected folder will set <see cref="P:GemBox.Email.Imap.ImapClient.SelectedFolder"/> property to null.
            </remarks>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.Expunge">
      <summary>
            Expunges the selected folder.
            </summary>
      <remarks>
            All messages with \Deleted flag set are removed from selected folder.
            </remarks>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.ListMessages">
      <summary>
            Lists all messages in the selected folder.
            </summary>
      <returns>
            A read-only collection of all messages in the selected folder. If folder is empty, returns an empty collection.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.ListMessages(System.Int32,System.Int32)">
      <summary>
            Lists specified range of messages in the selected folder.
            </summary>
      <param name="startingNumber">First message number.</param>
      <param name="endingNumber">Last message number.</param>
      <returns>
            A read-only collection of specified messages in the selected folder.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Starting number is out of range
            or
            Ending number is out of range.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.GetHeaders(System.String)">
      <summary>
            Gets the headers for the specified message.
            </summary>
      <param name="uid">The message id.</param>
      <returns>
            A collection of message headers.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            UID operations are not supported.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.GetHeaders(System.Int32)">
      <summary>
            Gets the headers for the specified message.
            </summary>
      <param name="messageNumber">The message number.</param>
      <returns>
            A collection of message headers.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Message number is out of range.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.GetMessage(System.String)">
      <summary>
            Gets the specified message.
            </summary>
      <param name="uid">The message id.</param>
      <returns>
            The specified message.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            UID operations are not supported
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Free license limitation exceeded.
            </exception>
      <seealso href="https://www.gemboxsoftware.com/email/examples/receive-read-email-c-sharp-vb/102">Receive and Read Email in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.GetMessage(System.String,System.Boolean)">
      <summary>
            Gets the specified message.
            </summary>
      <param name="uid">The message id.</param>
      <param name="withAttachments">Determines whether the attachments should be retrieved. If set to <c>false</c>, only message headers and bodies (<see cref="P:GemBox.Email.MailMessage.BodyText"/> and <see cref="P:GemBox.Email.MailMessage.BodyHtml"/>) will be retrieved. Otherwise, full message will be retrieved.</param>
      <returns>
            The specified message.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            UID operations are not supported
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Free license limitation exceeded.
            </exception>
      <seealso href="https://www.gemboxsoftware.com/email/examples/receive-read-email-c-sharp-vb/102">Receive and Read Email in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.GetMessage(System.Int32)">
      <summary>
            Gets the specified message.
            </summary>
      <param name="messageNumber">The message number.</param>
      <returns>
            The specified message.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Message number is out of range.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Free license limitation exceeded.
            </exception>
      <seealso href="https://www.gemboxsoftware.com/email/examples/receive-read-email-c-sharp-vb/102">Receive and Read Email in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.GetMessage(System.Int32,System.Boolean)">
      <summary>
            Gets the specified message.
            </summary>
      <param name="messageNumber">The message number.</param>
      <param name="withAttachments">Determines whether the attachments should be retrieved. If set to <c>false</c>, only message headers and bodies (<see cref="P:GemBox.Email.MailMessage.BodyText"/> and <see cref="P:GemBox.Email.MailMessage.BodyHtml"/>) will be retrieved. Otherwise, full message will be retrieved.</param>
      <returns>
            The specified message.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Message number is out of range.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Free license limitation exceeded.
            </exception>
      <seealso href="https://www.gemboxsoftware.com/email/examples/receive-read-email-c-sharp-vb/102">Receive and Read Email in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.PeekMessage(System.String)">
      <summary>
            Gets the specified message without setting the <see cref="F:GemBox.Email.Imap.ImapMessageFlags.Seen"/> flag.
            </summary>
      <param name="uid">The message id.</param>
      <returns>
            The specified message.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            UID operations are not supported
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Free license limitation exceeded.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.PeekMessage(System.String,System.Boolean)">
      <summary>
            Gets the specified message without setting the <see cref="F:GemBox.Email.Imap.ImapMessageFlags.Seen"/> flag.
            </summary>
      <param name="uid">The message id.</param>
      <param name="withAttachments">Determines whether the attachments should be retrieved. If set to <c>false</c>, only message headers and bodies (<see cref="P:GemBox.Email.MailMessage.BodyText"/> and <see cref="P:GemBox.Email.MailMessage.BodyHtml"/>) will be retrieved. Otherwise, full message will be retrieved.</param>
      <returns>
            The specified message.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            UID operations are not supported
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Free license limitation exceeded.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.PeekMessage(System.Int32)">
      <summary>
            Gets the specified message without setting the <see cref="F:GemBox.Email.Imap.ImapMessageFlags.Seen"/> flag.
            </summary>
      <param name="messageNumber">The message number.</param>
      <returns>
            The specified message.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Message number is out of range.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Free license limitation exceeded.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.PeekMessage(System.Int32,System.Boolean)">
      <summary>
            Gets the specified message without setting the <see cref="F:GemBox.Email.Imap.ImapMessageFlags.Seen"/> flag.
            </summary>
      <param name="messageNumber">The message number.</param>
      <param name="withAttachments">Determines whether the attachments should be retrieved. If set to <c>false</c>, only message headers and bodies (<see cref="P:GemBox.Email.MailMessage.BodyText"/> and <see cref="P:GemBox.Email.MailMessage.BodyHtml"/>) will be retrieved. Otherwise, full message will be retrieved.</param>
      <returns>
            The specified message.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Message number is out of range.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Free license limitation exceeded.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.GetMessageRange(System.Int32,System.Int32)">
      <summary>
            Gets the collection of specified messages.
            </summary>
      <param name="startingNumber">First message number.</param>
      <param name="endingNumber">Last message number.</param>
      <returns>
            A read-only collection of specified messages.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Starting number is out of range
            or
            Ending number is out of range.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Free license limitation exceeded.
            </exception>
      <seealso href="https://www.gemboxsoftware.com/email/examples/receive-read-email-c-sharp-vb/102">Receive and Read Email in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.SaveMessage(System.String,System.String)">
      <summary>
            Saves the specified message to a file.
            </summary>
      <param name="uid">The message id.</param>
      <param name="filePath">A relative or absolute path for the file where message will be saved.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            UID operations are not supported
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Free license limitation exceeded.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.SaveMessage(System.Int32,System.String)">
      <summary>
            Saves the specified message to a file.
            </summary>
      <param name="messageNumber">The message number.</param>
      <param name="filePath">A relative or absolute path for the file where message will be saved.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Message number is out of range.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Free license limitation exceeded.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.SaveMessage(System.String,System.IO.Stream)">
      <summary>
            Saves the specified message to a stream.
            </summary>
      <param name="uid">The message id.</param>
      <param name="output">The stream to save message to.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            UID operations are not supported
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            or
            Output stream is not writable.
            </exception>
      <exception cref="T:System.ArgumentNullException">
            Output stream is null.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Free license limitation exceeded.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.SaveMessage(System.Int32,System.IO.Stream)">
      <summary>
            Saves the specified message to a stream.
            </summary>
      <param name="messageNumber">The message number.</param>
      <param name="output">The stream to save message to.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Output stream is not writable.
            </exception>
      <exception cref="T:System.ArgumentNullException">
            Output stream is null.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Message number is out of range.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Free license limitation exceeded.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.GetMessageFlags(System.String)">
      <summary>
            Gets the message flags.
            </summary>
      <param name="uid">The message id.</param>
      <returns>
            A read-only collection of message flags.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            UID operations are not supported
            or
            Invalid message id
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.GetMessageFlags(System.Int32)">
      <summary>
            Gets the message flags.
            </summary>
      <param name="messageNumber">The message number.</param>
      <returns>
            A read-only collection of message flags.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Message number is out of range.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.SetMessageFlags(System.String,System.String[])">
      <summary>
            Replaces all the message flags, except the \Recent flag, with the specified flags.
            </summary>
      <param name="uid">The message id.</param>
      <param name="flags">A collection of flags to set.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            UID operations are not supported
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            </exception>
      <exception cref="T:System.ArgumentNullException">
            Flags parameter is null.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.SetMessageFlags(System.String,System.Collections.Generic.IEnumerable{System.String})">
      <summary>
            Replaces all the message flags, except the \Recent flag, with the specified flags.
            </summary>
      <param name="uid">The message id.</param>
      <param name="flags">A collection of flags to set.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            UID operations are not supported
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            </exception>
      <exception cref="T:System.ArgumentNullException">
            Flags parameter is null.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.SetMessageFlags(System.Int32,System.String[])">
      <summary>
            Replaces all the message flags, except the \Recent flag, with the specified flags.
            </summary>
      <param name="messageNumber">The message number.</param>
      <param name="flags">A collection of flags to set.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Message number is out of range.
            </exception>
      <exception cref="T:System.ArgumentNullException">
            Flags parameter is null.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.SetMessageFlags(System.Int32,System.Collections.Generic.IEnumerable{System.String})">
      <summary>
            Replaces all the message flags, except the \Recent flag, with the specified flags.
            </summary>
      <param name="messageNumber">The message number.</param>
      <param name="flags">A collection of flags to set.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Message number is out of range.
            </exception>
      <exception cref="T:System.ArgumentNullException">
            Flags parameter is null.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.SetMessageRangeFlags(System.Int32,System.Int32,System.String[])">
      <summary>
            Replaces all the flags on a range of messages, except for the \Recent flag, with the specified flags.
            </summary>
      <param name="startingNumber">First message number.</param>
      <param name="endingNumber">Last message number.</param>
      <param name="flags">A collection of flags to set.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Starting number is out of range
            or
            Ending number is out of range.
            </exception>
      <exception cref="T:System.ArgumentNullException">
            Flags parameter is null.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.SetMessageRangeFlags(System.Int32,System.Int32,System.Collections.Generic.IEnumerable{System.String})">
      <summary>
            Replaces all the flags on a range of messages, except for the \Recent flag, with the specified flags.
            </summary>
      <param name="startingNumber">First message number.</param>
      <param name="endingNumber">Last message number.</param>
      <param name="flags">A collection of flags to set.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Starting number is out of range
            or
            Ending number is out of range.
            </exception>
      <exception cref="T:System.ArgumentNullException">
            Flags parameter is null.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.AddMessageFlags(System.String,System.String[])">
      <summary>
            Adds the specified flags without modifying existing message flags.
            </summary>
      <param name="uid">The message id.</param>
      <param name="flags">A collection of flags to add.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            UID operations are not supported
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            </exception>
      <exception cref="T:System.ArgumentNullException">
            Flags parameter is null.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.AddMessageFlags(System.String,System.Collections.Generic.IEnumerable{System.String})">
      <summary>
            Adds the specified flags without modifying existing message flags.
            </summary>
      <param name="uid">The message id.</param>
      <param name="flags">A collection of flags to add.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            UID operations are not supported
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            </exception>
      <exception cref="T:System.ArgumentNullException">
            Flags parameter is null.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.AddMessageFlags(System.Int32,System.String[])">
      <summary>
            Adds the specified flags without modifying existing message flags.
            </summary>
      <param name="messageNumber">The message number.</param>
      <param name="flags">A collection of flags to add.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Message number is out of range.
            </exception>
      <exception cref="T:System.ArgumentNullException">
            Flags parameter is null.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.AddMessageFlags(System.Int32,System.Collections.Generic.IEnumerable{System.String})">
      <summary>
            Adds the specified flags without modifying existing message flags.
            </summary>
      <param name="messageNumber">The message number.</param>
      <param name="flags">A collection of flags to add.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Message number is out of range.
            </exception>
      <exception cref="T:System.ArgumentNullException">
            Flags parameter is null.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.AddMessageRangeFlags(System.Int32,System.Int32,System.String[])">
      <summary>
            Adds the specified flags to a range of messages without modifying existing message flags.
            </summary>
      <param name="startingNumber">First message number.</param>
      <param name="endingNumber">Last message number.</param>
      <param name="flags">A collection of flags to add.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Starting number is out of range
            or
            Ending number is out of range.
            </exception>
      <exception cref="T:System.ArgumentNullException">
            Flags parameter is null.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.AddMessageRangeFlags(System.Int32,System.Int32,System.Collections.Generic.IEnumerable{System.String})">
      <summary>
            Adds the specified flags to a range of messages without modifying existing message flags.
            </summary>
      <param name="startingNumber">First message number.</param>
      <param name="endingNumber">Last message number.</param>
      <param name="flags">A collection of flags to add.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Starting number is out of range
            or
            Ending number is out of range.
            </exception>
      <exception cref="T:System.ArgumentNullException">
            Flags parameter is null.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.RemoveMessageFlags(System.String,System.String[])">
      <summary>
            Removes the message flags.
            </summary>
      <param name="uid">The message id.</param>
      <param name="flags">A collection of flags to remove.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            UID operations are not supported
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            </exception>
      <exception cref="T:System.ArgumentNullException">
            Flags parameter is null.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.RemoveMessageFlags(System.String,System.Collections.Generic.IEnumerable{System.String})">
      <summary>
            Removes the message flags.
            </summary>
      <param name="uid">The message id.</param>
      <param name="flags">A collection of flags to remove.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            UID operations are not supported
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            </exception>
      <exception cref="T:System.ArgumentNullException">
            Flags parameter is null.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.RemoveMessageFlags(System.Int32,System.String[])">
      <summary>
            Removes the message flags.
            </summary>
      <param name="messageNumber">The message number.</param>
      <param name="flags">A collection of flags to remove.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Message number is out of range.
            </exception>
      <exception cref="T:System.ArgumentNullException">
            Flags parameter is null.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.RemoveMessageFlags(System.Int32,System.Collections.Generic.IEnumerable{System.String})">
      <summary>
            Removes the message flags.
            </summary>
      <param name="messageNumber">The message number.</param>
      <param name="flags">A collection of flags to remove.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Message number is out of range.
            </exception>
      <exception cref="T:System.ArgumentNullException">
            Flags parameter is null.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.RemoveMessageRangeFlags(System.Int32,System.Int32,System.String[])">
      <summary>
            Removes the flags from specified range of messages.
            </summary>
      <param name="startingNumber">First message number.</param>
      <param name="endingNumber">Last message number.</param>
      <param name="flags">A collection of flags to remove.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Starting number is out of range
            or
            Ending number is out of range.
            </exception>
      <exception cref="T:System.ArgumentNullException">
            Flags parameter is null.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.RemoveMessageRangeFlags(System.Int32,System.Int32,System.Collections.Generic.IEnumerable{System.String})">
      <summary>
            Removes the flags from specified range of messages.
            </summary>
      <param name="startingNumber">First message number.</param>
      <param name="endingNumber">Last message number.</param>
      <param name="flags">A collection of flags to remove.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Starting number is out of range
            or
            Ending number is out of range.
            </exception>
      <exception cref="T:System.ArgumentNullException">
            Flags parameter is null.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.DeleteMessage(System.String,System.Boolean)">
      <summary>
            Deletes the specified message.
            </summary>
      <param name="uid">The message id.</param>
      <param name="expunge">
        <c>True</c> to delete message immediately from the server; otherwise, <c>false</c>.</param>
      <remarks>
            Setting expunge to true will specified delete message from the server and that message cannot be undeleted. By setting expunge to false, specified message will just be marked for deletion,
            but it won't be removed from the server until <see cref="M:GemBox.Email.Imap.ImapClient.Expunge"/> is called.
            </remarks>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            UID operations are not supported
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.DeleteMessage(System.Int32,System.Boolean)">
      <summary>
            Deletes the specified message.
            </summary>
      <param name="messageNumber">The message number.</param>
      <param name="expunge">
        <c>True</c> to delete message immediately from the server; otherwise, <c>false</c>.</param>
      <remarks>
            Setting expunge to true will delete specified message from the server and that message cannot be undeleted. By setting expunge to false, specified message will just be marked for deletion,
            but it won't be removed from the server until <see cref="M:GemBox.Email.Imap.ImapClient.Expunge"/> is called.
            </remarks>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Message number is out of range.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.DeleteMessageRange(System.Int32,System.Int32,System.Boolean)">
      <summary>
            Deletes the specified messages.
            </summary>
      <param name="startingNumber">First message number.</param>
      <param name="endingNumber">Last message number.</param>
      <param name="expunge">
        <c>True</c> to delete message immediately from the server; otherwise, <c>false</c>.</param>
      <remarks>
            Setting expunge to true will delete specified messages from the server and those messages cannot be undeleted. By setting expunge to false, specified messages will just be marked for deletion,
            but they won't be removed from the server until <see cref="M:GemBox.Email.Imap.ImapClient.Expunge"/> is called.
            </remarks>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Starting number is out of range
            or
            Ending number is out of range.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.UndeleteMessages">
      <summary>
            Undeletes all the messages marked for deletion.
            </summary>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Message number is out of range.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.UndeleteMessage(System.String)">
      <summary>
            Undeletes the specified message.
            </summary>
      <param name="uid">The message id.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            UID operations are not supported
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.UndeleteMessage(System.Int32)">
      <summary>
            Undeletes the specified message.
            </summary>
      <param name="messageNumber">The message number.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Message number is out of range.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.UndeleteMessageRange(System.Int32,System.Int32)">
      <summary>
            Undeletes the specified messages.
            </summary>
      <param name="startingNumber">First message number.</param>
      <param name="endingNumber">Last message number.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Starting number is out of range
            or
            Ending number is out of range.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.SearchMessageNumbers(System.String)">
      <summary>
            Searches for messages on the server that match the specified criteria.
            </summary>
      <param name="query">A search criteria string.</param>
      <returns>
            Read-only collection of message numbers that match specified criteria.
            </returns>
      <remarks>
            Method executes SEARCH command against the server and returns a list of message numbers that match specified criteria.
            Query is constructed of one or more search keys as defined in <a href="https://tools.ietf.org/html/rfc3501#section-6.4.4">RFC 3501 - section 6.4.4</a>.
            </remarks>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Query is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.SearchMessageUids(System.String)">
      <summary>
            Searches for messages on the server that match the specified criteria.
            </summary>
      <param name="query">A search criteria string.</param>
      <returns>
            Read-only collection of message ids that match specified criteria.
            </returns>
      <remarks>
            Method executes SEARCH command against the server and returns a list of message ids that match specified criteria.
            Query is constructed of one or more search keys as defined in <a href="https://tools.ietf.org/html/rfc3501#section-6.4.4">RFC 3501 - section 6.4.4</a>.
            </remarks>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Query is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.MoveMessage(System.Int32,System.String)">
      <summary>
            Moves the specified message to another folder.
            </summary>
      <param name="messageNumber">The message number.</param>
      <param name="destinationFolder">The destination folder name.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Destination folder is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.MoveMessage(System.String,System.String)">
      <summary>
            Moves the specified message to another folder.
            </summary>
      <param name="uid">The message id.</param>
      <param name="destinationFolder">The destination folder name.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Destination folder is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.MoveMessageRange(System.Int32,System.Int32,System.String)">
      <summary>
            Moves the specified range of messages to another folder.
            </summary>
      <param name="startingNumber">First message number.</param>
      <param name="endingNumber">Last message number.</param>
      <param name="destinationFolder">The destination folder name.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
            Starting number is out of range
            or
            Ending number is out of range.
            </exception>
      <exception cref="T:System.ArgumentException">
            Destination folder is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.IdleEnable">
      <summary>
            Enables IDLE mode with the refresh interval set to 29 minutes.
            </summary>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.IdleEnable(System.Int32)">
      <summary>
            Enables IDLE mode with the specified refresh interval.
            </summary>
      <param name="refreshInterval">The refresh interval in minutes.</param>
      <exception cref="T:System.InvalidOperationException">
            No folder is selected
            or
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.NotSupportedException">
            Server doesn't support IDLE command.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.IdleDisable">
      <summary>
            Disables IDLE mode.
            </summary>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Imap.ImapClient.UploadMessage(GemBox.Email.MailMessage,System.String)">
      <summary>
            Uploads the specified message to the given folder.
            </summary>
      <param name="message">The message.</param>
      <param name="destinationFolder">The destination folder name.</param>
      <exception cref="T:System.InvalidOperationException">
            Client must be authenticated before usage
            or
            Client could not be connected
            or
            Server error.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message is null,
            or
            destination folder is null or empty.
            </exception>
    </member>
    <member name="T:GemBox.Email.Imap.ImapFolderFlag">
      <summary>
            An enumeration of IMAP folder flags.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapFolderFlag.NoInferiors">
      <summary>
            Folder cannot have any subfolders.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapFolderFlag.NoSelect">
      <summary>
            Folder cannot be selected.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapFolderFlag.Marked">
      <summary>
            Folder has new messages since last time it was selected.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapFolderFlag.Unmarked">
      <summary>
            Folder doesn't have new messages since last time it was selected.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapFolderFlag.NonExistent">
      <summary>
            Folder doesn't exist or cannot be used as folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapFolderFlag.Subscribed">
      <summary>
            Folder is subscribed.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapFolderFlag.Remote">
      <summary>
            Remote folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapFolderFlag.HasChildren">
      <summary>
            Folder has subfolders.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapFolderFlag.HasNoChildren">
      <summary>
            Folder doesn't have any subfolders.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapFolderFlag.Inbox">
      <summary>
            Inbox folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapFolderFlag.All">
      <summary>
            All mail folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapFolderFlag.Archive">
      <summary>
            Archive folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapFolderFlag.Drafts">
      <summary>
            Drafts folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapFolderFlag.Flagged">
      <summary>
            Flagged or starred folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapFolderFlag.Junk">
      <summary>
            Junk or spam folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapFolderFlag.Sent">
      <summary>
            Sent mail folder.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapFolderFlag.Trash">
      <summary>
            Deleted mail folder.
            </summary>
    </member>
    <member name="T:GemBox.Email.Imap.ImapFolderInfo">
      <summary>
            Provides information about an IMAP folder
            </summary>
    </member>
    <member name="P:GemBox.Email.Imap.ImapFolderInfo.Name">
      <summary>
            Gets the folder name.
            </summary>
      <value>
        <see cref="T:System.String"/> value representing folder name.
            </value>
    </member>
    <member name="P:GemBox.Email.Imap.ImapFolderInfo.Delimiter">
      <summary>
            Gets the folder name delimiter.
            </summary>
      <value>
        <see cref="T:System.String"/> value representing folder name delimiter.
            </value>
    </member>
    <member name="P:GemBox.Email.Imap.ImapFolderInfo.Flags">
      <summary>
            Gets the folder flags.
            </summary>
      <value>
            Read-only collection of <see cref="T:GemBox.Email.Imap.ImapFolderFlag"/> values.
            </value>
    </member>
    <member name="M:GemBox.Email.Imap.ImapFolderInfo.ToString">
      <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
      <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
    </member>
    <member name="T:GemBox.Email.Imap.ImapFolderStatus">
      <summary>
            Represents an IMAP folder status.
            </summary>
    </member>
    <member name="P:GemBox.Email.Imap.ImapFolderStatus.Name">
      <summary>
            Gets the folder name.
            </summary>
      <value>
        <see cref="T:System.String"/> value representing folder name.
            </value>
    </member>
    <member name="P:GemBox.Email.Imap.ImapFolderStatus.IsReadOnly">
      <summary>
            Gets a value indicating whether folder is read only.
            </summary>
      <value>
        <c>True</c> if this instance is read only; otherwise, <c>false</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Imap.ImapFolderStatus.Count">
      <summary>
            Gets mail message count for the folder.
            </summary>
      <value>
            Then number of mail messages.
            </value>
    </member>
    <member name="P:GemBox.Email.Imap.ImapFolderStatus.Recent">
      <summary>
            Gets the number of mail messages with \Recent flag set.
            </summary>
      <value>
            The number of recent mail messages.
            </value>
    </member>
    <member name="P:GemBox.Email.Imap.ImapFolderStatus.Unseen">
      <summary>
            Gets the message number of first unseen mail message in the folder.
            </summary>
      <value>
            The message number of first unseen mail message.
            </value>
      <remarks>
            Property is nullable because some mail servers don't provide or support it.
            </remarks>
    </member>
    <member name="P:GemBox.Email.Imap.ImapFolderStatus.UidValidity">
      <summary>
            Gets the unique identifier validity value.
            </summary>
      <value>
            The unique identifier validity value.
            </value>
      <remarks>
            Represents unique value that can be used for detecting folder changes. More detail can be found in <a href="http://tools.ietf.org/html/rfc3501#section-2.3.1.1">RFC 3501 - section 2.3.1.1</a>.
            If this value is null, mail server doesn't support UID commands.
            </remarks>
    </member>
    <member name="P:GemBox.Email.Imap.ImapFolderStatus.UidNext">
      <summary>
            Gets the next unique identifier value.
            </summary>
      <value>
            The next unique identifier value.
            </value>
      <remarks>
            Represents unique value that can be used for detecting folder changes. More detail can be found in <a href="http://tools.ietf.org/html/rfc3501#section-2.3.1.1">RFC 3501 - section 2.3.1.1</a>.
            </remarks>
    </member>
    <member name="P:GemBox.Email.Imap.ImapFolderStatus.Flags">
      <summary>
            Gets the defined folder flags.
            </summary>
      <value>
            A read-only collection of defined folder flags.
            </value>
    </member>
    <member name="P:GemBox.Email.Imap.ImapFolderStatus.PermanentFlags">
      <summary>
            Gets the permanent folder flags.
            </summary>
      <value>
            A read-only collection of permanent folder flags.
            </value>
      <remarks>
            A list of message flags that the client can change permanently, not only for current session. If collection is empty, all flags can be changed permanently.
            </remarks>
    </member>
    <member name="T:GemBox.Email.Imap.ImapMessageFlags">
      <summary>
            Represents the collection of IMAP message flags.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapMessageFlags.Seen">
      <summary>
            The seen message flag.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapMessageFlags.Answered">
      <summary>
            The answered message flag.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapMessageFlags.Flagged">
      <summary>
            The flagged or starred message flag.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapMessageFlags.Deleted">
      <summary>
            The deleted message flag.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapMessageFlags.Draft">
      <summary>
            The draft message flag.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapMessageFlags.Recent">
      <summary>
            The recent message flag.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapMessageFlags.NonJunk">
      <summary>
            The non-junk message flag.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapMessageFlags.Forwarded">
      <summary>
            The forwarded message flag.
            </summary>
    </member>
    <member name="F:GemBox.Email.Imap.ImapMessageFlags.MdnSent">
      <summary>
            The MDN sent message flag.
            </summary>
    </member>
    <member name="T:GemBox.Email.Imap.ImapMessageInfo">
      <summary>
            Provides information about an IMAP mail message.
            </summary>
    </member>
    <member name="P:GemBox.Email.Imap.ImapMessageInfo.Number">
      <summary>
            Gets the message number.
            </summary>
      <value>
            The message number.
            </value>
    </member>
    <member name="P:GemBox.Email.Imap.ImapMessageInfo.Uid">
      <summary>
            Gets the message uid.
            </summary>
      <value>
            The message uid.
            </value>
    </member>
    <member name="P:GemBox.Email.Imap.ImapMessageInfo.Size">
      <summary>
            Gets the message size in bytes.
            </summary>
      <value>
            The message size in bytes.
            </value>
    </member>
    <member name="P:GemBox.Email.Imap.ImapMessageInfo.Flags">
      <summary>
            Gets the message flags.
            </summary>
      <value>
            A read-only collection of message flags.
            </value>
    </member>
    <member name="T:GemBox.Email.LicenseException">
      <summary>
            Represents an exception which is thrown when there is a problem with license key.
            </summary>
    </member>
    <member name="T:GemBox.Email.MailAddress">
      <summary>
            Represents MIME mail (mailbox) address.
            </summary>
    </member>
    <member name="M:GemBox.Email.MailAddress.#ctor(System.String)">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.MailAddress"/> class with specified address.
            </summary>
      <param name="address">The address.</param>
    </member>
    <member name="M:GemBox.Email.MailAddress.#ctor(System.String,System.String)">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.MailAddress"/> class with specified address and display name.
            </summary>
      <param name="address">The address.</param>
      <param name="displayName">The display name.</param>
    </member>
    <member name="P:GemBox.Email.MailAddress.Address">
      <summary>
            Gets or sets the address.
            </summary>
      <value>
            The address.
            </value>
      <exception cref="T:System.ArgumentException">
            Address is null or empty.
            </exception>
    </member>
    <member name="P:GemBox.Email.MailAddress.DisplayName">
      <summary>
            Gets or sets the display name.
            </summary>
      <value>
            The display name.
            </value>
    </member>
    <member name="P:GemBox.Email.MailAddress.User">
      <summary>
            Gets the user part of address.
            </summary>
      <value>
            The user part of address.
            </value>
    </member>
    <member name="P:GemBox.Email.MailAddress.Host">
      <summary>
            Gets the host part of address.
            </summary>
      <value>
            The host part of address.
            </value>
    </member>
    <member name="M:GemBox.Email.MailAddress.GetHashCode">
      <summary>
            Returns a hash code for this instance.
            </summary>
      <returns>
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
            </returns>
    </member>
    <member name="M:GemBox.Email.MailAddress.Equals(System.Object)">
      <summary>
            Determines whether the specified <see cref="T:System.Object"/>, is equal to this instance.
            </summary>
      <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
      <returns>
        <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
    </member>
    <member name="M:GemBox.Email.MailAddress.ToString">
      <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
      <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
    </member>
    <member name="T:GemBox.Email.MailAddressCollection">
      <summary>
            Represents a collection of <see cref="T:GemBox.Email.MailAddress"/> elements.
            </summary>
    </member>
    <member name="M:GemBox.Email.MailAddressCollection.SetItem(System.Int32,GemBox.Email.MailAddress)">
      <summary>
            Replaces the element at the specified index.
            </summary>
      <param name="index">The zero-based index of the element to replace.</param>
      <param name="item">The new value for the element at the specified index.</param>
      <exception cref="T:System.ArgumentNullException">
            Item is null.
            </exception>
    </member>
    <member name="M:GemBox.Email.MailAddressCollection.InsertItem(System.Int32,GemBox.Email.MailAddress)">
      <summary>
            Inserts an element into the collection at the specified index.
            </summary>
      <param name="index">The zero-based index at which item should be inserted.</param>
      <param name="item">The object to insert.</param>
    </member>
    <member name="M:GemBox.Email.MailAddressCollection.RemoveItem(System.Int32)">
      <summary>
            Removes the element at the specified index of the collection.
            </summary>
      <param name="index">The zero-based index of the element to remove.</param>
    </member>
    <member name="M:GemBox.Email.MailAddressCollection.ClearItems">
      <summary>
            Removes all elements from the collection.
            </summary>
    </member>
    <member name="M:GemBox.Email.MailAddressCollection.Add(GemBox.Email.MailAddress[])">
      <summary>
            Adds the specified collection of addresses.
            </summary>
      <param name="items">The collection whose elements will be added to the end of this <see cref="T:GemBox.Email.MailAddressCollection"/>.</param>
    </member>
    <member name="M:GemBox.Email.MailAddressCollection.Add(System.Collections.Generic.IEnumerable{GemBox.Email.MailAddress})">
      <summary>
            Adds the specified collection of addresses.
            </summary>
      <param name="items">The collection whose elements will be added to the end of this <see cref="T:GemBox.Email.MailAddressCollection"/>.</param>
      <exception cref="T:System.ArgumentNullException">items</exception>
    </member>
    <member name="M:GemBox.Email.MailAddressCollection.ToString">
      <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
      <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
    </member>
    <member name="M:GemBox.Email.MailAddressCollection.Contains(System.String)">
      <summary>
            Determines whether the collection contains the specified mail address.
            </summary>
      <param name="address">The mail address to search for.</param>
      <returns>
        <c>True</c> if collection contains the specified mail address; otherwise, <c>false</c>.
            </returns>
      <exception cref="T:System.ArgumentException">
            Address is null or empty.
            </exception>
    </member>
    <member name="T:GemBox.Email.MailAddressValidationOptions">
      <summary>
            An enumeration of mail address validation options.
            </summary>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-validate-email/401">Email Address Validation in C# and VB.NET</seealso>
    </member>
    <member name="F:GemBox.Email.MailAddressValidationOptions.Syntax">
      <summary>
            Validates mail address format.
            </summary>
    </member>
    <member name="F:GemBox.Email.MailAddressValidationOptions.Domain">
      <summary>
            Validates if mail address host (domain) exists.
            </summary>
    </member>
    <member name="F:GemBox.Email.MailAddressValidationOptions.Server">
      <summary>
            Validates the connection to the mail server
            </summary>
    </member>
    <member name="F:GemBox.Email.MailAddressValidationOptions.Mailbox">
      <summary>
            Validates if mail address exists on server.
            </summary>
    </member>
    <member name="T:GemBox.Email.MailAddressValidationResult">
      <summary>
            Represents a mail address validation result.
            </summary>
    </member>
    <member name="P:GemBox.Email.MailAddressValidationResult.Address">
      <summary>
            Gets validated email address.
            </summary>
    </member>
    <member name="P:GemBox.Email.MailAddressValidationResult.Status">
      <summary>
            Gets the validation status.
            </summary>
    </member>
    <member name="P:GemBox.Email.MailAddressValidationResult.ErrorDescription">
      <summary>
            Gets the validation error description if <see cref="P:GemBox.Email.MailAddressValidationResult.Status"/> is not <see cref="F:GemBox.Email.MailAddressValidationStatus.Ok"/>; otherwise, <see langword="null"/>.
            </summary>
    </member>
    <member name="M:GemBox.Email.MailAddressValidationResult.ToString">
      <summary>
            Returns a string that represents the current object.
            </summary>
      <returns>
            A string that represents the current object.
            </returns>
    </member>
    <member name="T:GemBox.Email.MailAddressValidationStatus">
      <summary>
            An enumeration of mail address validation statuses.
            </summary>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-validate-email/401">Email Address Validation in C# and VB.NET</seealso>
    </member>
    <member name="F:GemBox.Email.MailAddressValidationStatus.Ok">
      <summary>
            Mail address is valid.
            </summary>
    </member>
    <member name="F:GemBox.Email.MailAddressValidationStatus.InvalidFormat">
      <summary>
            Invalid mail address format.
            </summary>
    </member>
    <member name="F:GemBox.Email.MailAddressValidationStatus.InvalidHost">
      <summary>
            Mail address host (domain) doesn't exist.
            </summary>
    </member>
    <member name="F:GemBox.Email.MailAddressValidationStatus.ServerConnectionError">
      <summary>
            Connection to mail server failed.
            </summary>
    </member>
    <member name="F:GemBox.Email.MailAddressValidationStatus.ServerTemporarilyUnavailable">
      <summary>
            The mail server is temporarily unavailable. Try again later.
            </summary>
    </member>
    <member name="F:GemBox.Email.MailAddressValidationStatus.ServerError">
      <summary>
            Server processing error.
            </summary>
    </member>
    <member name="F:GemBox.Email.MailAddressValidationStatus.InvalidAddress">
      <summary>
            Mail address doesn't exist.
            </summary>
    </member>
    <member name="T:GemBox.Email.MailAddressValidator">
      <summary>
            Contains static methods for mail address validation.
            </summary>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-validate-email/401">Email Address Validation in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.MailAddressValidator.Validate(System.String)">
      <summary>
            Validates the specified mail address.
            </summary>
      <param name="address">The mail address.</param>
      <returns>
            A <see cref="T:GemBox.Email.MailAddressValidationResult"/> value, representing the result of validation.
            </returns>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-validate-email/401">Email Address Validation in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.MailAddressValidator.Validate(System.String,GemBox.Email.MailAddressValidationOptions)">
      <summary>
            Validates the specified mail address
            </summary>
      <param name="address">The mail address.</param>
      <param name="options">Indicates which options will be validated</param>
      <returns>
            A <see cref="T:GemBox.Email.MailAddressValidationResult"/> value, representing the result of validation.
            </returns>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-validate-email/401">Email Address Validation in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.MailAddressValidator.Validate(GemBox.Email.MailAddress)">
      <summary>
            Validates the specified mail address.
            </summary>
      <param name="address">The mail address.</param>
      <returns>
            A <see cref="T:GemBox.Email.MailAddressValidationResult"/> value, representing the result of validation.
            </returns>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-validate-email/401">Email Address Validation in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.MailAddressValidator.Validate(GemBox.Email.MailAddress,GemBox.Email.MailAddressValidationOptions)">
      <summary>
            Validates the specified mail address.
            </summary>
      <param name="address">The mail address.</param>
      <param name="options">Indicates which options will be validated</param>
      <returns>
            A <see cref="T:GemBox.Email.MailAddressValidationResult"/> value, representing the result of validation.
            </returns>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-validate-email/401">Email Address Validation in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.MailAddressValidator.Validate(System.Collections.Generic.IEnumerable{System.String})">
      <summary>
            Validates the collection of mail addresses.
            </summary>
      <param name="addresses">The collection of mail addresses.</param>
      <returns>
            A read-only list of <see cref="T:GemBox.Email.MailAddressValidationResult"/> values, representing the results of validation.
            </returns>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-validate-email/401">Email Address Validation in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.MailAddressValidator.Validate(System.Collections.Generic.IEnumerable{System.String},GemBox.Email.MailAddressValidationOptions)">
      <summary>
            Validates the collection of mail addresses.
            </summary>
      <param name="addresses">The collection of mail addresses.</param>
      <param name="options">Indicates which options will be validated</param>
      <returns>
            A read-only list of <see cref="T:GemBox.Email.MailAddressValidationResult"/> values, representing the results of validation.
            </returns>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-validate-email/401">Email Address Validation in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.MailAddressValidator.Validate(System.Collections.Generic.IEnumerable{GemBox.Email.MailAddress})">
      <summary>
            Validates the collection of mail addresses.
            </summary>
      <param name="addresses">The collection of mail addresses.</param>
      <returns>
            A read-only list of <see cref="T:GemBox.Email.MailAddressValidationResult"/> values, representing the results of validation.
            </returns>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-validate-email/401">Email Address Validation in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.MailAddressValidator.Validate(System.Collections.Generic.IEnumerable{GemBox.Email.MailAddress},GemBox.Email.MailAddressValidationOptions)">
      <summary>
            Validates the collection of mail addresses.
            </summary>
      <param name="addresses">The collection of mail addresses.</param>
      <param name="options">Indicates which options will be validated</param>
      <returns>
            A read-only list of <see cref="T:GemBox.Email.MailAddressValidationResult"/> values, representing the results of validation.
            </returns>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-validate-email/401">Email Address Validation in C# and VB.NET</seealso>
    </member>
    <member name="T:GemBox.Email.MailMerge">
      <summary>
            Contains methods for mail merge; creating multiple messages based on a template message and variable data.
            </summary>
    </member>
    <member name="M:GemBox.Email.MailMerge.Merge(GemBox.Email.MailMessage,System.Data.DataTable)">
      <summary>
            Generates a collection of mail messages based on the specified template and populated with provided data.
            </summary>
      <param name="template">The template mail message.</param>
      <param name="data">The data source.</param>
      <returns>
            A read-only collection of mail messages based on the specified template and populated with provided data.
            </returns>
      <remarks>
            Method returns a collection of messages based on the specified template. Strings starting and ending with delimiter (%) are replaced with values from provided data source.
            These variables can be used in: <see cref="P:GemBox.Email.MailMessage.Subject"/>, <see cref="P:GemBox.Email.MailMessage.BodyText"/> and <see cref="P:GemBox.Email.MailMessage.BodyHtml"/> properties.
            <para><note>
            Data source must contain value named 'To' which represents receiver mail address. Other predefined value names are: 'Cc', 'Bcc' and 'ReplyTo'.
            </note></para></remarks>
      <exception cref="T:System.ArgumentNullException">
            Template is null
            or
            Data source is null
            </exception>
    </member>
    <member name="M:GemBox.Email.MailMerge.Merge``1(GemBox.Email.MailMessage,System.Collections.Generic.IEnumerable{``0})">
      <summary>
            Generates a collection of mail messages based on the specified template and populated with provided data.
            </summary>
      <typeparam name="T">The type of data elements in the collection.</typeparam>
      <param name="template">The template mail message.</param>
      <param name="items">The generic list of objects used as data source.</param>
      <returns>
            A read-only collection of mail messages based on the specified template and populated with provided data.
            </returns>
      <remarks>
            Method returns a collection of messages based on the specified template. Strings starting and ending with delimiter (%) are replaced with values from provided data source.
            These variables can be used in: <see cref="P:GemBox.Email.MailMessage.Subject"/>, <see cref="P:GemBox.Email.MailMessage.BodyText"/> and <see cref="P:GemBox.Email.MailMessage.BodyHtml"/> properties.
            <para><note>
            Data source must contain value named 'To' which represents receiver mail address. Other predefined value names are: 'Cc', 'Bcc' and 'ReplyTo'.
            </note></para></remarks>
      <exception cref="T:System.ArgumentNullException">
            Template is null
            or
            Data source is null
            </exception>
    </member>
    <member name="M:GemBox.Email.MailMerge.Merge(GemBox.Email.MailMessage,GemBox.Email.IMailMergeDataSource)">
      <summary>
            Generates a collection of mail messages based on the specified template and populated with provided data.
            </summary>
      <param name="template">The template mail message.</param>
      <param name="dataSource">The data source.</param>
      <returns>
            A read-only collection of mail messages based on the specified template and populated with provided data.
            </returns>
      <remarks>
            Method returns a collection of messages based on the specified template. Strings starting and ending with delimiter (%) are replaced with values from provided data source.
            These variables can be used in: <see cref="P:GemBox.Email.MailMessage.Subject"/>, <see cref="P:GemBox.Email.MailMessage.BodyText"/> and <see cref="P:GemBox.Email.MailMessage.BodyHtml"/> properties.
            <para><note>
            Data source must contain value named 'To' which represents receiver mail address. Other predefined value names are: 'Cc', 'Bcc' and 'ReplyTo'.
            </note></para></remarks>
      <exception cref="T:System.ArgumentNullException">
            Template is null
            or
            Data source is null
            </exception>
    </member>
    <member name="T:GemBox.Email.MailMessage">
      <summary>
            Represents an email message.
            </summary>
    </member>
    <member name="P:GemBox.Email.MailMessage.RequestDeliveryReceipt">
      <summary>
            Gets or sets if the message should be sent with a delivery receipt request
            </summary>
    </member>
    <member name="P:GemBox.Email.MailMessage.RequestReadReceipt">
      <summary>
            Gets or sets if the message should be sent with a read receipt request
            </summary>
    </member>
    <member name="M:GemBox.Email.MailMessage.#ctor">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.MailMessage"/> class.
            </summary>
    </member>
    <member name="M:GemBox.Email.MailMessage.#ctor(GemBox.Email.MailAddress)">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.MailMessage"/> class with specified sender.
            </summary>
      <param name="from">The sender address.</param>
    </member>
    <member name="M:GemBox.Email.MailMessage.#ctor(System.String)">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.MailMessage"/> class with specified sender.
            </summary>
      <param name="from">The sender address.</param>
    </member>
    <member name="M:GemBox.Email.MailMessage.#ctor(System.String,System.String[])">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.MailMessage"/> class with specified sender and recipient addresses.
            </summary>
      <param name="from">The sender address.</param>
      <param name="to">The recipient addresses.</param>
    </member>
    <member name="M:GemBox.Email.MailMessage.#ctor(GemBox.Email.MailAddress,GemBox.Email.MailAddress[])">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.MailMessage"/> class with specified sender and recipient addresses.
            </summary>
      <param name="from">The sender address.</param>
      <param name="to">The recipient addresses.</param>
    </member>
    <member name="P:GemBox.Email.MailMessage.ConversationIndex">
      <summary>
        <para>Gets the conversation index for this message.</para>
        <note type="note">Only available for .MSG files.</note>
      </summary>
    </member>
    <member name="P:GemBox.Email.MailMessage.MimeEntity">
      <summary>
            Gets the underlying MIME entity.
            </summary>
      <value>
            The underlying MIME entity.
            </value>
      <exception cref="T:System.ArgumentNullException">value</exception>
    </member>
    <member name="P:GemBox.Email.MailMessage.Sender">
      <summary>
            Gets or sets the sender address
            </summary>
      <value>
            The sender address.
            </value>
    </member>
    <member name="P:GemBox.Email.MailMessage.From">
      <summary>
            Gets the 'From' address collection.
            </summary>
      <value>
            The 'From' address collection.
            </value>
    </member>
    <member name="P:GemBox.Email.MailMessage.To">
      <summary>
            Gets the 'To' address collection.
            </summary>
      <value>
            The 'To' address collection.
            </value>
    </member>
    <member name="P:GemBox.Email.MailMessage.Cc">
      <summary>
            Gets the 'Cc' address collection.
            </summary>
      <value>
            The 'Cc' address collection.
            </value>
    </member>
    <member name="P:GemBox.Email.MailMessage.Bcc">
      <summary>
            Gets the 'Bcc' address collection.
            </summary>
      <value>
            The 'Bcc' address collection.
            </value>
    </member>
    <member name="P:GemBox.Email.MailMessage.ReplyTo">
      <summary>
            Gets the 'Reply-To' address collection.
            </summary>
      <value>
            The 'Reply-To' address collection.
            </value>
    </member>
    <member name="P:GemBox.Email.MailMessage.Id">
      <summary>
            Gets or sets the message id.
            </summary>
      <value>
            The message id.
            </value>
    </member>
    <member name="P:GemBox.Email.MailMessage.Date">
      <summary>
            Gets or sets the message date.
            </summary>
      <value>
            The message date.
            </value>
    </member>
    <member name="P:GemBox.Email.MailMessage.Subject">
      <summary>
            Gets or sets the message subject.
            </summary>
      <value>
            The message subject.
            </value>
    </member>
    <member name="P:GemBox.Email.MailMessage.BodyText">
      <summary>
            Gets or sets the message text body.
            </summary>
      <value>
            The message text body.
            </value>
    </member>
    <member name="P:GemBox.Email.MailMessage.BodyTextCharset">
      <summary>
            Gets or sets the message text body charset.
            </summary>
      <value>
            The message text body charset.
            </value>
    </member>
    <member name="P:GemBox.Email.MailMessage.BodyHtml">
      <summary>
            Gets or sets the message HTML body.
            </summary>
      <value>
            The message HTML body.
            </value>
    </member>
    <member name="P:GemBox.Email.MailMessage.IsSigned">
      <summary>
            Gets a value indicating whether this <see cref="T:GemBox.Email.MailMessage"/> is signed.
            </summary>
      <remarks>
            Signed <see cref="T:GemBox.Email.MailMessage"/> are <b>read-only</b>, so any attempts to change the content (body or attachments) will result in an <see cref="T:System.InvalidOperationException"/> being thrown. <br/>
            Nonetheless, it is possible to call <see cref="M:GemBox.Email.MailMessage.Unsign"/> to access a new, unsigned and changeable <see cref="T:GemBox.Email.MailMessage"/>.
            </remarks>
    </member>
    <member name="P:GemBox.Email.MailMessage.MessageSecurity">
      <summary>
            Gets a value indicating the type of security that is applied to this <see cref="T:GemBox.Email.MailMessage"/>.
            </summary>
    </member>
    <member name="P:GemBox.Email.MailMessage.Attachments">
      <summary>
            Gets the attachments collection.
            </summary>
      <value>
            The attachments collection.
            </value>
    </member>
    <member name="P:GemBox.Email.MailMessage.Calendars">
      <summary>
            Gets the calendars collection. Changes made to calendars retrieved through this property
            will NOT be synchronized with <see cref="T:GemBox.Email.MailMessage"/>.
            </summary>
      <value>
            The calendars collection.
            </value>
      <remarks>
            Calendars are currently not load from and saved to MSG file format.
            </remarks>
    </member>
    <member name="P:GemBox.Email.MailMessage.Priority">
      <summary>
            Gets or sets the message priority.
            </summary>
      <value>
            The message priority.
            </value>
      <remarks>
        <para>Priority is advisory and may be interpreted differently (or ignored) by mail clients.</para>
        <para>The getter derives the value from the <c>Priority</c>, <c>X-Priority</c>, and <c>Importance</c> headers, in that order.</para>
        <para>The setter updates all three headers to improve client compatibility, or removes them when set to <see cref="F:GemBox.Email.MailPriority.Normal"/>.</para>
      </remarks>
    </member>
    <member name="M:GemBox.Email.MailMessage.Clone">
      <summary>
            Creates the copy of this <see cref="T:GemBox.Email.MailMessage"/> instance.
            </summary>
      <returns>
            The copy of this <see cref="T:GemBox.Email.MailMessage"/> instance.
            </returns>
    </member>
    <member name="M:GemBox.Email.MailMessage.Save(System.String)">
      <summary>
            Saves the message to a file.
            </summary>
      <param name="filePath">A relative or absolute path for the file where message will be saved.</param>
      <exception cref="T:System.ArgumentException">
            File path is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.MailMessage.Save(System.String,GemBox.Email.MailMessageFormat)">
      <summary>
            Saves the message to a file.
            </summary>
      <param name="filePath">A relative or absolute path for the file where message will be saved.</param>
      <param name="format">The message format.</param>
      <exception cref="T:System.ArgumentException">
            File path is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.MailMessage.Save(System.IO.Stream,GemBox.Email.MailMessageFormat)">
      <summary>
            Saves the message to a stream.
            </summary>
      <param name="stream">The stream to save the message to.</param>
      <param name="format">The message format.</param>
      <exception cref="T:System.ArgumentNullException">
            Stream is null.
            </exception>
      <exception cref="T:System.ArgumentException">
            Unknown message format.
            </exception>
    </member>
    <member name="M:GemBox.Email.MailMessage.Load(System.String)">
      <summary>
            Loads the message from the specified file.
            </summary>
      <param name="filePath">A relative or absolute path to the file.</param>
      <returns>
        <see cref="T:GemBox.Email.MailMessage"/> instance.
            </returns>
      <exception cref="T:System.ArgumentException">
            File path is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.MailMessage.Load(System.String,GemBox.Email.MailMessageFormat)">
      <summary>
            Loads the message from the specified file.
            </summary>
      <param name="filePath">A relative or absolute path to the file.</param>
      <param name="format">The message format.</param>
      <returns>
        <see cref="T:GemBox.Email.MailMessage"/> instance.
            </returns>
      <exception cref="T:System.ArgumentException">
            File path is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.MailMessage.Load(System.IO.Stream,GemBox.Email.MailMessageFormat)">
      <summary>
            Loads the message from the specified stream.
            </summary>
      <param name="stream">The stream from which the message will be loaded.</param>
      <param name="format">The message format.</param>
      <returns>
        <see cref="T:GemBox.Email.MailMessage"/> instance.
            </returns>
      <exception cref="T:System.ArgumentNullException">
            Stream is null.
            </exception>
      <exception cref="T:System.ArgumentException">
            Unknown message format.
            </exception>
    </member>
    <member name="M:GemBox.Email.MailMessage.Sign(GemBox.Email.DigitalSignatureOptions)">
      <summary>
            Applies a digital signature to this <see cref="T:GemBox.Email.MailMessage"/> based on given <see cref="T:GemBox.Email.DigitalSignatureOptions"/>.
            </summary>
      <param name="options">The <see cref="T:GemBox.Email.DigitalSignatureOptions"/> to be used while creating the signature.</param>
      <remarks>
            Signed <see cref="T:GemBox.Email.MailMessage"/> are <b>read-only</b>, so any attempts to change the content (body or attachments) will result in an <see cref="T:System.InvalidOperationException"/> being thrown. <br/>
            Nonetheless, it is possible to call <see cref="M:GemBox.Email.MailMessage.Unsign"/> to remove it's signature and make it changeable again.
            </remarks>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:GemBox.Email.MailMessage.IsSigned"/> is <see langword="true"/>.</exception>
      <exception cref="T:System.ArgumentNullException">
        <see cref="P:GemBox.Email.DigitalSignatureOptions.Certificate"/> and <see cref="P:GemBox.Email.DigitalSignatureOptions.CertificatePath"/> are <see langword="null"/>.</exception>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-vb-net-sign-email/1202">How to sign and unsign an e-mail in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.MailMessage.ValidateSignature">
      <summary>
            Verifies if this message's signature is valid and if the certificate used to generate it is still active.
            </summary>
      <remarks>If <see cref="P:GemBox.Email.MailMessage.IsSigned"/> is <see langword="false"/>, this method will always return <see langword="false"/>.</remarks>
      <returns>If this message's signature is valid, <see langword="true"/>, if not, <see langword="false"/>.</returns>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-vb-net-sign-email/1202">How to validate a signed e-mail in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.MailMessage.GetSignature">
      <summary>
            Gets information on the signature applied to this message (if it exists) and the certificate used to create it.
            </summary>
    </member>
    <member name="M:GemBox.Email.MailMessage.Unsign">
      <summary>
            Removes the digital signature from this <see cref="T:GemBox.Email.MailMessage"/> and removes it's read-only status.
            </summary>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:GemBox.Email.MailMessage.IsSigned"/> is <see langword="false"/>.</exception>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-vb-net-sign-email/1202">How to sign and unsign an e-mail in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.MailMessage.GetTaggedProperty(GemBox.Email.Msg.Properties.PropertyTag)">
      <summary>
            Returns the value stored into a specific tagged property. Works only for messages loaded from MSG files.
            </summary>
      <param name="tag">The ID of the tag from which to retrieve the value.</param>
      <returns>An <see cref="T:System.Object"/> containing the value of the specified tag or <see langword="null"/> if the property was not found. </returns>
    </member>
    <member name="M:GemBox.Email.MailMessage.SetTaggedProperty(GemBox.Email.Msg.Properties.PropertyTag,System.Object)">
      <summary>
            Explicitly sets the value of a tagged property. Works only for messages that will be saved to a MSG file.
            Items set with this method will be written when saving the message to .msg, overwriting
            any other properties normally set by other members, which can cause errors. <br/>
            For example, setting <see cref="F:GemBox.Email.Msg.Properties.PropertyTag.Subject"/> will override the subject regardless of what is on <see cref="P:GemBox.Email.MailMessage.Subject"/>.
            </summary>
      <param name="tag">The ID of the tag to set.</param>
      <param name="value">The value of the tagged property.</param>
    </member>
    <member name="M:GemBox.Email.MailMessage.GetNamedProperty(GemBox.Email.Msg.Properties.PropertyLid)">
      <summary>
            Returns the value stored into a specific named property. Works only for messages loaded from MSG files or <see cref="T:GemBox.Email.Exchange.ExchangeClient"/>.
            </summary>
      <param name="lid">The ID of the tag from which to retrieve the value.</param>
      <returns>An <see cref="T:System.Object"/> containing the value of the specified property or <see langword="null"/> if the property was not found. </returns>
    </member>
    <member name="M:GemBox.Email.MailMessage.SetNamedProperty(GemBox.Email.Msg.Properties.PropertyLid,System.Object)">
      <summary>
            Explicitly sets the value of a named property. Works only for messages that will be saved to an MSG file or sent/updated through <see cref="T:GemBox.Email.Exchange.ExchangeClient"/>.
            </summary>
      <param name="lid">The ID of the property to set.</param>
      <param name="value">The value of the named property.</param>
    </member>
    <member name="M:GemBox.Email.MailMessage.GetEmbeddedBodyHtml">
      <summary>
            Gets the message HTML body with embedded images replaced by inlined images (base64-encoded data URIs).
            </summary>
      <returns>The message HTML body with embedded images replaced by inline data URIs.</returns>
    </member>
    <member name="T:GemBox.Email.MailMessageCollection">
      <summary>
            Represents a collection of <see cref="T:GemBox.Email.MailMessage"/> elements.
            </summary>
    </member>
    <member name="M:GemBox.Email.MailMessageCollection.#ctor">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.MailMessageCollection"/> class.
            </summary>
    </member>
    <member name="M:GemBox.Email.MailMessageCollection.#ctor(System.Collections.Generic.IList{GemBox.Email.MailMessage})">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.MailMessageCollection"/> class from a list of mail messages.
            </summary>
      <param name="list">List of mail messages</param>
    </member>
    <member name="M:GemBox.Email.MailMessageCollection.Save(System.String)">
      <summary>
            Saves the message collection to a file.
            </summary>
      <param name="filePath">A relative or absolute path for the file where message will be saved.</param>
      <exception cref="T:System.ArgumentException">
            File path is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.MailMessageCollection.Save(System.String,GemBox.Email.MailMessageFormat)">
      <summary>
            Saves the message collection to a file.
            </summary>
      <param name="filePath">A relative or absolute path for the file where message collection will be saved.</param>
      <param name="format">The message collection format.</param>
      <exception cref="T:System.ArgumentException">
            File path is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.MailMessageCollection.Save(System.IO.Stream,GemBox.Email.MailMessageFormat)">
      <summary>
            Saves the message collection to a stream.
            </summary>
      <param name="stream">The stream to save the message collection to.</param>
      <param name="format">The message collection format.</param>
      <exception cref="T:System.ArgumentNullException">
            Stream is null.
            </exception>
      <exception cref="T:System.ArgumentException">
            Unsupported message collection format.
            </exception>
    </member>
    <member name="M:GemBox.Email.MailMessageCollection.Load(System.String)">
      <summary>
            Loads the collection of all messages from the specified file.
            </summary>
      <param name="filePath">A relative or absolute path to the file.</param>
      <returns>
        <see cref="T:GemBox.Email.MailMessageCollection"/> instance.
            </returns>
      <exception cref="T:System.ArgumentException">
            File path is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.MailMessageCollection.Load(System.String,GemBox.Email.MailMessageFormat)">
      <summary>
            Loads the collection of all messages from the specified file.
            </summary>
      <param name="filePath">A relative or absolute path to the file.</param>
      <param name="format">The message collection format.</param>
      <returns>
        <see cref="T:GemBox.Email.MailMessageCollection"/> instance.
            </returns>
      <exception cref="T:System.ArgumentException">
            File path is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.MailMessageCollection.Load(System.IO.Stream,GemBox.Email.MailMessageFormat)">
      <summary>
            Loads the collection of all messages from the specified stream.
            </summary>
      <param name="stream">The stream from which the message collection will be loaded.</param>
      <param name="format">The message collection format.</param>
      <returns>
        <see cref="T:GemBox.Email.MailMessageCollection"/> instance.
            </returns>
      <exception cref="T:System.ArgumentNullException">
            Stream is null.
            </exception>
      <exception cref="T:System.ArgumentException">
            Unknown message collection format.
            </exception>
    </member>
    <member name="M:GemBox.Email.MailMessageCollection.Load(System.String,System.Int32)">
      <summary>
            Loads the message at the specific position from the specified file.
            </summary>
      <param name="filePath">A relative or absolute path to the file.</param>
      <param name="index">Position of the message to be loaded, indexed from zero</param>
      <returns>
        <see cref="T:GemBox.Email.MailMessage"/> instance.
            </returns>
      <exception cref="T:System.ArgumentException">
            File path is null or empty.
            </exception>
      <exception cref="T:System.IndexOutOfRangeException">
            Message with a given index was not found.
            </exception>
    </member>
    <member name="M:GemBox.Email.MailMessageCollection.Load(System.String,GemBox.Email.MailMessageFormat,System.Int32)">
      <summary>
            Loads the message at the specific position from the specified file.
            </summary>
      <param name="filePath">A relative or absolute path to the file.</param>
      <param name="format">The message collection format.</param>
      <param name="index">Position of the message to be loaded, indexed from zero</param>
      <returns>
        <see cref="T:GemBox.Email.MailMessage"/> instance.
            </returns>
      <exception cref="T:System.ArgumentException">
            File path is null or empty.
            </exception>
      <exception cref="T:System.IndexOutOfRangeException">
            Message with a given index was not found.
            </exception>
    </member>
    <member name="M:GemBox.Email.MailMessageCollection.Load(System.IO.Stream,GemBox.Email.MailMessageFormat,System.Int32)">
      <summary>
            Loads the message at the specific position from the specified stream.
            </summary>
      <param name="stream">The stream from which the message will be loaded.</param>
      <param name="format">The message collection format.</param>
      <param name="index">Position of the message to be loaded, indexed from zero</param>
      <returns>
        <see cref="T:GemBox.Email.MailMessage"/> instance.
            </returns>
      <exception cref="T:System.ArgumentNullException">
            Stream is null.
            </exception>
      <exception cref="T:System.ArgumentException">
            Unknown message format.
            </exception>
      <exception cref="T:System.IndexOutOfRangeException">
            Message with a given index was not found.
            </exception>
    </member>
    <member name="M:GemBox.Email.MailMessageCollection.LoadHeaders(System.String)">
      <summary>
            Loads <see cref="T:GemBox.Email.Mime.HeaderCollection"/> for each message from the specified file.
            </summary>
      <param name="filePath">A relative or absolute path to the file.</param>
      <returns>
            List of <see cref="T:GemBox.Email.Mime.HeaderCollection"/>.
            </returns>
      <exception cref="T:System.ArgumentException">
            File path is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.MailMessageCollection.LoadHeaders(System.String,GemBox.Email.MailMessageFormat)">
      <summary>
            Loads <see cref="T:GemBox.Email.Mime.HeaderCollection"/> for each message from the specified file.
            </summary>
      <param name="filePath">A relative or absolute path to the file.</param>
      <param name="format">The message collection format.</param>
      <returns>
            List of <see cref="T:GemBox.Email.Mime.HeaderCollection"/>.
            </returns>
      <exception cref="T:System.ArgumentException">
            File path is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.MailMessageCollection.LoadHeaders(System.IO.Stream,GemBox.Email.MailMessageFormat)">
      <summary>
            Loads <see cref="T:GemBox.Email.Mime.HeaderCollection"/> for each message from the specified stream.
            </summary>
      <param name="stream">The stream from which the <see cref="T:System.Collections.Generic.List`1"/> will be loaded.</param>
      <param name="format">The message collection format.</param>
      <returns>
            List of <see cref="T:GemBox.Email.Mime.HeaderCollection"/>.
            </returns>
      <exception cref="T:System.ArgumentNullException">
            Stream is null.
            </exception>
      <exception cref="T:System.ArgumentException">
            Unknown message collection format.
            </exception>
    </member>
    <member name="M:GemBox.Email.MailMessageCollection.LazyLoad(System.String)">
      <summary>
            Lazily yields all messages from the specified file.
            </summary>
      <param name="filePath">A relative or absolute path to the file.</param>
      <returns>
            IEnumerable of <see cref="T:GemBox.Email.MailMessage"/></returns>
      <exception cref="T:System.ArgumentException">
            File path is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.MailMessageCollection.LazyLoad(System.String,GemBox.Email.MailMessageFormat)">
      <summary>
            Lazily yields all messages from the specified file.
            </summary>
      <param name="filePath">A relative or absolute path to the file.</param>
      <param name="format">The message collection format.</param>
      <returns>
            IEnumerable of <see cref="T:GemBox.Email.MailMessage"/></returns>
      <exception cref="T:System.ArgumentException">
            File path is null or empty.
            </exception>
      <exception cref="T:System.ArgumentException">
            Unknown message collection format.
            </exception>
    </member>
    <member name="M:GemBox.Email.MailMessageCollection.LazyLoad(System.IO.Stream,GemBox.Email.MailMessageFormat)">
      <summary>
            Lazily yields all messages from the specified file.
            </summary>
      <param name="stream">The stream from which the messages will be loaded.</param>
      <param name="format">The message collection format.</param>
      <returns>
            IEnumerable of <see cref="T:GemBox.Email.MailMessage"/></returns>
      <exception cref="T:System.ArgumentException">
            File path is null or empty.
            </exception>
      <exception cref="T:System.ArgumentException">
            Unknown message collection format.
            </exception>
    </member>
    <member name="T:GemBox.Email.MailMessageFormat">
      <summary>
            An enumeration of supported <see cref="T:GemBox.Email.MailMessage"/> formats.
            </summary>
    </member>
    <member name="F:GemBox.Email.MailMessageFormat.Eml">
      <summary>
            The MIME file format.
            </summary>
    </member>
    <member name="F:GemBox.Email.MailMessageFormat.Mhtml">
      <summary>
            The MHTML file format.
            </summary>
    </member>
    <member name="F:GemBox.Email.MailMessageFormat.Msg">
      <summary>
            The Microsoft Outlook message format.
            </summary>
    </member>
    <member name="F:GemBox.Email.MailMessageFormat.Mbox">
      <summary>
            The Mbox file format.
            </summary>
    </member>
    <member name="T:GemBox.Email.MailPriority">
      <summary>
            Represents the priority of a <see cref="T:GemBox.Email.MailMessage"/>.
            </summary>
    </member>
    <member name="F:GemBox.Email.MailPriority.Normal">
      <summary>
            Normal priority.
            </summary>
    </member>
    <member name="F:GemBox.Email.MailPriority.Low">
      <summary>
            Low priority.
            </summary>
    </member>
    <member name="F:GemBox.Email.MailPriority.High">
      <summary>
            High priority.
            </summary>
    </member>
    <member name="T:GemBox.Email.MessageSecurityType">
      <summary>
            An enumeration of possible types of security applied to a <see cref="T:GemBox.Email.MailMessage"/>.
            </summary>
    </member>
    <member name="F:GemBox.Email.MessageSecurityType.None">
      <summary>
            It is a normal message with no security applied to it.
            </summary>
    </member>
    <member name="F:GemBox.Email.MessageSecurityType.ClearSigned">
      <summary>
            It is a clear signed message.
            <para>
            Clear signed messages are composed of two separate parts: the e-mail's content (body and attachments) and a signature. <br/>
            Because of that, they will be visible on any e-mail application, even if it does not know how to handle signed messages (in that case, the signature part generally is ignored and treated as an attachment).
            </para></summary>
    </member>
    <member name="F:GemBox.Email.MessageSecurityType.OpaqueSigned">
      <summary>
            It is an opaque signed message.
            <para>
            Opaque signed messages are composed of a single part containing both the e-mail's content (body and attachments) and a signature, encoded together into binary form. <br/>
            Because of that, they will only be visible on e-mail applications that know how to handle signed messages (since it is necessary to decode the data and separate content from signature).
            </para></summary>
    </member>
    <member name="T:GemBox.Email.Msg.Properties.PropertyLid">
      <summary>
            Long ID (LID) of a named property.
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyLid.SmartNoAttach">
      <summary>
            Indicates whether the Message object has no end-user visible attachments.
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyLid.Private">
      <summary>
            Indicates whether the end user wishes for this Message object to be hidden from other users who have access to the Message object.
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyLid.SideEffects">
      <summary>
            Specifies how a Message object is handled by the client in relation to certain user interface actions by the user, such as deleting a message.
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyLid.CommonStart">
      <summary>
            Indicates the start time for the Message object.
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyLid.CommonEnd">
      <summary>
            Indicates the end time for the Message object.
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyLid.Categories">
      <summary>
            Contains the array of text labels assigned to this Message object.
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyLid.Classification">
      <summary>
            Contains a list of the classification categories to which the associated Message object has been assigned.
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyLid.ClassificationDescription">
      <summary>
            Contains a human-readable summary of each of the classification categories included in the <see cref="F:GemBox.Email.Msg.Properties.PropertyLid.Classification"/> property.
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyLid.Classified">
      <summary>
            Indicates whether the message uses any classification categories.
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyLid.InfoPathFormName">
      <summary>
            Contains the name of the form associated with this message.
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyLid.AgingDontAgeMe">
      <summary>
            Specifies whether to automatically archive the message.
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyLid.CurrentVersion">
      <summary>
            Specifies the build number of the client application that sent the message.
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyLid.CurrentVersionName">
      <summary>
            Specifies the name of the client application that sent the message.
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyLid.ContactLinkEntry">
      <summary>
            Contains the elements of the <see cref="F:GemBox.Email.Msg.Properties.PropertyLid.Contacts"/> property.
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyLid.Contacts">
      <summary>
             Contains the display name of each Address Book EntryID referenced in the value of the <see cref="F:GemBox.Email.Msg.Properties.PropertyLid.ContactLinkEntry"/> property.
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyLid.ContactLinkName">
      <summary>
            Specifies the contact link name.
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyLid.ContactLinkSearchKey">
      <summary>
            Contains the list of SearchKeys for a Contact object linked to by the Message object.
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyLid.ReminderSet">
      <summary>
            Specifies whether a reminder is set on the object.
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyLid.ReminderDelta">
      <summary>
            Specifies the interval, in minutes, between the time at which the reminder first becomes overdue and the start time of the Calendar object.
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyLid.TaskMode">
      <summary>
            Specifies the assignment status of the embedded Task object.
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyLid.ValidFlagStringProof">
      <summary>
            Contains the value of the delivery time when modifying the flag request property
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyLid.InternetAccountName">
      <summary>
            Specifies the user-visible email account name through which the email message is sent.
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyLid.InternetAccountStamp">
      <summary>
            Specifies the email account ID through which the email message is sent.
            </summary>
    </member>
    <member name="T:GemBox.Email.Msg.Properties.PropertyTag">
      <summary>
            Represents a property tag of a message read from a MSG file.
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.Access">
      <summary>
            Access
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AccessLevel">
      <summary>
            AccessLevel
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.ChangeKey">
      <summary>
            ChangeKey
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.CreationTime">
      <summary>
            CreationTime
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.LastModificationTime">
      <summary>
            LastModificationTime
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.LastModifierName">
      <summary>
            LastModifierName
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.ObjectType">
      <summary>
            ObjectType
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.RecordKey">
      <summary>
            RecordKey
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.ReportSearchKey">
      <summary>
            ReportSearchKey
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.HasAttachment">
      <summary>
            HasAttachment
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.MessageClass">
      <summary>
            MessageClass
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.MessageCodepage">
      <summary>
            MessageCodepage
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.MessageLocaleId">
      <summary>
            MessageLocaleId
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.MessageFlags">
      <summary>
            MessageFlags
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.MessageSize">
      <summary>
            MessageSize
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.MessageStatus">
      <summary>
            MessageStatus
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.SubjectPrefix">
      <summary>
            SubjectPrefix
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.NormalizedSubject">
      <summary>
            NormalizedSubject
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.Importance">
      <summary>
            Importance
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.Priority">
      <summary>
            Priority
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.Sensitivity">
      <summary>
            Sensitivity
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AutoForwarded">
      <summary>
            AutoForwarded
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AutoForwardComment">
      <summary>
            AutoForwardComment
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.StoreSupportMask">
      <summary>
            StoreSupportMask
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.ScheduleInfoDelegateNames">
      <summary>
            ScheduleInfoDelegateNames
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.InternetReferences">
      <summary>
            InternetReferences
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.MimeSkeleton">
      <summary>
            MimeSkeleton
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.TnefCorrelationKey">
      <summary>
            TnefCorrelationKey
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AddressBookDisplayNamePrintable">
      <summary>
            AddressBookDisplayNamePrintable
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.CreatorEntryId">
      <summary>
            CreatorEntryId
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.LastModifierEntryId">
      <summary>
            LastModifierEntryId
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AlternateRecipientAllowed">
      <summary>
            AlternateRecipientAllowed
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.Responsibility">
      <summary>
            Responsibility
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.Rowid">
      <summary>
            Rowid
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.HasNamedProperties">
      <summary>
            HasNamedProperties
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.RecipientOrder">
      <summary>
            RecipientOrder
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.PurportedSenderDomain">
      <summary>
            PurportedSenderDomain
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.StoreEntryId">
      <summary>
            StoreEntryId
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.TrustSender">
      <summary>
            TrustSender
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.Subject">
      <summary>
            Subject
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.MessageRecipients">
      <summary>
            MessageRecipients
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.LocalCommitTime">
      <summary>
            LocalCommitTime
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.CreatorName">
      <summary>
            CreatorName
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.MessageAttachments">
      <summary>
            MessageAttachments
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.Read">
      <summary>
            Read
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.RecipientDisplayName">
      <summary>
            RecipientDisplayName
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.RecipientEntryId">
      <summary>
            RecipientEntryId
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.Body">
      <summary>
            Body
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.NativeBody">
      <summary>
            NativeBody
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.Html">
      <summary>
            Html
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.RtfCompressed">
      <summary>
            RtfCompressed
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.RtfInSync">
      <summary>
            RtfInSync
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.InternetCodepage">
      <summary>
            InternetCodepage
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.BodyContentId">
      <summary>
            BodyContentId
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.BodyContentLocation">
      <summary>
            BodyContentLocation
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.ArchiveTag">
      <summary>
            ArchiveTag
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.PolicyTag">
      <summary>
            PolicyTag
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.RetentionPeriod">
      <summary>
            RetentionPeriod
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.StartDateEtc">
      <summary>
            StartDateEtc
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.RetentionDate">
      <summary>
            RetentionDate
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.RetentionFlags">
      <summary>
            RetentionFlags
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.ArchivePeriod">
      <summary>
            ArchivePeriod
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.ArchiveDate">
      <summary>
            ArchiveDate
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.DisplayName">
      <summary>
            DisplayName
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachSize">
      <summary>
            AttachSize
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachNumber">
      <summary>
            AttachNumber
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachDataBinary">
      <summary>
            AttachDataBinary
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachMethod">
      <summary>
            AttachMethod
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachLongFilename">
      <summary>
            AttachLongFilename
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachFilename">
      <summary>
            AttachFilename
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachExtension">
      <summary>
            AttachExtension
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachLongPathname">
      <summary>
            AttachLongPathname
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachPathname">
      <summary>
            AttachPathname
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachTag">
      <summary>
            AttachTag
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.RenderingPosition">
      <summary>
            RenderingPosition
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachRendering">
      <summary>
            AttachRendering
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachFlags">
      <summary>
            AttachFlags
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachTransportName">
      <summary>
            AttachTransportName
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachEncoding">
      <summary>
            AttachEncoding
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachAdditionalInformation">
      <summary>
            AttachAdditionalInformation
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachmentLinkId">
      <summary>
            AttachmentLinkId
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachmentFlags">
      <summary>
            AttachmentFlags
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachmentHidden">
      <summary>
            AttachmentHidden
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.TextAttachmentCharset">
      <summary>
            TextAttachmentCharset
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachMimeTag">
      <summary>
            AttachMimeTag
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachContentId">
      <summary>
            AttachContentId
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachContentLocation">
      <summary>
            AttachContentLocation
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachContentBase">
      <summary>
            AttachContentBase
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachPayloadClass">
      <summary>
            AttachPayloadClass
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachPayloadProviderGuidString">
      <summary>
            AttachPayloadProviderGuidString
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.DisplayTo">
      <summary>
            DisplayTo
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.DisplayCc">
      <summary>
            DisplayCc
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.DisplayBcc">
      <summary>
            DisplayBcc
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.OriginatorDeliveryReportRequested">
      <summary>
            OriginatorDeliveryReportRequested
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.ReadReceiptRequested">
      <summary>
            ReadReceiptRequested
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.ConversationIndex">
      <summary>
            ConversationIndex
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.ConversationTopic">
      <summary>
            ConversationTopic
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.DeleteAfterSubmit">
      <summary>
            DeleteAfterSubmit
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.IconIndex">
      <summary>
            IconIndex
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.SearchKey">
      <summary>
            SearchKey
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.EntryId">
      <summary>
            EntryId
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AddressType">
      <summary>
            AddressType
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.EmailAddress">
      <summary>
            EmailAddress
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.DisplayType">
      <summary>
            DisplayType
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.SendRichInfo">
      <summary>
            SendRichInfo
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.SendInternetEncoding">
      <summary>
            SendInternetEncoding
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.RecipientFlags">
      <summary>
            RecipientFlags
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.RecipientTrackStatus">
      <summary>
            RecipientTrackStatus
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.InstanceKey">
      <summary>
            InstanceKey
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.RecipientType">
      <summary>
            RecipientType
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.MessageDeliveryTime">
      <summary>
            MessageDeliveryTime
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.ExceptionStartTime">
      <summary>
            ExceptionStartTime
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.ExceptionEndTime">
      <summary>
            ExceptionEndTime
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.AttachmentContactPhoto">
      <summary>
            AttachmentContactPhoto
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.ClientSubmitTime">
      <summary>
            ClientSubmitTime
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.SentRepresentingSearchKey">
      <summary>
            SentRepresentingSearchKey
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.ReceivedByEntryId">
      <summary>
            ReceivedByEntryId
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.ReceivedByName">
      <summary>
            ReceivedByName
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.SentRepresentingEntryId">
      <summary>
            SentRepresentingEntryId
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.SentRepresentingName">
      <summary>
            SentRepresentingName
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.ReceivedRepresentingEntryId">
      <summary>
            ReceivedRepresentingEntryId
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.ReceivedRepresentingName">
      <summary>
            ReceivedRepresentingName
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.ReceivedBySearchKey">
      <summary>
            ReceivedBySearchKey
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.ReceivedRepresentingSearchKey">
      <summary>
            ReceivedRepresentingSearchKey
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.SentRepresentingAddressType">
      <summary>
            SentRepresentingAddressType
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.SentRepresentingEmailAddress">
      <summary>
            SentRepresentingEmailAddress
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.ReceivedByAddressType">
      <summary>
            ReceivedByAddressType
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.ReceivedByEmailAddress">
      <summary>
            ReceivedByEmailAddress
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.ReceivedRepresentingAddressType">
      <summary>
            ReceivedRepresentingAddressType
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.ReceivedRepresentingEmailAddress">
      <summary>
            ReceivedRepresentingEmailAddress
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.TransportMessageHeaders">
      <summary>
            TransportMessageHeaders
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.SenderEntryId">
      <summary>
            SenderEntryId
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.SenderName">
      <summary>
            SenderName
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.SenderSearchKey">
      <summary>
            SenderSearchKey
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.SenderAddressType">
      <summary>
            SenderAddressType
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.SenderEmailAddress">
      <summary>
            SenderEmailAddress
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.InternetMessageId">
      <summary>
            InternetMessageId
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.InReplyToId">
      <summary>
            InReplyToId
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.ConversationIndexTracking">
      <summary>
            ConversationIndexTracking
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.PredecessorChangeList">
      <summary>
            PredecessorChangeList
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.OriginalMessageId">
      <summary>
            OriginalMessageId
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.SmtpAddress">
      <summary>
            SmtpAddress
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.SenderSmtpAddress">
      <summary>
            SenderSmtpAddress
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.SentRepresentingSmtpAddress">
      <summary>
            SentRepresentingSmtpAddress
            </summary>
    </member>
    <member name="F:GemBox.Email.Msg.Properties.PropertyTag.SenderSmtpAddressAlternate">
      <summary>
            SenderSmtpAddressAlternate
            </summary>
    </member>
    <member name="T:GemBox.Email.Pop.PopAuthentication">
      <summary>
            An enumeration of supported POP authentication mechanisms.
            </summary>
    </member>
    <member name="F:GemBox.Email.Pop.PopAuthentication.Native">
      <summary>
            Native POP authentication mechanism using USER and PASS commands.
            </summary>
    </member>
    <member name="F:GemBox.Email.Pop.PopAuthentication.Apop">
      <summary>
            Native POP authentication mechanism using APOP command.
            </summary>
    </member>
    <member name="F:GemBox.Email.Pop.PopAuthentication.Login">
      <summary>
            SASL LOGIN mechanism.
            </summary>
    </member>
    <member name="F:GemBox.Email.Pop.PopAuthentication.Plain">
      <summary>
            SASL PLAIN mechanism.
            </summary>
    </member>
    <member name="F:GemBox.Email.Pop.PopAuthentication.DigestMd5">
      <summary>
            SASL DIGEST-MD5 mechanism.
            </summary>
    </member>
    <member name="F:GemBox.Email.Pop.PopAuthentication.CramMd5">
      <summary>
            SASL CRAM-MD5 mechanism.
            </summary>
    </member>
    <member name="F:GemBox.Email.Pop.PopAuthentication.XOAuth2">
      <summary>
            SASL XOAUTH2 mechanism.
            </summary>
    </member>
    <member name="T:GemBox.Email.Pop.PopCapability">
      <summary>
            An enumeration of POP server capabilities.
            </summary>
    </member>
    <member name="F:GemBox.Email.Pop.PopCapability.Apop">
      <summary>
            The server supports APOP authentication mechanism.
            </summary>
    </member>
    <member name="F:GemBox.Email.Pop.PopCapability.Expire">
      <summary>
            The server supports EXIPIRE capability as defined in <a href="https://tools.ietf.org/html/rfc2449#section-6.7">RFC 2449 - section 6.7</a></summary>
    </member>
    <member name="F:GemBox.Email.Pop.PopCapability.Lang">
      <summary>
            The server supports localization of human readable responses.
            </summary>
    </member>
    <member name="F:GemBox.Email.Pop.PopCapability.LoginDelay">
      <summary>
            The server supports delayed login.
            </summary>
    </member>
    <member name="F:GemBox.Email.Pop.PopCapability.Pipelining">
      <summary>
            The server is capable of accepting multiple commands at a time.
            </summary>
    </member>
    <member name="F:GemBox.Email.Pop.PopCapability.ResponseCodes">
      <summary>
            The server supports extended response codes.
            </summary>
    </member>
    <member name="F:GemBox.Email.Pop.PopCapability.Sasl">
      <summary>
            Server supports SASL authentication mechanisms.
            </summary>
    </member>
    <member name="F:GemBox.Email.Pop.PopCapability.StartTls">
      <summary>
            The server supports STARTTLS command.
            </summary>
    </member>
    <member name="F:GemBox.Email.Pop.PopCapability.Top">
      <summary>
            The server supports fetching a part of message by using TOP command.
            </summary>
    </member>
    <member name="F:GemBox.Email.Pop.PopCapability.Uidl">
      <summary>
            The server supports message ids.
            </summary>
    </member>
    <member name="F:GemBox.Email.Pop.PopCapability.User">
      <summary>
            The server supports authentication using USER and PASS commands.
            </summary>
    </member>
    <member name="F:GemBox.Email.Pop.PopCapability.Utf8">
      <summary>
            The server supports UTF8 communication encoding.
            </summary>
    </member>
    <member name="T:GemBox.Email.Pop.PopClient">
      <summary>
            Represents mail client that can be used for retrieving messages using Post Office Protocol (POP).
            </summary>
      <remarks>
        <see cref="T:GemBox.Email.Pop.PopClient"/> is implemented according to <a href="https://tools.ietf.org/html/rfc1939">RFC 1939</a>.
            </remarks>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-pop3-client/701">POP3 Client in C# and VB.NET</seealso>
    </member>
    <member name="E:GemBox.Email.Pop.PopClient.Terminated">
      <summary>
            Occurs when connection with server is terminated.
            </summary>
      <remarks>
            This event is raised when connection with server is improperly terminated due to inactivity or some other reason.
            Client will close and dispose its internal stream so there is no need for calling <see cref="M:GemBox.Email.Pop.PopClient.Disconnect(System.Boolean)"/> method.
            </remarks>
    </member>
    <member name="P:GemBox.Email.Pop.PopClient.IsAuthenticated">
      <summary>
            Gets whether or not client is authenticated.
            </summary>
      <value>
        <c>True</c> if client is authenticated; otherwise, <c>false</c>.
            </value>
      <remarks>
            Property indicates whether or not client is currently authenticated with server using <see cref="M:GemBox.Email.Pop.PopClient.Authenticate(System.String,System.String)"/> or <see cref="M:GemBox.Email.Pop.PopClient.Authenticate(System.String,System.String,GemBox.Email.Pop.PopAuthentication)"/> method.
            </remarks>
    </member>
    <member name="P:GemBox.Email.Pop.PopClient.Security">
      <summary>
            Gets the current connection security mode.
            </summary>
      <value>
            The current connection security mode.
            </value>
    </member>
    <member name="P:GemBox.Email.Pop.PopClient.SupportedCapabilities">
      <summary>
            Gets the collection of supported capabilities.
            </summary>
      <value>
            A read-only collection of supported capabilities.
            </value>
      <remarks>
            Collection is populated on successful connect, and refreshed after successful authentication.
            </remarks>
    </member>
    <member name="P:GemBox.Email.Pop.PopClient.SupportedAuthentications">
      <summary>
            Gets collection of supported authentication mechanisms.
            </summary>
      <value>
            A read-only collection of supported authentication mechanisms.
            </value>
      <remarks>
            Collection is populated on successful connect. Values are sorted from strongest to weakest mechanism.
            </remarks>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.#ctor(System.String)">
      <summary>
            Initializes new instance of <see cref="T:GemBox.Email.Pop.PopClient"/> class with specified host address.
            </summary>
      <param name="host">The address of the server.</param>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-pop3-client/701">POP3 Client in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.#ctor(System.String,System.Boolean)">
      <summary>
            Initializes new instance of <see cref="T:GemBox.Email.Pop.PopClient"/> class with specified host address, <see cref="T:GemBox.Email.Security.ConnectionSecurity"/> option and option to ignore SSL certificate errors.
            </summary>
      <param name="host">The address of the server.</param>
      <param name="acceptAnyCertificate">
        <c>True</c> to ignore any SSL certificate errors; otherwise, <c>false</c>.</param>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-pop3-client/701">POP3 Client in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.#ctor(System.String,GemBox.Email.Security.ConnectionSecurity,System.Boolean)">
      <summary>
            Initializes new instance of <see cref="T:GemBox.Email.Pop.PopClient"/> class with specified host address, <see cref="T:GemBox.Email.Security.ConnectionSecurity"/> option and option to ignore SSL certificate errors.
            </summary>
      <param name="host">The address of the server.</param>
      <param name="security">A constant that determines connection security level.</param>
      <param name="acceptAnyCertificate">
        <c>True</c> to ignore any SSL certificate errors; otherwise, <c>false</c>.</param>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-pop3-client/701">POP3 Client in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.#ctor(System.String,System.Int32)">
      <summary>
            Initializes new instance of <see cref="T:GemBox.Email.Pop.PopClient"/> class with specified host address and port number.
            </summary>
      <param name="host">The address of the server.</param>
      <param name="port">An integer value between 1 and 65535 indicating remote server IP port. Value 0 indicates that client will use default port value for specified connection security level.</param>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-pop3-client/701">POP3 Client in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.#ctor(System.String,System.Int32,GemBox.Email.Security.ConnectionSecurity)">
      <summary>
            Initializes new instance of <see cref="T:GemBox.Email.Pop.PopClient"/> class with specified host address, port number and <see cref="T:GemBox.Email.Security.ConnectionSecurity"/> option.
            </summary>
      <param name="host">The address of the server.</param>
      <param name="port">An integer value between 1 and 65535 indicating remote server IP port. Value 0 indicates that client will use default port value for specified connection security level.</param>
      <param name="security">A constant that determines connection security level.</param>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-pop3-client/701">POP3 Client in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.#ctor(System.String,System.Int32,GemBox.Email.Security.ConnectionSecurity,System.Net.Security.RemoteCertificateValidationCallback)">
      <summary>
            Initializes new instance of <see cref="T:GemBox.Email.Pop.PopClient"/> class with specified host address, port number, <see cref="T:GemBox.Email.Security.ConnectionSecurity"/> option and host certificate validation delegate method.
            </summary>
      <param name="host">The address of the server.</param>
      <param name="port">An integer value between 1 and 65535 indicating remote server IP port. Value 0 indicates that client will use default port value for specified connection security level.</param>
      <param name="security">A constant that determines connection security level.</param>
      <param name="certificateValidationCallback">A delegate method for validating server SSL certificate on successful connection.</param>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-pop3-client/701">POP3 Client in C# and VB.NET</seealso>
    </member>
    <member name="P:GemBox.Email.Pop.PopClient.IsConnected">
      <summary>
            Gets whether or not client is connected to the server.
            </summary>
      <value>
        <c>True</c> if client is connected; otherwise, <c>false</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Pop.PopClient.Host">
      <summary>
            Gets the server address.
            </summary>
      <value>
            The server address.
            </value>
    </member>
    <member name="P:GemBox.Email.Pop.PopClient.Port">
      <summary>
            Gets the server IP port.
            </summary>
      <value>
            The server IP port.
            </value>
    </member>
    <member name="P:GemBox.Email.Pop.PopClient.LogOutput">
      <summary>
            Gets or sets the log output writer.
            </summary>
      <value>
            The log output writer.
            </value>
      <remarks>
            Setting this property to a non-null value, enables communication logging.
            All commands and responses between the client and server will be written to the provided <see cref="T:System.IO.TextWriter"/>.
            Logging is disabled by setting this property to null.
            </remarks>
    </member>
    <member name="P:GemBox.Email.Pop.PopClient.ConnectTimeout">
      <summary>
            Gets or sets the connect timeout.
            </summary>
      <value>
            The connect timeout.
            </value>
      <exception cref="T:System.InvalidOperationException">
            Timeout cannot be set while client is connected.
            </exception>
    </member>
    <member name="P:GemBox.Email.Pop.PopClient.ReadTimeout">
      <summary>
            Gets or sets the read timeout.
            </summary>
      <value>
            The read timeout.
            </value>
      <exception cref="T:System.InvalidOperationException">
            Timeout cannot be set while client is connected.
            </exception>
    </member>
    <member name="P:GemBox.Email.Pop.PopClient.WriteTimeout">
      <summary>
            Gets or sets the write timeout.
            </summary>
      <value>
            The write timeout.
            </value>
      <exception cref="T:System.InvalidOperationException">
            Timeout cannot be set while client is connected.
            </exception>
    </member>
    <member name="P:GemBox.Email.Pop.PopClient.LocalEndPoint">
      <summary>
            Gets or sets the local IP address and port.
            </summary>
      <value>
            The local IP address and port.
            </value>
      <exception cref="T:System.InvalidOperationException">
            Local IP address and port cannot be set while client is connected.
            </exception>
      <remarks>
            Use this property to force the client to use a specific local IP address and port for server connection.
            If not specified or null, the system will automatically select the values. Value must be set before calling the <see cref="M:GemBox.Email.Pop.PopClient.Connect"/> method.
            </remarks>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.Connect">
      <summary>
            Connects to the server.
            </summary>
      <exception cref="T:System.InvalidOperationException">
            Using <see cref="F:GemBox.Email.Security.ConnectionSecurity.StartTls"/> for the server which doesn't support it
            or
            Client is already connected.
            </exception>
      <exception cref="T:System.TimeoutException">
            The server failed to respond in given time.
            </exception>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-pop3-client/701">POP3 Client in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.Connect(System.Security.Authentication.SslProtocols)">
      <summary>
            Connects to the server using specified SSL protocols.
            </summary>
      <remarks>
            The client connects to the server using the most secure protocol out of the specified protocols.
            To specify them, use the following numeric values: 3072 for TLS 1.2, and 12288 for TLS 1.3.
            </remarks>
      <exception cref="T:System.InvalidOperationException">
            Using <see cref="F:GemBox.Email.Security.ConnectionSecurity.StartTls"/> for the server which doesn't support it
            or
            Client is already connected.
            </exception>
      <exception cref="T:System.TimeoutException">
            The server failed to respond in given time.
            </exception>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-pop3-client/701">POP3 Client in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.Authenticate(System.String,System.String)">
      <summary>
            Authenticates client with specified user name and password.
            </summary>
      <param name="userName">The user name.</param>
      <param name="password">The password for the user name.</param>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Client is already authenticated.</exception>
      <exception cref="T:System.ArgumentException">
            Specified user name is null or empty
            or
            Specified password is null or empty.</exception>
      <exception cref="T:System.NotSupportedException">
            Remote host doesn't support authentication.
            </exception>
      <remarks>
        <para>When calling the <see cref="M:GemBox.Email.Pop.PopClient.Authenticate(System.String,System.String)"/> method, the strongest possible password-based authentication mechanism will be used from the <see cref="P:GemBox.Email.Pop.PopClient.SupportedAuthentications"/> collection.</para>
        <para>Method authenticates connected client with remote host. Connected client cannot be reauthenticated. You have to call <see cref="M:GemBox.Email.Pop.PopClient.Disconnect(System.Boolean)"/> first.</para>
      </remarks>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.Authenticate(System.String,System.String,GemBox.Email.Pop.PopAuthentication)">
      <summary>
            Authenticates client with specified user name, password or access token, and <see cref="T:GemBox.Email.Pop.PopAuthentication"/> mechanism.
            </summary>
      <param name="userName">The user name.</param>
      <param name="passwordOrToken">The password or access token for the user name.</param>
      <param name="authentication">A constant that specifies which authentication mechanism to use.</param>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Client is already authenticated.
            </exception>
      <exception cref="T:System.ArgumentException">
            Specified authentication mechanism is not supported
            or
            Specified user name is null or empty
            or
            Specified password or access token is null or empty.
            </exception>
      <remarks>
            Method authenticates connected client with remote host. Connected client cannot be reauthenticated. You have to call <see cref="M:GemBox.Email.Pop.PopClient.Disconnect(System.Boolean)"/> first.
            </remarks>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.Disconnect(System.Boolean)">
      <summary>
            Disconnects client from the server.
            </summary>
      <param name="update">
        <c>True</c> to update server state; otherwise, <c>false</c>.</param>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.Dispose">
      <summary>
            Disconnects client from the server and disposes all used resources.
            </summary>
      <remarks>
            Method disconnects from the server with update parameter set to <c>true</c>.
            </remarks>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.KeepAlive">
      <summary>
            Executes NOOP command.
            </summary>
      <remarks>
            Executing NOOP command prevents server from terminating connection due to client inactivity.
            </remarks>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.GetCount">
      <summary>
            Gets the count of messages available on the server.
            </summary>
      <returns>
            The count of messages available on the server.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.GetSize">
      <summary>
            Gets the size of all message available on the server.
            </summary>
      <returns>
            The size of all message available on the server.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.GetSizeLong">
      <summary>
            Gets a 64-bit integer that represents the size of all message available on the server.
            </summary>
      <returns>
            A 64-bit integer that represents size of all message available on the server.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.ListMessages">
      <summary>
            Lists all available messages on the server.
            </summary>
      <returns>
            A read-only collection of all available messages on the server.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.ListMessages(System.Boolean)">
      <summary>
            Lists all available messages on the server.
            </summary>
      <param name="includeUid">
        <c>True</c> to fetch message ids along with message numbers; otherwise, <c>false</c>.</param>
      <returns>
            A read-only collection of all available messages on the server.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.NotSupportedException">
            Server doesn't support UIDL capability.
            </exception>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.GetHeaders(System.String)">
      <summary>
            Gets the headers for the specified message.
            </summary>
      <param name="uid">The message id.</param>
      <returns>
            A collection of message headers.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.NotSupportedException">
            Server doesn't support UIDL capability.
            or
            Server doesn't support TOP capability.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.GetHeaders(System.Int32)">
      <summary>
            Gets the headers for the specified message.
            </summary>
      <param name="messageNumber">The message number.</param>
      <returns>
            A collection of message headers.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.NotSupportedException">
            Server doesn't support TOP capability.
            </exception>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.GetMessage(System.String)">
      <summary>
            Gets the specified message.
            </summary>
      <param name="uid">The message id.</param>
      <returns>
            The specified message.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.NotSupportedException">
            Server doesn't support UIDL capability.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Free license limitation exceeded.
            </exception>
      <seealso href="https://www.gemboxsoftware.com/email/examples/receive-read-email-c-sharp-vb/102">Receive and Read Email in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.GetMessage(System.Int32)">
      <summary>
            Gets the specified message.
            </summary>
      <param name="messageNumber">The message number.</param>
      <returns>
            The specified message.
            </returns>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Free license limitation exceeded.
            </exception>
      <seealso href="https://www.gemboxsoftware.com/email/examples/receive-read-email-c-sharp-vb/102">Receive and Read Email in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.SaveMessage(System.String,System.String)">
      <summary>
            Saves the specified message to a file.
            </summary>
      <param name="uid">The message id.</param>
      <param name="filePath">A relative or absolute path for the file where message will be saved.</param>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.NotSupportedException">
            Server doesn't support UIDL capability.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Free license limitation exceeded.
            </exception>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.SaveMessage(System.Int32,System.String)">
      <summary>
            Saves the specified message to a file.
            </summary>
      <param name="messageNumber">The message number.</param>
      <param name="filePath">A relative or absolute path for the file where message will be saved.</param>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Free license limitation exceeded.
            </exception>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.SaveMessage(System.String,System.IO.Stream)">
      <summary>
            Saves the specified message to a stream.
            </summary>
      <param name="uid">The message id.</param>
      <param name="output">The stream to save the message to.</param>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.NotSupportedException">
            Server doesn't support UIDL capability.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            or
            Output stream is not writable.
            </exception>
      <exception cref="T:System.ArgumentNullException">
            Output stream is null.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Free license limitation exceeded.
            </exception>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.SaveMessage(System.Int32,System.IO.Stream)">
      <summary>
            Saves the specified message to a stream.
            </summary>
      <param name="messageNumber">The message number.</param>
      <param name="output">The stream to save the message to.</param>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Free license limitation exceeded.
            </exception>
      <exception cref="T:System.ArgumentException">
            Output stream is not writable.
            </exception>
      <exception cref="T:System.ArgumentNullException">
            Output stream is null.
            </exception>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.DeleteMessage(System.String)">
      <summary>
            Deletes the specified message.
            </summary>
      <param name="uid">The message id.</param>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:System.NotSupportedException">
            Server doesn't support UIDL capability.
            </exception>
      <exception cref="T:System.ArgumentException">
            Message id is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.DeleteMessage(System.Int32)">
      <summary>
            Deletes the specified message.
            </summary>
      <param name="messageNumber">The message number.</param>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Pop.PopClient.UndeleteMessages">
      <summary>
            Undeletes all messages.
            </summary>
      <remarks>
            Method undeletes all messages marked for deletion in current session. If connection is closed with update parameter set to <c>true</c> messages are deleted from the server permanently.
            </remarks>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
    </member>
    <member name="T:GemBox.Email.Pop.PopMessageInfo">
      <summary>
            Provides information about a POP mail message.
            </summary>
    </member>
    <member name="P:GemBox.Email.Pop.PopMessageInfo.Number">
      <summary>
            Gets the message number.
            </summary>
      <value>
            The message number.
            </value>
    </member>
    <member name="P:GemBox.Email.Pop.PopMessageInfo.Size">
      <summary>
            Gets the message size in bytes.
            </summary>
      <value>
            The message size in bytes.
            </value>
    </member>
    <member name="P:GemBox.Email.Pop.PopMessageInfo.Uid">
      <summary>
            Gets the message uid.
            </summary>
      <value>
            The message uid.
            </value>
    </member>
    <member name="T:GemBox.Email.Security.ConnectionSecurity">
      <summary>
            An enumeration of connection security types.
            </summary>
    </member>
    <member name="F:GemBox.Email.Security.ConnectionSecurity.None">
      <summary>
            Plain TCP connection.
            </summary>
    </member>
    <member name="F:GemBox.Email.Security.ConnectionSecurity.StartTls">
      <summary>
            Plain TCP connection which is encrypted after successful connect.
            </summary>
    </member>
    <member name="F:GemBox.Email.Security.ConnectionSecurity.Ssl">
      <summary>
            Encrypted connection using Secure Sockets Layer (SSL).
            </summary>
    </member>
    <member name="F:GemBox.Email.Security.ConnectionSecurity.Auto">
      <summary>
            Automatic connection security.
            </summary>
      <remarks>
            Client will attempt to connect to the server using SSL. If that fails, client will try with STARTTLS if it is supported.
            If none of the security modes are supported, client will connect using plain TCP connection.
            </remarks>
    </member>
    <member name="T:GemBox.Email.Security.EmailHashAlgorithm">
      <summary>
            Represents a hash algorithm used in <b>GemBox.Email</b> cryptographic operations.
            </summary>
    </member>
    <member name="F:GemBox.Email.Security.EmailHashAlgorithm.Unknown">
      <summary>
            The hash algorithm is unknown.
            </summary>
    </member>
    <member name="F:GemBox.Email.Security.EmailHashAlgorithm.SHA1">
      <summary>
            The <b>SHA1</b> cryptographic hash algorithm that produces a hash whose size is 160 bits (20 bytes).
            </summary>
    </member>
    <member name="F:GemBox.Email.Security.EmailHashAlgorithm.SHA256">
      <summary>
            The <b>SHA256</b> cryptographic hash algorithm that produces a hash whose size is 256 bits (32 bytes).
            </summary>
    </member>
    <member name="F:GemBox.Email.Security.EmailHashAlgorithm.SHA384">
      <summary>
            The <b>SHA384</b> cryptographic hash algorithm that produces a hash whose size is 384 bits (48 bytes).
            </summary>
    </member>
    <member name="F:GemBox.Email.Security.EmailHashAlgorithm.SHA512">
      <summary>
            The <b>SHA512</b> cryptographic hash algorithm that produces a hash whose size is 512 bits (64 bytes).
            </summary>
    </member>
    <member name="T:GemBox.Email.Smtp.SmtpAuthentication">
      <summary>
            An enumeration of supported SMTP authentication mechanisms.
            </summary>
    </member>
    <member name="F:GemBox.Email.Smtp.SmtpAuthentication.Login">
      <summary>
            SASL LOGIN mechanism.
            </summary>
    </member>
    <member name="F:GemBox.Email.Smtp.SmtpAuthentication.Plain">
      <summary>
            SASL PLAIN mechanism.
            </summary>
    </member>
    <member name="F:GemBox.Email.Smtp.SmtpAuthentication.DigestMd5">
      <summary>
            SASL DIGEST-MD5 mechanism.
            </summary>
    </member>
    <member name="F:GemBox.Email.Smtp.SmtpAuthentication.CramMd5">
      <summary>
            SASL CRAM-MD5 mechanism.
            </summary>
    </member>
    <member name="F:GemBox.Email.Smtp.SmtpAuthentication.XOAuth2">
      <summary>
            SASL XOAUTH2 mechanism.
            </summary>
    </member>
    <member name="T:GemBox.Email.Smtp.SmtpCapability">
      <summary>
            An enumeration of SMTP server capabilities.
            </summary>
    </member>
    <member name="F:GemBox.Email.Smtp.SmtpCapability.EightBitMime">
      <summary>
            The server supports 8bit MIME encoding.
            </summary>
    </member>
    <member name="F:GemBox.Email.Smtp.SmtpCapability.Authenticate">
      <summary>
            The server supports SASL authentication mechanisms.
            </summary>
    </member>
    <member name="F:GemBox.Email.Smtp.SmtpCapability.DeliveryStatusNotification">
      <summary>
            The server supports delivery status notification.
            </summary>
    </member>
    <member name="F:GemBox.Email.Smtp.SmtpCapability.Help">
      <summary>
            The server supports HELP command.
            </summary>
    </member>
    <member name="F:GemBox.Email.Smtp.SmtpCapability.Pipelining">
      <summary>
            The server is capable of accepting multiple commands at a time.
            </summary>
    </member>
    <member name="F:GemBox.Email.Smtp.SmtpCapability.Size">
      <summary>
            The maximum message size is limited by the server.
            </summary>
    </member>
    <member name="F:GemBox.Email.Smtp.SmtpCapability.StartTls">
      <summary>
            The server supports STARTTLS command.
            </summary>
    </member>
    <member name="F:GemBox.Email.Smtp.SmtpCapability.SmtpUtf8">
      <summary>
            The server supports UTF-8 encoding in mail addresses and headers.
            </summary>
    </member>
    <member name="T:GemBox.Email.Smtp.SmtpClient">
      <summary>
            Represents mail client that can be used for sending messages using Simple Mail Transfer Protocol (SMTP).
            </summary>
      <remarks>
        <see cref="T:GemBox.Email.Smtp.SmtpClient"/> is implemented according to <a href="https://tools.ietf.org/html/rfc5321">RFC 5321</a>.
            </remarks>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-smtp-client/801">SMTP Client in C# and VB.NET</seealso>
    </member>
    <member name="E:GemBox.Email.Smtp.SmtpClient.Terminated">
      <summary>
            Occurs when connection with server is terminated.
            </summary>
      <remarks>
            This event is raised when connection with server is improperly terminated due to inactivity or some other reason.
            Client will close and dispose its internal stream so there is no need for calling <see cref="M:GemBox.Email.Smtp.SmtpClient.Disconnect"/> method.
            </remarks>
    </member>
    <member name="P:GemBox.Email.Smtp.SmtpClient.LocalDomain">
      <summary>
            Gets or sets the local domain.
            </summary>
      <value>
            The local domain.
            </value>
    </member>
    <member name="P:GemBox.Email.Smtp.SmtpClient.IsAuthenticated">
      <summary>
            Gets whether or not client is authenticated.
            </summary>
      <value>
        <c>True</c> if client is authenticated; otherwise, <c>false</c>.
            </value>
      <remarks>
            Property indicates whether or not client is currently authenticated with server using <see cref="M:GemBox.Email.Smtp.SmtpClient.Authenticate(System.String,System.String)"/> or <see cref="M:GemBox.Email.Smtp.SmtpClient.Authenticate(System.String,System.String,GemBox.Email.Smtp.SmtpAuthentication)"/> method.
            </remarks>
    </member>
    <member name="P:GemBox.Email.Smtp.SmtpClient.Security">
      <summary>
            Gets the current connection security mode.
            </summary>
      <value>
            The current connection security mode.
            </value>
    </member>
    <member name="P:GemBox.Email.Smtp.SmtpClient.SupportedCapabilities">
      <summary>
            Gets the collection of supported capabilities.
            </summary>
      <value>
            A read-only collection of supported capabilities.
            </value>
      <remarks>
            Collection is populated on successful connect, and refreshed after successful authentication.
            </remarks>
    </member>
    <member name="P:GemBox.Email.Smtp.SmtpClient.SupportedAuthentications">
      <summary>
            Gets collection of supported authentication mechanisms.
            </summary>
      <value>
            A read-only collection of supported authentication mechanisms.
            </value>
      <remarks>
            Collection is populated on successful connect. Values are sorted from strongest to weakest mechanism.
            </remarks>
    </member>
    <member name="M:GemBox.Email.Smtp.SmtpClient.#ctor(System.String)">
      <summary>
            Initializes new instance of <see cref="T:GemBox.Email.Smtp.SmtpClient"/> class with specified host address.
            </summary>
      <param name="host">The address of the server.</param>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-smtp-client/801">SMTP Client in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Smtp.SmtpClient.#ctor(System.String,System.Boolean)">
      <summary>
            Initializes new instance of <see cref="T:GemBox.Email.Smtp.SmtpClient"/> class with specified host address, <see cref="T:GemBox.Email.Security.ConnectionSecurity"/> option and option to ignore SSL certificate errors.
            </summary>
      <param name="host">The address of the server.</param>
      <param name="acceptAnyCertificate">
        <c>True</c> to ignore any SSL certificate errors; otherwise, <c>false</c>.</param>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-smtp-client/801">SMTP Client in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Smtp.SmtpClient.#ctor(System.String,GemBox.Email.Security.ConnectionSecurity,System.Boolean)">
      <summary>
            Initializes new instance of <see cref="T:GemBox.Email.Smtp.SmtpClient"/> class with specified host address, <see cref="T:GemBox.Email.Security.ConnectionSecurity"/> option and option to ignore SSL certificate errors.
            </summary>
      <param name="host">The address of the server.</param>
      <param name="security">A constant that determines connection security level.</param>
      <param name="acceptAnyCertificate">
        <c>True</c> to ignore any SSL certificate errors; otherwise, <c>false</c>.</param>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-smtp-client/801">SMTP Client in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Smtp.SmtpClient.#ctor(System.String,System.Int32)">
      <summary>
            Initializes new instance of <see cref="T:GemBox.Email.Smtp.SmtpClient"/> class with specified host address and port number.
            </summary>
      <param name="host">The address of the server.</param>
      <param name="port">An integer value between 1 and 65535 indicating remote server IP port. Value 0 indicates that client will use default port value for specified connection security level.</param>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-smtp-client/801">SMTP Client in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Smtp.SmtpClient.#ctor(System.String,System.Int32,GemBox.Email.Security.ConnectionSecurity)">
      <summary>
            Initializes new instance of <see cref="T:GemBox.Email.Smtp.SmtpClient"/> class with specified host address, port number and <see cref="T:GemBox.Email.Security.ConnectionSecurity"/> option.
            </summary>
      <param name="host">The address of the server.</param>
      <param name="port">An integer value between 1 and 65535 indicating remote server IP port. Value 0 indicates that client will use default port value for specified connection security level.</param>
      <param name="security">A constant that determines connection security level.</param>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-smtp-client/801">SMTP Client in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Smtp.SmtpClient.#ctor(System.String,System.Int32,GemBox.Email.Security.ConnectionSecurity,System.Net.Security.RemoteCertificateValidationCallback)">
      <summary>
            Initializes new instance of <see cref="T:GemBox.Email.Smtp.SmtpClient"/> class with specified host address, port number, <see cref="T:GemBox.Email.Security.ConnectionSecurity"/> option and host certificate validation delegate method.
            </summary>
      <param name="host">The address of the server.</param>
      <param name="port">An integer value between 1 and 65535 indicating remote server IP port. Value 0 indicates that client will use default port value for specified connection security level.</param>
      <param name="security">A constant that determines connection security level.</param>
      <param name="certificateValidationCallback">A delegate method for validating server SSL certificate on successful connection.</param>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-smtp-client/801">SMTP Client in C# and VB.NET</seealso>
    </member>
    <member name="P:GemBox.Email.Smtp.SmtpClient.IsConnected">
      <summary>
            Gets whether or not client is connected to the server.
            </summary>
      <value>
        <c>True</c> if client is connected; otherwise, <c>false</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Smtp.SmtpClient.Host">
      <summary>
            Gets the server address.
            </summary>
      <value>
            The server address.
            </value>
    </member>
    <member name="P:GemBox.Email.Smtp.SmtpClient.Port">
      <summary>
            Gets the server IP port.
            </summary>
      <value>
            The server IP port.
            </value>
    </member>
    <member name="P:GemBox.Email.Smtp.SmtpClient.LogOutput">
      <summary>
            Gets or sets the log output writer.
            </summary>
      <value>
            The log output writer.
            </value>
      <remarks>
            Setting this property to a non-null value, enables communication logging.
            All commands and responses between the client and server will be written to the provided <see cref="T:System.IO.TextWriter"/>.
            Logging is disabled by setting this property to null.
            </remarks>
    </member>
    <member name="P:GemBox.Email.Smtp.SmtpClient.ConnectTimeout">
      <summary>
            Gets or sets the connect timeout.
            </summary>
      <value>
            The connect timeout.
            </value>
      <exception cref="T:System.InvalidOperationException">
            Timeout cannot be set while client is connected.
            </exception>
    </member>
    <member name="P:GemBox.Email.Smtp.SmtpClient.ReadTimeout">
      <summary>
            Gets or sets the read timeout.
            </summary>
      <value>
            The read timeout.
            </value>
      <exception cref="T:System.InvalidOperationException">
            Timeout cannot be set while client is connected.
            </exception>
    </member>
    <member name="P:GemBox.Email.Smtp.SmtpClient.WriteTimeout">
      <summary>
            Gets or sets the write timeout.
            </summary>
      <value>
            The write timeout.
            </value>
      <exception cref="T:System.InvalidOperationException">
            Timeout cannot be set while client is connected.
            </exception>
    </member>
    <member name="P:GemBox.Email.Smtp.SmtpClient.LocalEndPoint">
      <summary>
            Gets or sets the local IP address and port.
            </summary>
      <value>
            The local IP address and port.
            </value>
      <exception cref="T:System.InvalidOperationException">
            Local IP address and port cannot be set while client is connected.
            </exception>
      <remarks>
            Use this property to force the client to use a specific local IP address and port for server connection.
            If not specified or null, the system will automatically select the values. Value must be set before calling the <see cref="M:GemBox.Email.Smtp.SmtpClient.Connect"/> method.
            </remarks>
    </member>
    <member name="M:GemBox.Email.Smtp.SmtpClient.Connect">
      <summary>
            Connects to the server.
            </summary>
      <exception cref="T:System.InvalidOperationException">
            Using <see cref="F:GemBox.Email.Security.ConnectionSecurity.StartTls"/> for the server which doesn't support it
            or
            Client is already connected.
            </exception>
      <exception cref="T:System.TimeoutException">
            The server failed to respond in given time.
            </exception>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-smtp-client/801">SMTP Client in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Smtp.SmtpClient.Connect(System.Security.Authentication.SslProtocols)">
      <summary>
            Connects to the server using specified SSL protocols.
            </summary>
      <remarks>
            The client connects to the server using the most secure protocol out of the specified protocols.
            To specify them, use the following numeric values: 3072 for TLS 1.2, and 12288 for TLS 1.3.
            </remarks>
      <exception cref="T:System.InvalidOperationException">
            Using <see cref="F:GemBox.Email.Security.ConnectionSecurity.StartTls"/> for the server which doesn't support it
            or
            Client is already connected.
            </exception>
      <exception cref="T:System.TimeoutException">
            The server failed to respond in given time.
            </exception>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-smtp-client/801">SMTP Client in C# and VB.NET</seealso>
    </member>
    <member name="M:GemBox.Email.Smtp.SmtpClient.Authenticate(System.String,System.String)">
      <summary>
            Authenticates client with specified user name and password.
            </summary>
      <param name="userName">The user name.</param>
      <param name="password">The password for the user name.</param>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Client is already authenticated.</exception>
      <exception cref="T:System.ArgumentException">
            Specified user name is null
            or
            Specified password is null.</exception>
      <exception cref="T:System.NotSupportedException">
            Remote host doesn't support authentication.
            </exception>
      <remarks>
        <para>When calling the <see cref="M:GemBox.Email.Smtp.SmtpClient.Authenticate(System.String,System.String)"/> method, the strongest possible password-based authentication mechanism will be used from the <see cref="P:GemBox.Email.Smtp.SmtpClient.SupportedAuthentications"/> collection.</para>
        <para>Method authenticates connected client with remote host. Connected client cannot be reauthenticated. You have to call <see cref="M:GemBox.Email.Smtp.SmtpClient.Disconnect"/> first.</para>
      </remarks>
    </member>
    <member name="M:GemBox.Email.Smtp.SmtpClient.Authenticate(System.String,System.String,GemBox.Email.Smtp.SmtpAuthentication)">
      <summary>
            Authenticates client with specified user name, password or access token, and <see cref="T:GemBox.Email.Smtp.SmtpAuthentication"/> mechanism.
            </summary>
      <param name="userName">The user name.</param>
      <param name="passwordOrToken">The password or access token for the user name.</param>
      <param name="authentication">A constant that specifies which authentication mechanism to use.</param>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Client is already authenticated.
            </exception>
      <exception cref="T:System.ArgumentException">
            Specified authentication mechanism is not supported
            or
            Specified user name is null
            or
            Specified password or access token is null.
            </exception>
      <remarks>
            Method authenticates connected client with remote host. Connected client cannot be reauthenticated. You have to call <see cref="M:GemBox.Email.Smtp.SmtpClient.Disconnect"/> first.
            </remarks>
    </member>
    <member name="M:GemBox.Email.Smtp.SmtpClient.Disconnect">
      <summary>
            Disconnects client from the server.
            </summary>
    </member>
    <member name="M:GemBox.Email.Smtp.SmtpClient.Dispose">
      <summary>
            Disconnects client from the server and disposes all used resources.
            </summary>
    </member>
    <member name="M:GemBox.Email.Smtp.SmtpClient.KeepAlive">
      <summary>
            Executes NOOP command.
            </summary>
      <remarks>
            Executing NOOP command prevents server from terminating connection due to client inactivity.
            </remarks>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
    </member>
    <member name="M:GemBox.Email.Smtp.SmtpClient.SendMessage(GemBox.Email.MailMessage)">
      <summary>
            Sends the message.
            </summary>
      <param name="message">The message.</param>
      <exception cref="T:System.InvalidOperationException">
            Client is not connected
            or
            Server error.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Free license limitation exceeded.
            </exception>
      <seealso href="https://www.gemboxsoftware.com/email/examples/send-email-c-sharp-vb-asp-net/101">Send Email in C#, VB.NET and ASP.NET</seealso>
      <seealso href="https://www.gemboxsoftware.com/email/examples/send-html-email-with-attachment-c-sharp-vb-net/603">Send Html Email with Attachment in C# and VB.NET</seealso>
      <seealso href="https://www.gemboxsoftware.com/email/examples/c-sharp-send-bulk-email/804">Send Bulk (Mass) Email in C# and VB.NET</seealso>
    </member>
    <member name="T:GemBox.Email.TerminatedEventArgs">
      <summary>
            Provides data for the <see cref="E:GemBox.Email.Pop.PopClient.Terminated"/>, <see cref="E:GemBox.Email.Imap.ImapClient.Terminated"/> and <see cref="E:GemBox.Email.Smtp.SmtpClient.Terminated"/> events.
            </summary>
    </member>
    <member name="P:GemBox.Email.TerminatedEventArgs.Exception">
      <summary>
            Gets the client exception.
            </summary>
      <value>
            The client exception.
            </value>
    </member>
    <member name="T:GemBox.Email.Mime.ContentDispositionType">
      <summary>
            An enumeration of Content-Disposition header values.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.ContentDispositionType.Attachment">
      <summary>
            The attachment content disposition type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.ContentDispositionType.Inline">
      <summary>
            The inline content disposition type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.ContentDispositionType.Unknown">
      <summary>
            The unknown content disposition type.
            </summary>
    </member>
    <member name="T:GemBox.Email.Mime.ContentEntity">
      <summary>
            Represents MIME entity with single body.
            </summary>
    </member>
    <member name="M:GemBox.Email.Mime.ContentEntity.#ctor(GemBox.Email.Mime.MediaType,System.Byte[],GemBox.Email.Mime.TransferEncodingType,System.Text.Encoding)">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.Mime.ContentEntity"/> class with specified content type, raw content, transfer encoding and charset.
            </summary>
      <param name="contentType">Content-Type header value.</param>
      <param name="content">The content. Can be null.</param>
      <param name="encoding">The content encoding.</param>
      <param name="charset">The content charset. Can be null.</param>
      <exception cref="T:System.ArgumentException">
            Content type top level type is multipart.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Content size exceeds limitation.
            </exception>
    </member>
    <member name="M:GemBox.Email.Mime.ContentEntity.#ctor(GemBox.Email.Mime.MediaType,System.IO.Stream,GemBox.Email.Mime.TransferEncodingType,System.Text.Encoding)">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.Mime.ContentEntity"/> class with specified content type, raw content, transfer encoding and charset.
            </summary>
      <param name="contentType">Content-Type header value.</param>
      <param name="content">The content.</param>
      <param name="encoding">The content encoding.</param>
      <param name="charset">The content charset. Can be null.</param>
      <exception cref="T:System.ArgumentException">
            Content type top level type is multipart.
            </exception>
      <exception cref="T:GemBox.Email.FreeLimitReachedException">
            Content size exceeds limitation.
            </exception>
    </member>
    <member name="P:GemBox.Email.Mime.ContentEntity.IsMultipart">
      <summary>
            Gets a value indicating whether this entity is multipart.
            </summary>
      <value>
        <c>True</c> if this entity is multipart; otherwise, <c>false</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.ContentEntity.Content">
      <summary>
            Gets the content.
            </summary>
      <value>
            The content.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.ContentEntity.TransferEncoding">
      <summary>
            Gets or sets the content transfer encoding.
            </summary>
      <value>
            The content transfer encoding.
            </value>
      <remarks>
            Setting content transfer encoding value will re-encode the content. To avoid that, modify the Content-Transfer-Encoding header directly.
            </remarks>
    </member>
    <member name="P:GemBox.Email.Mime.ContentEntity.Charset">
      <summary>
            Gets or sets the content charset.
            </summary>
      <value>
            The content charset.
            </value>
      <remarks>
            Setting content charset value will re-encode the content. To avoid that, modify the Content-Type header directly.
            </remarks>
    </member>
    <member name="P:GemBox.Email.Mime.ContentEntity.Disposition">
      <summary>
            Gets or sets the content disposition.
            </summary>
      <value>
            The content disposition.
            </value>
    </member>
    <member name="M:GemBox.Email.Mime.ContentEntity.DecodeContent">
      <summary>
            Decodes the <see cref="P:GemBox.Email.Mime.ContentEntity.Content"/>.
            </summary>
      <returns>
            A decoded content.
            </returns>
      <remarks>
            The method decodes the raw content using specifed <see cref="P:GemBox.Email.Mime.ContentEntity.TransferEncoding"/>.
            </remarks>
    </member>
    <member name="M:GemBox.Email.Mime.ContentEntity.Clone">
      <summary>
            Creates a copy of this <see cref="T:GemBox.Email.Mime.ContentEntity"/> instance.
            </summary>
      <returns>
            The copy of this <see cref="T:GemBox.Email.Mime.ContentEntity"/> instance.
            </returns>
    </member>
    <member name="M:GemBox.Email.Mime.ContentEntity.Find(System.Func{GemBox.Email.Mime.Entity,System.Boolean})">
      <summary>
            Checks if this <see cref="T:GemBox.Email.Mime.ContentEntity"/> instance or one of its children satisfies a condition.
            </summary>
      <param name="predicate">A function to test each element for a condition.</param>
      <returns>
        <see cref="T:GemBox.Email.Mime.ContentEntity"/> instance which satisfies a condition; otherwise, null.
            </returns>
    </member>
    <member name="T:GemBox.Email.Mime.Entity">
      <summary>
            Provides the abstract base class for MIME entities.
            </summary>
    </member>
    <member name="P:GemBox.Email.Mime.Entity.IsMultipart">
      <summary>
            Gets a value indicating whether this <see cref="T:GemBox.Email.Mime.Entity"/> is multipart.
            </summary>
      <value>
        <c>True</c> if this <see cref="T:GemBox.Email.Mime.Entity"/> is multipart; otherwise, <c>false</c>.
            </value>
    </member>
    <member name="M:GemBox.Email.Mime.Entity.#ctor">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.Mime.Entity"/> class.
            </summary>
    </member>
    <member name="M:GemBox.Email.Mime.Entity.#ctor(System.Collections.Generic.IList{GemBox.Email.Mime.Header})">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.Mime.Entity"/> class with specified headers.
            </summary>
      <param name="headers">The headers.</param>
    </member>
    <member name="P:GemBox.Email.Mime.Entity.Headers">
      <summary>
            Gets the <see cref="T:GemBox.Email.Mime.Entity"/> headers.
            </summary>
      <value>
            The <see cref="T:GemBox.Email.Mime.Entity"/> headers.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Entity.Parent">
      <summary>
            Gets the <see cref="T:GemBox.Email.Mime.Entity"/> parent.
            </summary>
      <value>
            The <see cref="T:GemBox.Email.Mime.Entity"/> parent.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Entity.ContentType">
      <summary>
            Gets the Content-Type header value.
            </summary>
      <value>
            The Content-Type header value.
            </value>
    </member>
    <member name="M:GemBox.Email.Mime.Entity.Clone">
      <summary>
            Creates a copy of this <see cref="T:GemBox.Email.Mime.Entity"/> instance.
            </summary>
      <returns>
            The copy of this <see cref="T:GemBox.Email.Mime.Entity"/> instance.
            </returns>
    </member>
    <member name="M:GemBox.Email.Mime.Entity.Find(GemBox.Email.Mime.MediaType)">
      <summary>
            Checks if this <see cref="T:GemBox.Email.Mime.Entity"/> instance or one of its children matches the specified content type.
            </summary>
      <param name="contentType">The content type.</param>
      <returns>
        <see cref="T:GemBox.Email.Mime.Entity"/> instance whose content type matches specified one; otherwise, null.
            </returns>
    </member>
    <member name="M:GemBox.Email.Mime.Entity.Find(System.String)">
      <summary>
            Checks if this <see cref="T:GemBox.Email.Mime.Entity"/> instance or one of its children matches the specified top level media type.
            </summary>
      <param name="topLevelMediaType">The top level media type.</param>
      <returns>
        <see cref="T:GemBox.Email.Mime.Entity"/> instance whose top level media type matches specified one; otherwise, null.
            </returns>
    </member>
    <member name="M:GemBox.Email.Mime.Entity.Find(System.Func{GemBox.Email.Mime.Entity,System.Boolean})">
      <summary>
            Checks if this <see cref="T:GemBox.Email.Mime.Entity"/> instance or one of its children satisfies a condition.
            </summary>
      <param name="predicate">A function to test each element for a condition.</param>
      <returns>
        <see cref="T:GemBox.Email.Mime.Entity"/> instance which satisfies a condition; otherwise, null.
            </returns>
    </member>
    <member name="T:GemBox.Email.Mime.Header">
      <summary>
            Represents MIME entity header.
            </summary>
    </member>
    <member name="P:GemBox.Email.Mime.Header.Id">
      <summary>
            Gets the identifier.
            </summary>
      <value>
            The identifier.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Header.Name">
      <summary>
            Gets the name.
            </summary>
      <value>
            The name.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Header.BodyCharset">
      <summary>
            Gets or sets the body charset.
            </summary>
      <value>
            The body charset.
            </value>
    </member>
    <member name="M:GemBox.Email.Mime.Header.#ctor(System.String,System.String)">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.Mime.Header"/> class with specified name and body.
            </summary>
      <param name="name">The name.</param>
      <param name="body">The body.</param>
    </member>
    <member name="M:GemBox.Email.Mime.Header.#ctor(GemBox.Email.Mime.HeaderId,System.String)">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.Mime.Header"/> class with specified identifier and body.
            </summary>
      <param name="id">The identifier.</param>
      <param name="body">The body.</param>
    </member>
    <member name="P:GemBox.Email.Mime.Header.Body">
      <summary>
            Gets or sets the body.
            </summary>
      <value>
            The body.
            </value>
    </member>
    <member name="M:GemBox.Email.Mime.Header.ToString">
      <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
      <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
    </member>
    <member name="T:GemBox.Email.Mime.HeaderCollection">
      <summary>
            Represents a collection of MIME <see cref="T:GemBox.Email.Mime.Header"/> elements.
            </summary>
    </member>
    <member name="P:GemBox.Email.Mime.HeaderCollection.Item(System.String)">
      <summary>
            Gets the <see cref="T:GemBox.Email.Mime.Header"/> with the specified name.
            </summary>
      <value>
            The <see cref="T:GemBox.Email.Mime.Header"/> with the specified name.
            </value>
      <param name="name">The name.</param>
      <exception cref="T:System.ArgumentException">
            Name is null or empty.
            </exception>
      <exception cref="T:System.InvalidOperationException">
            Header with the specified name doesn't exist.
            </exception>
    </member>
    <member name="P:GemBox.Email.Mime.HeaderCollection.Item(GemBox.Email.Mime.HeaderId)">
      <summary>
            Gets the <see cref="T:GemBox.Email.Mime.Header"/> with the specified identifier.
            </summary>
      <value>
            The <see cref="T:GemBox.Email.Mime.Header"/> with the specified identifier.
            </value>
      <param name="id">The identifier.</param>
      <exception cref="T:System.InvalidOperationException">
            Header with the specified identifier doesn't exist.
            </exception>
    </member>
    <member name="M:GemBox.Email.Mime.HeaderCollection.SetItem(System.Int32,GemBox.Email.Mime.Header)">
      <summary>
            Replaces the element at the specified index.
            </summary>
      <param name="index">The zero-based index of the element to replace.</param>
      <param name="item">The new value for the element at the specified index.</param>
      <exception cref="T:System.ArgumentNullException">
            Item is null.
            </exception>
    </member>
    <member name="M:GemBox.Email.Mime.HeaderCollection.InsertItem(System.Int32,GemBox.Email.Mime.Header)">
      <summary>
            Inserts an element into the collection at the specified index.
            </summary>
      <param name="index">The zero-based index at which item should be inserted.</param>
      <param name="item">The object to insert.</param>
      <exception cref="T:System.ArgumentNullException">
            Item is null.
            </exception>
    </member>
    <member name="M:GemBox.Email.Mime.HeaderCollection.RemoveItem(System.Int32)">
      <summary>
            Removes the element at the specified index of the collection.
            </summary>
      <param name="index">The zero-based index of the element to remove.</param>
    </member>
    <member name="M:GemBox.Email.Mime.HeaderCollection.ClearItems">
      <summary>
            Removes all elements from the collection.
            </summary>
    </member>
    <member name="M:GemBox.Email.Mime.HeaderCollection.Contains(GemBox.Email.Mime.HeaderId)">
      <summary>
            Determines whether this <see cref="T:GemBox.Email.Mime.HeaderCollection"/> contains <see cref="T:GemBox.Email.Mime.Header"/> with specified identifier.
            </summary>
      <param name="id">The identifier.</param>
      <returns>
        <c>True</c> if this <see cref="T:GemBox.Email.Mime.HeaderCollection"/> contains the <see cref="T:GemBox.Email.Mime.Header"/>; otherwise, <c>false</c>.
            </returns>
    </member>
    <member name="M:GemBox.Email.Mime.HeaderCollection.IndexOf(GemBox.Email.Mime.HeaderId)">
      <summary>
            Searches for the <see cref="T:GemBox.Email.Mime.Header"/> with specified identifier and returns the zero-based index of the first occurrence within this <see cref="T:GemBox.Email.Mime.HeaderCollection"/>.
            </summary>
      <param name="id">The identifier.</param>
      <returns>
            The zero-based index of the first occurrence of <see cref="T:GemBox.Email.Mime.Header"/> within this <see cref="T:GemBox.Email.Mime.HeaderCollection"/>, if found; otherwise, –1.
            </returns>
    </member>
    <member name="M:GemBox.Email.Mime.HeaderCollection.Remove(System.String)">
      <summary>
            Removes the <see cref="T:GemBox.Email.Mime.Header"/> with the specified name.
            </summary>
      <param name="name">The name.</param>
      <returns>
        <c>True</c> if item is successfully removed; otherwise, <c>false</c>.
            </returns>
    </member>
    <member name="M:GemBox.Email.Mime.HeaderCollection.Remove(GemBox.Email.Mime.HeaderId)">
      <summary>
            Removes the <see cref="T:GemBox.Email.Mime.Header"/> with the specified identifier.
            </summary>
      <param name="id">The identifier.</param>
      <returns>
        <c>True</c> if item is successfully removed; otherwise, <c>false</c>.
            </returns>
    </member>
    <member name="M:GemBox.Email.Mime.HeaderCollection.TryGetHeader(System.String,GemBox.Email.Mime.Header@)">
      <summary>
            Tries the get a <see cref="T:GemBox.Email.Mime.Header"/> with the specified name.
            </summary>
      <param name="name">The name.</param>
      <param name="value">When this method returns, contains the <see cref="T:GemBox.Email.Mime.Header"/> with the specified name, if found; otherwise, null.</param>
      <returns>
        <c>True</c> if this <see cref="T:GemBox.Email.Mime.HeaderCollection"/> contains the specified <see cref="T:GemBox.Email.Mime.Header"/>; otherwise, <c>false</c>.
            </returns>
      <exception cref="T:System.ArgumentNullException">
            Name is null or empty.
            </exception>
    </member>
    <member name="M:GemBox.Email.Mime.HeaderCollection.TryGetHeader(GemBox.Email.Mime.HeaderId,GemBox.Email.Mime.Header@)">
      <summary>
            Tries the get a <see cref="T:GemBox.Email.Mime.Header"/> with the specified identifier.
            </summary>
      <param name="id">The identifier.</param>
      <param name="value">When this method returns, contains the <see cref="T:GemBox.Email.Mime.Header"/> with the specified name, if found; otherwise, null.</param>
      <returns>
        <c>True</c> if this <see cref="T:GemBox.Email.Mime.HeaderCollection"/> contains the specified <see cref="T:GemBox.Email.Mime.Header"/>; otherwise, <c>false</c>.
            </returns>
    </member>
    <member name="T:GemBox.Email.Mime.HeaderId">
      <summary>
            An enumeration of standard MIME header identifiers.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.Custom">
      <summary>
            The custom header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.Extension">
      <summary>
            The extension header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.Version">
      <summary>
            The <c>MIME-Version</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.Date">
      <summary>
            The <c>Date</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.From">
      <summary>
            The <c>From</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.Sender">
      <summary>
            The <c>Sender</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.To">
      <summary>
            The <c>To</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.Cc">
      <summary>
            The <c>Cc</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.Bcc">
      <summary>
            The <c>Bcc</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.MessageId">
      <summary>
            The <c>Message-ID</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.ResentDate">
      <summary>
            The <c>Resent-Date</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.ResentFrom">
      <summary>
            The <c>Resent-From</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.ResentSender">
      <summary>
            The <c>Resent-Sender</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.ResentTo">
      <summary>
            The <c>Resent-To</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.ResentCc">
      <summary>
            The <c>Resent-Cc</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.ResentBcc">
      <summary>
            The <c>Resent-Bcc</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.ResentMessageId">
      <summary>
            The <c>Resent-Message-ID</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.ReplyTo">
      <summary>
            The <c>Reply-To</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.InReplyTo">
      <summary>
            The <c>In-Reply-To</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.References">
      <summary>
            The <c>References</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.Subject">
      <summary>
            The <c>Subject</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.Comments">
      <summary>
            The <c>Comments</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.Keywords">
      <summary>
            The <c>Keywords</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.ReturnPath">
      <summary>
            The <c>Return-Path</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.Received">
      <summary>
            The <c>Received</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.ReturnReceiptTo">
      <summary>
            The <c>Return-Receipt-To</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.DispositionNotificationTo">
      <summary>
            The <c>Disposition-Notification-To</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.ContentType">
      <summary>
            The <c>Content-Type</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.ContentDisposition">
      <summary>
            The <c>Content-Disposition</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.ContentTransferEncoding">
      <summary>
            The <c>Content-Transfer-Encoding</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.ContentDescription">
      <summary>
            The <c>Content-Description</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.ContentId">
      <summary>
            The <c>Content-ID</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.ContentLocation">
      <summary>
            The <c>Content-Location</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.Priority">
      <summary>
            The <c>Priority</c> header.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.HeaderId.Importance">
      <summary>
            The <c>Importance</c> header.
            </summary>
    </member>
    <member name="T:GemBox.Email.Mime.Headers">
      <summary>
            Contains common header names and methods for extracting header name from <see cref="T:GemBox.Email.Mime.HeaderId"/> and vice versa.
            </summary>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.Version">
      <summary>
            Gets the 'version' header name.
            </summary>
      <value>
        <c>MIME-Version</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.Date">
      <summary>
            Gets the 'date' header name.
            </summary>
      <value>
        <c>Date</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.From">
      <summary>
            Gets the 'from' header name.
            </summary>
      <value>
        <c>From</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.Sender">
      <summary>
            Gets the 'sender' header name.
            </summary>
      <value>
        <c>Sender</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.To">
      <summary>
            Gets the 'to' header name.
            </summary>
      <value>
        <c>To</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.Cc">
      <summary>
            Gets the 'cc' header name.
            </summary>
      <value>
        <c>Cc</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.Bcc">
      <summary>
            Gets the 'bcc' header name.
            </summary>
      <value>
        <c>Bcc</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.MessageId">
      <summary>
            Gets the 'message id' header name.
            </summary>
      <value>
        <c>Message-ID</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.ResentDate">
      <summary>
            Gets the 'resent date' header name.
            </summary>
      <value>
        <c>Resent-Date</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.ResentFrom">
      <summary>
            Gets the 'resent from' header name.
            </summary>
      <value>
        <c>Resent-From</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.ResentSender">
      <summary>
            Gets the 'resent sender' header name.
            </summary>
      <value>
        <c>Resent-Sender</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.ResentTo">
      <summary>
            Gets the 'resent to' header name.
            </summary>
      <value>
        <c>Resent-To</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.ResentCc">
      <summary>
            Gets the 'resent cc' header name.
            </summary>
      <value>
        <c>Resent-Cc</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.ResentBcc">
      <summary>
            Gets the 'resent bcc' header name.
            </summary>
      <value>
        <c>Resent-Bcc</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.ResentMessageId">
      <summary>
            Gets the 'resent message id' header name.
            </summary>
      <value>
        <c>Resent-Message-ID</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.ReplyTo">
      <summary>
            Gets the 'reply to' header name.
            </summary>
      <value>
        <c>Reply-To</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.InReplyTo">
      <summary>
            Gets the 'in reply to' header name.
            </summary>
      <value>
        <c>In-Reply-To</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.References">
      <summary>
            Gets the 'references' header name.
            </summary>
      <value>
        <c>References</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.Subject">
      <summary>
            Gets the 'subject' header name.
            </summary>
      <value>
        <c>Subject</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.Comments">
      <summary>
            Gets the 'comments' header name.
            </summary>
      <value>
        <c>Comments</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.Keywords">
      <summary>
            Gets the 'keywords' header name.
            </summary>
      <value>
        <c>Keywords</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.ReturnPath">
      <summary>
            Gets the 'return path' header name.
            </summary>
      <value>
        <c>Return-Path</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.Received">
      <summary>
            Gets the 'received' header name.
            </summary>
      <value>
        <c>Received</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.ContentId">
      <summary>
            Gets the 'content id' header name.
            </summary>
      <value>
        <c>Content-ID</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.ContentType">
      <summary>
            Gets the 'content type' header name.
            </summary>
      <value>
        <c>Content-Type</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.ContentDisposition">
      <summary>
            Gets the 'content disposition' header name.
            </summary>
      <value>
        <c>Content-Disposition</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.ContentDescription">
      <summary>
            Gets the 'content description' header name.
            </summary>
      <value>
        <c>Content-Description</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.Headers.ContentTransferEncoding">
      <summary>
            Gets the 'content transfer encoding' header name.
            </summary>
      <value>
        <c>Content-Transfer-Encoding</c>.
            </value>
    </member>
    <member name="M:GemBox.Email.Mime.Headers.GetName(GemBox.Email.Mime.HeaderId)">
      <summary>
            Gets the name for the specified identifier.
            </summary>
      <param name="id">The identifier.</param>
      <returns>
            The name for the specified identifier
            </returns>
      <exception cref="T:System.NotSupportedException">
            Unable to get the name for custom or extension <see cref="T:GemBox.Email.Mime.Header"/>.
            </exception>
      <exception cref="T:System.InvalidOperationException">
            Unknown header identifier.
            </exception>
    </member>
    <member name="M:GemBox.Email.Mime.Headers.GetId(System.String)">
      <summary>
            Gets the identifier for the specified name.
            </summary>
      <param name="name">The name.</param>
      <returns>
            The identifier for the specified name.
            </returns>
      <exception cref="T:System.ArgumentException">
            Name is null or empty.
            </exception>
    </member>
    <member name="T:GemBox.Email.Mime.MediaType">
      <summary>
            Represents formatted MIME media type value.
            </summary>
    </member>
    <member name="M:GemBox.Email.Mime.MediaType.#ctor(System.String)">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.Mime.MediaType"/> structure with raw value.
            </summary>
      <param name="value">The raw value.</param>
      <exception cref="T:System.ArgumentException">
            Value is null or empty.
            </exception>
      <exception cref="T:System.ArgumentException">
            Input string is in invalid format.
            </exception>
    </member>
    <member name="M:GemBox.Email.Mime.MediaType.#ctor(System.String,System.String)">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.Mime.MediaType"/> structure with specified top level type and subtype.
            </summary>
      <param name="topLevelType">The top level type.</param>
      <param name="subtype">The subtype.</param>
    </member>
    <member name="P:GemBox.Email.Mime.MediaType.TopLevelType">
      <summary>
            Gets the top level type.
            </summary>
      <value>
            The top level type.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.MediaType.Subtype">
      <summary>
            Gets the subtype.
            </summary>
      <value>
            The subtype.
            </value>
    </member>
    <member name="M:GemBox.Email.Mime.MediaType.GetHashCode">
      <summary>
            Returns a hash code for this instance.
            </summary>
      <returns>
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
            </returns>
    </member>
    <member name="M:GemBox.Email.Mime.MediaType.ToString">
      <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
      <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
    </member>
    <member name="M:GemBox.Email.Mime.MediaType.Equals(System.Object)">
      <summary>
            Determines whether the specified <see cref="T:System.Object"/>, is equal to this instance.
            </summary>
      <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
      <returns>
        <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
    </member>
    <member name="M:GemBox.Email.Mime.MediaType.Equals(GemBox.Email.Mime.MediaType)">
      <summary>
            Determines whether the <paramref name="other"/> <see cref="T:GemBox.Email.Mime.MediaType"/> is equal to this <see cref="T:GemBox.Email.Mime.MediaType"/> instance.
            </summary>
      <param name="other">The other media type to compare with this media type instance.</param>
      <returns>
        <see langword="true"/> if the <paramref name="other"/> <see cref="T:GemBox.Email.Mime.MediaType"/> is equal to this <see cref="T:GemBox.Email.Mime.MediaType"/> instance; otherwise, <see langword="false"/>.
            </returns>
    </member>
    <member name="M:GemBox.Email.Mime.MediaType.op_Implicit(GemBox.Email.Mime.MediaType)~System.String">
      <summary>
            Performs an implicit conversion from <see cref="T:GemBox.Email.Mime.MediaType"/> to <see cref="T:System.String"/>.
            </summary>
      <param name="value">The value.</param>
      <returns>
            The result of the conversion.
            </returns>
    </member>
    <member name="M:GemBox.Email.Mime.MediaType.op_Implicit(System.String)~GemBox.Email.Mime.MediaType">
      <summary>
            Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:GemBox.Email.Mime.MediaType"/>.
            </summary>
      <param name="value">The value.</param>
      <returns>
            The result of the conversion.
            </returns>
    </member>
    <member name="M:GemBox.Email.Mime.MediaType.op_Equality(GemBox.Email.Mime.MediaType,GemBox.Email.Mime.MediaType)">
      <summary>
            Implements the operator ==.
            </summary>
      <param name="item1">The item1.</param>
      <param name="item2">The item2.</param>
      <returns>
            The result of the operator.
            </returns>
    </member>
    <member name="M:GemBox.Email.Mime.MediaType.op_Inequality(GemBox.Email.Mime.MediaType,GemBox.Email.Mime.MediaType)">
      <summary>
            Implements the operator !=.
            </summary>
      <param name="item1">The item1.</param>
      <param name="item2">The item2.</param>
      <returns>
            The result of the operator.
            </returns>
    </member>
    <member name="T:GemBox.Email.Mime.MediaTypes">
      <summary>
            Contains most commonly used <see cref="T:GemBox.Email.Mime.MediaType"/> values.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.TextPlain">
      <summary>
            The <b>text/plain</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.TextHtml">
      <summary>
            The <b>text/html</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.TextCmd">
      <summary>
            The <b>text/cmd</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.TextCss">
      <summary>
            The <b>text/css</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.TextCsv">
      <summary>
            The <b>text/csv</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.TextJavaScript">
      <summary>
            The <b>text/javascript</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.TextVCard">
      <summary>
            The <b>text/vcard</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.TextXml">
      <summary>
            The <b>text/xml</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.TextCalendar">
      <summary>
            The <b>text/calendar</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.MultipartMixed">
      <summary>
            The <b>multipart/mixed</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.MultipartAlternative">
      <summary>
            The <b>multipart/alternative</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.MultipartRelated">
      <summary>
            The <b>multipart/related</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.MultipartDigest">
      <summary>
            The <b>multipart/digest</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.MultipartParallel">
      <summary>
            The <b>multipart/parallel</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.MultipartSigned">
      <summary>
            The <b>multipart/signed</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.MultipartEncrypted">
      <summary>
            The <b>multipart/encrypted</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.MessageRfc822">
      <summary>
            The <b>message/rfc822</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.MessagePartial">
      <summary>
            The <b>message/partial</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ImageGif">
      <summary>
            The <b>image/gif</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ImageJpeg">
      <summary>
            The <b>image/jpeg</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ImagePjpeg">
      <summary>
            The <b>image/pjpeg</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ImagePng">
      <summary>
            The <b>image/png</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ImageSvg">
      <summary>
            The <b>image/svg</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ImageTiff">
      <summary>
            The <b>image/tiff</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ImageIco">
      <summary>
            The <b>image/vnd.microsoft.icon</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationOctetStream">
      <summary>
            The <b>application/octet-stream</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationPKCS7Mime">
      <summary>
            The <b>application/pkcs7-mime</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationXPKCS7Mime">
      <summary>
            The <b>application/x-pkcs7-mime</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationPKCS7Signature">
      <summary>
            The <b>application/pkcs7-signature</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationAtom">
      <summary>
            The <b>application/atom+xml</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationEcmaScript">
      <summary>
            The <b>application/ecmascript</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationJson">
      <summary>
            The <b>application/json</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationJavascript">
      <summary>
            The <b>application/javascript</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationPdf">
      <summary>
            The <b>application/pdf</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationPostscript">
      <summary>
            The <b>application/postscript</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationRss">
      <summary>
            The <b>application/rss+xml</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationRtf">
      <summary>
            The <b>application/rtf</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationSoap">
      <summary>
            The <b>application/soap+xml</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationFont">
      <summary>
            The <b>application/font-woff</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationXml">
      <summary>
            The <b>application/xml-dtd</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationZip">
      <summary>
            The <b>application/zip</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationGzip">
      <summary>
            The <b>application/application/x-gzip</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationOpenDocumentText">
      <summary>
            The <b>application/application/vnd.oasis.opendocument.text</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationOpenDocumentSpreadsheet">
      <summary>
            The <b>application/vnd.oasis.opendocument.spreadsheet</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationOpenDocumentPresentation">
      <summary>
            The <b>application/vnd.oasis.opendocument.presentation</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationOpenDocumentGraphics">
      <summary>
            The <b>application/vnd.oasis.opendocument.graphics</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationExcel">
      <summary>
            The <b>application/vnd.ms-excel</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationExcelx">
      <summary>
            The <b>application/vnd.openxmlformats-officedocument.spreadsheetml.sheet</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationPowerpoint">
      <summary>
            The <b>application/vnd.ms-powerpoint</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationPowerpointx">
      <summary>
            The <b>application/vnd.openxmlformats-officedocument.presentationml.presentation</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationWord">
      <summary>
            The <b>application/msword</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationWordx">
      <summary>
            The <b>application/vnd.openxmlformats-officedocument.wordprocessingml.document</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationOutlook">
      <summary>
            The <b>application/vnd.ms-outlook</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationXul">
      <summary>
            The <b>application/vnd.mozilla.xul+xml</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationKml">
      <summary>
            The <b>application/vnd.google-earth.kml+xml</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationFormEncodedData">
      <summary>
            The <b>application/x-www-form-urlencoded</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationDvi">
      <summary>
            The <b>application/x-dvi</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationLatex">
      <summary>
            The <b>application/x-latex</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationTtf">
      <summary>
            The <b>application/x-font-ttf</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationSwf">
      <summary>
            The <b>application/x-shockwave-flash</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationStuffit">
      <summary>
            The <b>application/x-stuffit</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationRar">
      <summary>
            The <b>application/x-rar-compressed</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationTar">
      <summary>
            The <b>application/x-tar</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationGoogleWebToolkit">
      <summary>
            The <b>application/x-gwt-rpc</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationJquery">
      <summary>
            The <b>application/x-jquery-tmpl</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.ApplicationDeb">
      <summary>
            The <b>application/x-deb</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.AudioBasic">
      <summary>
            The <b>audio/basic</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.AudioPcm">
      <summary>
            The <b>audio/L24</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.AudioMp4">
      <summary>
            The <b>audio/mp4</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.AudioMpeg">
      <summary>
            The <b>audio/mpeg</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.AudioOgg">
      <summary>
            The <b>audio/ogg</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.AudioVorbis">
      <summary>
            The <b>audio/vorbis</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.AudioWma">
      <summary>
            The <b>audio/x-ms-wma</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.AudioWax">
      <summary>
            The <b>audio/x-ms-wax</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.AudioRealAudio">
      <summary>
            The <b>audio/vnd.rn-realaudio</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.AudioWav">
      <summary>
            The <b>audio/vnd.wave</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.AudioWebm">
      <summary>
            The <b>audio/webm</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.VideoMpeg">
      <summary>
            The <b>video/mpeg</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.VideoMp4">
      <summary>
            The <b>video/mp4</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.VideoOgg">
      <summary>
            The <b>video/ogg</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.VideoQuickTime">
      <summary>
            The <b>video/quicktime</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.VideoWebm">
      <summary>
            The <b>video/webm</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.VideoMkv">
      <summary>
            The <b>video/x-matroska</b> media type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.MediaTypes.VideoWmv">
      <summary>
            The <b>video/x-ms-wmv</b> media type.
            </summary>
    </member>
    <member name="T:GemBox.Email.Mime.MultipartEntity">
      <summary>
            Represents MIME entity with multiple body parts.
            </summary>
    </member>
    <member name="M:GemBox.Email.Mime.MultipartEntity.#ctor(System.String)">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.Mime.MultipartEntity"/> class with specified media subtype.
            </summary>
      <param name="mediaSubtype">The media subtype.</param>
    </member>
    <member name="M:GemBox.Email.Mime.MultipartEntity.#ctor(System.String,System.Collections.Generic.IEnumerable{GemBox.Email.Mime.Entity})">
      <summary>
            Initializes a new instance of the <see cref="T:GemBox.Email.Mime.MultipartEntity"/> class with specified media subtype and collection of child entities.
            </summary>
      <param name="mediaSubtype">The media subtype.</param>
      <param name="items">The collection of child entities.</param>
      <exception cref="T:System.ArgumentNullException">
            Child collection is null.
            </exception>
      <exception cref="T:System.ArgumentException">
            Child collection contains null elements.
            </exception>
    </member>
    <member name="P:GemBox.Email.Mime.MultipartEntity.System#Collections#Generic#ICollection{GemBox#Email#Mime#Entity}#IsReadOnly">
      <exclude/>
    </member>
    <member name="P:GemBox.Email.Mime.MultipartEntity.Preamble">
      <summary>
            Gets or sets the entity preamble.
            </summary>
      <value>
            The entity preamble.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.MultipartEntity.Epilogue">
      <summary>
            Gets or sets the entity epilogue.
            </summary>
      <value>
            The entity epilogue.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.MultipartEntity.IsMultipart">
      <summary>
            Gets a value indicating whether this entity is multipart.
            </summary>
      <value>
        <c>True</c> if this instance is multipart; otherwise, <c>false</c>.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.MultipartEntity.Count">
      <summary>
            Gets the count.
            </summary>
      <value>
            The count.
            </value>
    </member>
    <member name="P:GemBox.Email.Mime.MultipartEntity.Boundary">
      <summary>
            Gets or sets the boundary.
            </summary>
      <value>
            The boundary.
            </value>
      <exception cref="T:System.ArgumentException">
            Boundary is null or empty.
            </exception>
    </member>
    <member name="P:GemBox.Email.Mime.MultipartEntity.Item(System.Int32)">
      <summary>
            Gets or sets the <see cref="T:GemBox.Email.Mime.Entity"/> at the specified index.
            </summary>
      <value>
            The <see cref="T:GemBox.Email.Mime.Entity"/>.
            </value>
      <param name="index">The index.</param>
      <returns>
            The <see cref="T:GemBox.Email.Mime.Entity"/> at the specified index.
            </returns>
      <exception cref="T:System.ArgumentNullException">
            value
            </exception>
    </member>
    <member name="M:GemBox.Email.Mime.MultipartEntity.System#Collections#IEnumerable#GetEnumerator">
      <exclude/>
    </member>
    <member name="M:GemBox.Email.Mime.MultipartEntity.System#Collections#Generic#IEnumerable{GemBox#Email#Mime#Entity}#GetEnumerator">
      <exclude/>
    </member>
    <member name="M:GemBox.Email.Mime.MultipartEntity.Clone">
      <summary>
            Creates a copy of this <see cref="T:GemBox.Email.Mime.MultipartEntity"/> instance.
            </summary>
      <returns>
            The copy of this <see cref="T:GemBox.Email.Mime.MultipartEntity"/> instance.
            </returns>
    </member>
    <member name="M:GemBox.Email.Mime.MultipartEntity.Find(System.Func{GemBox.Email.Mime.Entity,System.Boolean})">
      <summary>
            Checks if this <see cref="T:GemBox.Email.Mime.MultipartEntity"/> instance or one of its children satisfies a condition.
            </summary>
      <param name="predicate">A function to test each element for a condition.</param>
      <returns>
        <see cref="T:GemBox.Email.Mime.MultipartEntity"/> instance which satisfies a condition; otherwise, null.
            </returns>
    </member>
    <member name="M:GemBox.Email.Mime.MultipartEntity.IndexOf(GemBox.Email.Mime.Entity)">
      <summary>
            Searches for the specified <see cref="T:GemBox.Email.Mime.Entity"/> item and returns the zero-based index of the first occurrence within this <see cref="T:GemBox.Email.Mime.MultipartEntity"/>.
            </summary>
      <param name="item">The <see cref="T:GemBox.Email.Mime.Entity"/> item.</param>
      <returns>
            The zero-based index of the first occurrence of <see cref="T:GemBox.Email.Mime.Entity"/> item within this <see cref="T:GemBox.Email.Mime.MultipartEntity"/>, if found; otherwise, –1.
            </returns>
    </member>
    <member name="M:GemBox.Email.Mime.MultipartEntity.Contains(GemBox.Email.Mime.Entity)">
      <summary>
            Determines whether this <see cref="T:GemBox.Email.Mime.MultipartEntity"/> contains the specified <see cref="T:GemBox.Email.Mime.Entity"/> item.
            </summary>
      <param name="item">The <see cref="T:GemBox.Email.Mime.Entity"/> item.</param>
      <returns>
        <c>True</c> if <see cref="T:GemBox.Email.Mime.Entity"/> item is found; otherwise, <c>false</c>.
            </returns>
    </member>
    <member name="M:GemBox.Email.Mime.MultipartEntity.Add(GemBox.Email.Mime.Entity)">
      <summary>
            Adds the specified <see cref="T:GemBox.Email.Mime.Entity"/> item.
            </summary>
      <param name="item">The <see cref="T:GemBox.Email.Mime.Entity"/> item.</param>
    </member>
    <member name="M:GemBox.Email.Mime.MultipartEntity.Insert(System.Int32,GemBox.Email.Mime.Entity)">
      <summary>
            Inserts an <see cref="T:GemBox.Email.Mime.Entity"/> item at the specified index.
            </summary>
      <param name="index">The index.</param>
      <param name="item">The <see cref="T:GemBox.Email.Mime.Entity"/> item.</param>
      <exception cref="T:System.ArgumentNullException">
        <see cref="T:GemBox.Email.Mime.Entity"/> item is null.
            </exception>
      <exception cref="T:System.ArgumentException">
            Collection already contains <see cref="T:GemBox.Email.Mime.Entity"/> item.
            </exception>
    </member>
    <member name="M:GemBox.Email.Mime.MultipartEntity.Remove(GemBox.Email.Mime.Entity)">
      <summary>
            Removes the specified <see cref="T:GemBox.Email.Mime.Entity"/> item.
            </summary>
      <param name="item">The <see cref="T:GemBox.Email.Mime.Entity"/> item.</param>
      <returns>
        <c>True</c> if item is successfully removed; otherwise, <c>false</c>.
            </returns>
    </member>
    <member name="M:GemBox.Email.Mime.MultipartEntity.RemoveAt(System.Int32)">
      <summary>
            Removes the <see cref="T:GemBox.Email.Mime.Entity"/> item at the specified index.
            </summary>
      <param name="index">The zero-based index of the <see cref="T:GemBox.Email.Mime.Entity"/> item to remove.</param>
    </member>
    <member name="M:GemBox.Email.Mime.MultipartEntity.Clear">
      <summary>
            Removes all the items from this <see cref="T:GemBox.Email.Mime.MultipartEntity"/>.
            </summary>
    </member>
    <member name="M:GemBox.Email.Mime.MultipartEntity.CopyTo(GemBox.Email.Mime.Entity[],System.Int32)">
      <summary>
            Copies this <see cref="T:GemBox.Email.Mime.MultipartEntity"/> or a portion of it to an array.
            </summary>
      <param name="array">The one-dimensional <see cref="T:GemBox.Email.Mime.Entity"/> array that is the destination of the items copied from this <see cref="T:GemBox.Email.Mime.MultipartEntity"/>.</param>
      <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
    </member>
    <member name="T:GemBox.Email.Mime.TransferEncodingType">
      <summary>
            An enumeration of MIME transfer encoding types.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.TransferEncodingType.Unknown">
      <summary>
            The unknown encoding type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.TransferEncodingType.SevenBit">
      <summary>
            The seven bit encoding type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.TransferEncodingType.EightBit">
      <summary>
            The eight bit encoding type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.TransferEncodingType.Binary">
      <summary>
            The binary encoding type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.TransferEncodingType.QuotedPrintable">
      <summary>
            The quoted printable encoding type.
            </summary>
    </member>
    <member name="F:GemBox.Email.Mime.TransferEncodingType.Base64">
      <summary>
            The base64 encoding type.
            </summary>
    </member>
  </members>
<script/></doc>