Skip to main content

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

Derived: Workspace.XBR.Xperiflow.Etl.LocalFileSystemConnector, Workspace.XBR.Xperiflow.Etl.MetaFileSystemConnector, Workspace.XBR.Xperiflow.Etl.OneStreamFileSystemConnector

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​
TypeNameDescription
System.IO.StreamstreamThe Stream to write to the file

Was this page helpful?