HtmlFileLongTextStreamFormatterFactory
using kCura.WinEDDS;
using kCura.WinEDDS.Exporters;
using System.IO;
namespace Relativity.DataExchange.Export.VolumeManagerV2.Metadata.Text
{
public class HtmlFileLongTextStreamFormatterFactory : ILongTextStreamFormatterFactory
{
private readonly ExportFile _exportSettings;
public HtmlFileLongTextStreamFormatterFactory(ExportFile exportSettings)
{
_exportSettings = exportSettings;
}
public ILongTextStreamFormatter Create(TextReader source)
{
return new HtmlFileLongTextStreamFormatter(_exportSettings, source);
}
}
}