Skip to content

Instantly share code, notes, and snippets.

@ferozed
Created December 11, 2016 02:29
Show Gist options
  • Save ferozed/52761dfd468c0a56613c8ed6f3833236 to your computer and use it in GitHub Desktop.
Save ferozed/52761dfd468c0a56613c8ed6f3833236 to your computer and use it in GitHub Desktop.
MimePart Class Specification
///
/// MimePart
/// Abstract class for all MimeParts
///
abstract class MimePart
{
public string Name { get; set; }
public abstract string ContentDisposition { get; }
public abstract string ContentType { get; }
public abstract void CopyTo(Stream stream);
public String Boundary
{
get;
set;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment