C# Класс SPIDVerificationAPI_WPF_Sample.IsolatedStorageHelper

A storage helper that's used to persist values to files to be used across pages
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
getInstance ( ) : IsolatedStorageHelper

Creates an Instance of the storage helper

readValue ( string filename ) : string

Reads a value from a given file

writeValue ( string fileName, string value ) : void

Writes a value to a given file

Приватные методы

Метод Описание
IsolatedStorageHelper ( ) : System.IO

Описание методов

getInstance() публичный статический Метод

Creates an Instance of the storage helper
public static getInstance ( ) : IsolatedStorageHelper
Результат IsolatedStorageHelper

readValue() публичный Метод

Reads a value from a given file
public readValue ( string filename ) : string
filename string The file to read the value from
Результат string

writeValue() публичный Метод

Writes a value to a given file
public writeValue ( string fileName, string value ) : void
fileName string The file to write the value to
value string The value to be written
Результат void