C# Class AppSettings.ExampleSettings

Auto Generate for Tab File: "Example.bytes" No use of generic and reflection, for better performance, less IL code generating
Inheritance: IReloadableSettings
Afficher le fichier Open project: mr-kelly/KEngine Class Usage Examples

Méthodes publiques

Свойство Type Description
OnReload System.Action
TabFilePaths string[]

Méthodes publiques

Méthode Description
Get ( string primaryKey ) : ExampleSetting

Get class by primary key: Example

GetAll ( ) : IEnumerable

foreachable enumerable: Example

GetEnumerator ( ) : IEnumerator

GetEnumerator for `MoveNext`: Example

GetInstance ( ) : ExampleSettings

Get the singleton

ReloadAll ( ) : void

Do reload the setting file: Example, no exception when duplicate primary key

Private Methods

Méthode Description
ExampleSettings ( ) : System.Collections

Constructor, just reload(init) When Unity Editor mode, will watch the file modification and auto reload

_ReloadAll ( bool throwWhenDuplicatePrimaryKey ) : void

Do reload the setting file: Example

Method Details

Get() public static méthode

Get class by primary key: Example
public static Get ( string primaryKey ) : ExampleSetting
primaryKey string
Résultat ExampleSetting

GetAll() public static méthode

foreachable enumerable: Example
public static GetAll ( ) : IEnumerable
Résultat IEnumerable

GetEnumerator() public static méthode

GetEnumerator for `MoveNext`: Example
public static GetEnumerator ( ) : IEnumerator
Résultat IEnumerator

GetInstance() public static méthode

Get the singleton
public static GetInstance ( ) : ExampleSettings
Résultat ExampleSettings

ReloadAll() public méthode

Do reload the setting file: Example, no exception when duplicate primary key
public ReloadAll ( ) : void
Résultat void

Property Details

OnReload public_oe static_oe property

Trigger delegate when reload the Settings
public static System.Action OnReload
Résultat System.Action

TabFilePaths public_oe static_oe property

public static string[] TabFilePaths
Résultat string[]