C# Class SWFProcessing.Swiffotron.Processor.Extern

Afficher le fichier Open project: WeeWorld/Swiffotron Class Usage Examples

Méthodes publiques

Méthode Description
CreateCache ( string name, string assembly, string classname, string init ) : ISwiffotronCache

Creates a cache object by name, as specified in the config file.

CreateStore ( string name, string assembly, string classname, string init ) : ISwiffotronStore

Creates a store object by name, as specified in the config file.

Method Details

CreateCache() public static méthode

Creates a cache object by name, as specified in the config file.
public static CreateCache ( string name, string assembly, string classname, string init ) : ISwiffotronCache
name string The name for this cache that will be referenced in /// any swiffotron XML files.
assembly string The fully qualified assembly name. Pass an empty /// string or null to reference the currently executing assembly and use /// any default implementors.
classname string The fully qualified class name
init string An initialisation string passed in the call to Initialise /// on the new cache object.
Résultat ISwiffotronCache

CreateStore() public static méthode

Creates a store object by name, as specified in the config file.
public static CreateStore ( string name, string assembly, string classname, string init ) : ISwiffotronStore
name string The name for this store that will be referenced in /// any swiffotron XML files.
assembly string The fully qualified assembly name. Pass an empty /// string or null to reference the currently executing assembly and use /// any default implementors.
classname string The fully qualified class name
init string An initialisation string passed in the call to Initialise /// on the new store object.
Résultat ISwiffotronStore