Ejemplo n.º 1
0
        /// <summary>
        /// Initialises a new instance so that it represents a subset of the <see cref="eSectionTextPart.header"/>.
        /// </summary>
        /// <param name="pPart">A dot separated list of integers specifying the body-part, or <see langword="null"/> for the whole message</param>
        /// <param name="pNames">Must not be <see langword="null"/> nor empty.</param>
        /// <param name="pNot"><see langword="true"/> to represent all header fields except those specified, <see langword="false"/> to represent only the header fields specified.</param>
        public cSection(string pPart, cHeaderFieldNames pNames, bool pNot = false)
        {
            if (pPart != null && !ZValidPart(pPart))
            {
                throw new ArgumentOutOfRangeException(nameof(pPart));
            }
            Part = pPart;

            if (pNot)
            {
                TextPart = eSectionTextPart.headerfieldsnot;
            }
            else
            {
                TextPart = eSectionTextPart.headerfields;
            }

            if (pNames == null)
            {
                throw new ArgumentNullException(nameof(pNames));
            }
            if (pNames.Count == 0)
            {
                throw new ArgumentOutOfRangeException(nameof(pNames));
            }
            Names = pNames;
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Initialises a new instance so that it represents an entire body-part.
 /// </summary>
 /// <param name="pPart">A dot separated list of integers specifying the body-part, or <see langword="null"/> for the whole message</param>
 /// <remarks>
 /// <see cref="TextPart"/> is set to <see cref="eSectionTextPart.all"/>, <see cref="Names"/> to <see langword="null"/>.
 /// </remarks>
 public cSection(string pPart)
 {
     if (pPart != null && !ZValidPart(pPart))
     {
         throw new ArgumentOutOfRangeException(nameof(pPart));
     }
     Part     = pPart;
     TextPart = eSectionTextPart.all;
     Names    = null;
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Initialises a new instance so that it represents a whole text part.
 /// </summary>
 /// <param name="pPart">A dot separated list of integers specifying the body-part, or <see langword="null"/> for the whole message</param>
 /// <param name="pTextPart">May be <see cref="eSectionTextPart.all"/>, <see cref="eSectionTextPart.header"/>, <see cref="eSectionTextPart.text"/> or <see cref="eSectionTextPart.mime"/> (<see cref="eSectionTextPart.mime"/> only if <paramref name="pPart"/> is not <see langword="null"/>).</param>
 public cSection(string pPart, eSectionTextPart pTextPart)
 {
     if (pPart != null && !ZValidPart(pPart))
     {
         throw new ArgumentOutOfRangeException(nameof(pPart));
     }
     Part = pPart;
     if (pTextPart == eSectionTextPart.headerfields || pTextPart == eSectionTextPart.headerfieldsnot)
     {
         throw new ArgumentOutOfRangeException(nameof(pTextPart));
     }
     if (pPart == null && pTextPart == eSectionTextPart.mime)
     {
         throw new ArgumentOutOfRangeException(nameof(pTextPart));
     }
     TextPart = pTextPart;
     Names    = null;
 }