You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1003 B
C#

namespace JumpKick.HttpLib.Provider
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using System.Text;
public class TextBodyProvider : DefaultBodyProvider
{
private Stream contentstream;
private StreamWriter writer;
private String contentType;
public TextBodyProvider(String text) : this("application/text",text)
{
}
public TextBodyProvider(String contentType, String text)
{
contentstream = new MemoryStream();
writer = new StreamWriter(contentstream);
this.contentType = contentType;
writer.Write(text);
writer.Flush();
}
public override string GetContentType()
{
return this.contentType;
}
public override Stream GetBody()
{
contentstream.Seek(0,SeekOrigin.Begin);
return contentstream;
}
}
}