This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public override void Initialize(string name, NameValueCollection config) | |
{ | |
name = string.IsNullOrEmpty(name) ? "SqlPersistanceProvider" : name.Trim(); | |
base.Setup("SqlPersistanceProvider", "SqlPersistanceProvider saves the T to SQL DB", config); | |
_PersistenceMediaPath = config[PersistenceMediaPathKeyName]; | |
//Call the base class to initialize | |
base.Initialize(name, config); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment