mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
35 lines
759 B
C#
35 lines
759 B
C#
// http://aspnetupload.com
|
|
// Copyright © 2009 Krystalware, Inc.
|
|
//
|
|
// This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License
|
|
// http://creativecommons.org/licenses/by-sa/3.0/us/
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.IO;
|
|
|
|
namespace Krystalware.UploadHelper
|
|
{
|
|
public class StringMimePart : MimePart
|
|
{
|
|
Stream _data;
|
|
|
|
public string StringData
|
|
{
|
|
set
|
|
{
|
|
_data = new MemoryStream(Encoding.UTF8.GetBytes(value));
|
|
}
|
|
}
|
|
|
|
public override Stream Data
|
|
{
|
|
get
|
|
{
|
|
return _data;
|
|
}
|
|
}
|
|
}
|
|
}
|