C# Class FirstFloor.ModernUI.Helpers.LimitedStorage

ファイルを表示 Open project: gro-ove/actools Class Usage Examples

Public Methods

Method Description
Initialize ( ) : void
Move ( string space, string oldKey, string newKey ) : void
RegisterSpace ( string name, int capacity ) : void
Remove ( string space, string key ) : void
Set ( string space, string key, string value ) : void

Private Methods

Method Description
Get ( string space, string key ) : string
LimitedStorage ( ) : System
LoadSpace ( string space ) : KeysList
Save ( string space ) : void

Method Details

Initialize() public static method

public static Initialize ( ) : void
return void

Move() public static method

public static Move ( string space, string oldKey, string newKey ) : void
space string
oldKey string
newKey string
return void

RegisterSpace() public static method

public static RegisterSpace ( string name, int capacity ) : void
name string
capacity int
return void

Remove() public static method

public static Remove ( string space, string key ) : void
space string
key string
return void

Set() public static method

public static Set ( string space, string key, string value ) : void
space string
key string
value string
return void