| 123456789101112131415161718 |
- //
- // System.Web.Mail.IAttachmentEncoder.cs
- //
- // Author(s):
- // Per Arneng <[email protected]>
- //
- //
- using System;
- using System.IO;
- namespace System.Web.Mail {
-
- // An interface for attachment encoders ex Base64, UUEncode
- interface IAttachmentEncoder {
- void EncodeStream( Stream ins , Stream outs );
- }
-
- }
|