Skip to content
Snippets Groups Projects
Commit de77d86a authored by Klaus Fischer's avatar Klaus Fischer
Browse files

Added FileStream overload for appending attachments

parent 587ac6e1
No related branches found
No related tags found
2 merge requests!28773 direct submission status,!27Draft: Issue/830 http header add version
...@@ -89,6 +89,9 @@ public interface ISubmissionWithData { ...@@ -89,6 +89,9 @@ public interface ISubmissionWithData {
ISubmissionWithData WithAttachments(params Attachment[] attachments); ISubmissionWithData WithAttachments(params Attachment[] attachments);
ISubmissionWithData WithAttachments(List<Attachment> attachments); ISubmissionWithData WithAttachments(List<Attachment> attachments);
ISubmissionWithData WithAttachments(string fileName, string description, string mimeType,
FileStream content);
SendableSubmission Build(); SendableSubmission Build();
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment