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

StreamWriterWrap

Represents a StreamWriter class object wrapper.
public Stream BaseStream { get; }

public StreamWriterWrap(string path, bool append, Encoding encoding)

Initializes a new instance of the StreamWriterWrap class for the specified file on the specified path, using the specified encoding and default buffer size. If the file exists, it can be either overwritten or appended to. If the file does not exist, this constructor creates a new file.

public void Close()

public void Dispose()

Dispose this instance.

public void Flush()

public void Write(char value)

public void Write(char[] buffer)

public void Write(string value)

public void Write(char[] buffer, int index, int count)

public void Write(bool value)

public void Write(decimal value)

public void Write(double value)

public void Write(int value)

public void Write(long value)

public void Write(object value)

public void Write(float value)

public void Write(uint value)

public void Write(ulong value)

public void Write(string format, object arg0)

public void Write(string format, object[] arg)

public void Write(string format, object arg0, object arg1)

public void Write(string format, object arg0, object arg1, object arg2)

public void WriteLine(string format, object[] arg)

public void WriteLine(string value)