Aqueduct.Mail.MailMessage.ConvertAttachment C# (CSharp) Method

ConvertAttachment() private static method

private static ConvertAttachment ( Attachment attachment ) : System.Net.Mail.Attachment
attachment Attachment
return System.Net.Mail.Attachment
		private static System.Net.Mail.Attachment ConvertAttachment(Attachment attachment)
		{
			if (attachment.UsesStream)
			{
				return new System.Net.Mail.Attachment(attachment.ContentStream, attachment.FileName);
			}
			return new System.Net.Mail.Attachment(attachment.FileName);
		}