/// <summary>
 /// Initializes a new instance of the <see cref="HttpMultipartBoundary"/> class.
 /// </summary>
 /// <param name="boundaryStream">The stream that contains the boundary information.</param>
 public HttpMultipartBoundary(HttpMultipartSubStream boundaryStream)
 {
     this.Value = boundaryStream;
     this.ExtractHeaders();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="HttpMultipartBoundary"/> class.
 /// </summary>
 /// <param name="boundaryStream">The stream that contains the boundary information.</param>
 public HttpMultipartBoundary(HttpMultipartSubStream boundaryStream)
 {
     this.Value = boundaryStream;
     this.ExtractHeaders();
 }