Class TFAbstract<StorageFile>
- Namespace
- SunamoPlatformUwpInterop
- Assembly
- SunamoPlatformUwpInterop.dll
Provides abstract text file operations for platform-independent file access.
public class TFAbstract<StorageFile>
Type Parameters
StorageFileThe type representing a storage file.
- Inheritance
-
TFAbstract<StorageFile>
- Inherited Members
- Extension Methods
Properties
ReadAllText
Gets or sets the function for reading all text from a storage file.
public Func<StorageFile, string>? ReadAllText { get; set; }
Property Value
WriteAllBytes
Gets or sets the action for writing bytes to a storage file.
public Action<StorageFile, List<byte>>? WriteAllBytes { get; set; }
Property Value
WriteAllText
Gets or sets the action for writing text to a storage file.
public Action<StorageFile, string>? WriteAllText { get; set; }