Ninja Database Pro
LicenseKey Property
Example 



KellermanSoftware.NinjaDatabasePro Namespace > NinjaDbPro Class : LicenseKey Property
License Key for the licensed product (see your receipt)
Syntax
Public Property LicenseKey As String
Dim instance As NinjaDbPro
Dim value As String
 
instance.LicenseKey = value
 
value = instance.LicenseKey
public string LicenseKey {get; set;}
public:
property String^ LicenseKey {
   String^ get();
   void set (    String^ value);
}
Example
NinjaDbPro db = new NinjaDbPro("MyDatabaseDirectory", "MyDatabaseName");
             
            //Licensed Mode
            db.UserName = "John Smith 101224";
            db.LicenseKey = "aousdf832jasf==";
             
            //Set before OpenDatabase. Default storage is IsolatedStorageDatabase. Other options are:
            //db.Storage = new MemoryDatabase(); //In memory database
            //db.Storage = new FileDatabase();  
             
            db.OpenDatabase();
             
            db.CloseDatabase();
Dim db As New NinjaDbPro("MyDatabaseDirectory", "MyDatabaseName")
             
            'Licensed Mode
            db.UserName = "John Smith 101224"
            db.LicenseKey = "aousdf832jasf=="
             
            'Set before OpenDatabase. Default storage is IsolatedStorageDatabase. Other options are:
            'db.Storage = new MemoryDatabase(); //In memory database
            'db.Storage = new FileDatabase();  
             
            db.OpenDatabase()
             
            db.CloseDatabase()
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

NinjaDbPro Class
NinjaDbPro Members