IAttachmentEncoder.cs 335 B

123456789101112131415161718
  1. //
  2. // System.Web.Mail.IAttachmentEncoder.cs
  3. //
  4. // Author(s):
  5. // Per Arneng <[email protected]>
  6. //
  7. //
  8. using System;
  9. using System.IO;
  10. namespace System.Web.Mail {
  11. // An interface for attachment encoders ex Base64, UUEncode
  12. interface IAttachmentEncoder {
  13. void EncodeStream( Stream ins , Stream outs );
  14. }
  15. }