コード例 #1
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @Test public void checkTinyConsistentStore() throws Exception
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
        public virtual void CheckTinyConsistentStore()
        {
            _db.ensureStarted();
            CreateLinkedList(_db, 1_000);
            _db.shutdownAndKeepStore();

            AssertConsistentStore(_db);
        }
コード例 #2
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
//ORIGINAL LINE: void applySetting(org.neo4j.graphdb.config.Setting<String> setting, String value) throws java.io.IOException
        internal virtual void ApplySetting(Setting <string> setting, string value)
        {
            Db.restartDatabase(setting.Name(), value);
            Db.ensureStarted();
            FulltextAdapter = Accessor;
        }