Interface IFileWritable<T>
This interface provides a generic approach to write generic data to a file based data sink. The interface inherits from IWritable<T>
Inherited Members
Namespace: TeleScope.Persistence.Abstractions
Assembly: TeleScope.Persistence.Abstractions.dll
Syntax
public interface IFileWritable<T> : IWritable<T>
Type Parameters
Name | Description |
---|---|
T | The type that is given on the application side. |
Methods
| Improve this Doc View SourceUpdate(FileInfo)
Updates the file information to change the file sink after instanciation process.
Declaration
IFileWritable<T> Update(FileInfo fileInfo)
Parameters
Type | Name | Description |
---|---|---|
FileInfo | fileInfo | The file information object. |
Returns
Type | Description |
---|---|
IFileWritable<T> | The calling instance. |
Update(String)
Updates the file information to change the file sink after instanciation process.
Declaration
IFileWritable<T> Update(string file)
Parameters
Type | Name | Description |
---|---|---|
System.String | file | The file information object. |
Returns
Type | Description |
---|---|
IFileWritable<T> | The calling instance. |