C# 클래스 SPIDVerificationAPI_WPF_Sample.IsolatedStorageHelper

A storage helper that's used to persist values to files to be used across pages
파일 보기 프로젝트 열기: Microsoft/ProjectOxford-ClientSDK 1 사용 예제들

공개 메소드들

메소드 설명
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