Interface IFileConnector
Defines a contract for file handling, enabling reading from and writing to a file.
Namespace: Workspace.XBR.Xperiflow.Etl
Assembly: Xperiflow.dll
Declaration
public interface IFileConnector
Methods
Read()
Reads the file content as a Stream
Declaration
Stream Read()
Returns
System.IO.Stream
A Stream
containing the file content
Write(Stream)
Writes the specified Stream
to a file
Declaration
void Write(Stream stream)
Parameters
Type | Name | Description |
---|---|---|
System.IO.Stream | stream | The Stream to write to the file |