<PackageReference Include="Relativity.Server.Import.SDK" Version="2.9.2" />

IStreamWriter

public interface IStreamWriter : IDisposable
Represents an abstract wrapper for the StreamWriter class.
using System; using System.IO; namespace Relativity.DataExchange.Io { [CLSCompliant(false)] public interface IStreamWriter : IDisposable { Stream BaseStream { get; } void Close(); void Flush(); void Write(char value); void Write(char[] buffer); void Write(string value); void Write(bool value); void Write(decimal value); void Write(double value); void Write(int value); void Write(long value); void Write(object value); void Write(float value); void Write(uint value); void Write(ulong value); void Write(string format, object arg0); void Write(string format, object[] arg); void Write(char[] buffer, int index, int count); void Write(string format, object arg0, object arg1); void Write(string format, object arg0, object arg1, object arg2); void WriteLine(string format, params object[] arg); void WriteLine(string value); } }