Table of Contents

Class TFAbstract<StorageFile>

Namespace
SunamoPlatformUwpInterop
Assembly
SunamoPlatformUwpInterop.dll

Provides abstract text file operations for platform-independent file access.

public class TFAbstract<StorageFile>

Type Parameters

StorageFile

The 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

Func<StorageFile, string>

WriteAllBytes

Gets or sets the action for writing bytes to a storage file.

public Action<StorageFile, List<byte>>? WriteAllBytes { get; set; }

Property Value

Action<StorageFile, List<byte>>

WriteAllText

Gets or sets the action for writing text to a storage file.

public Action<StorageFile, string>? WriteAllText { get; set; }

Property Value

Action<StorageFile, string>