Goedel.Persistence.IndexedKeyStore.IndexedKeyStore C# (CSharp) Method

IndexedKeyStore() public method

Open or create a persistence store in specified mode with the specified file name, content type and optional comment.
public IndexedKeyStore ( string FileName, bool ReadOnly, string Type, string Comment ) : System
FileName string Log file.
ReadOnly bool If true, persistence store must exist /// and will be opened in read-only mode. If false, persistence store /// is opened in read/write mode and a new store will be created /// if none exists.
Type string Type of data to store (the schema name).
Comment string Comment to be written to the log.
return System
        public IndexedKeyStore(string FileName, bool ReadOnly,
                string Type, string Comment)
            : base(FileName, ReadOnly, Type, Comment) {
            }

Same methods

IndexedKeyStore::IndexedKeyStore ( string FileName ) : System
IndexedKeyStore::IndexedKeyStore ( string FileName, string Type, string Comment ) : System