Raven.Client.Embedded.EmbeddableDocumentStore.AssertValidConfiguration C# (CSharp) Method

AssertValidConfiguration() protected method

validate the configuration for the document store
protected AssertValidConfiguration ( ) : void
return void
		protected override void AssertValidConfiguration()
		{
			if (RunInMemory)
				return;
			if (string.IsNullOrEmpty(DataDirectory))  // if we don't have a data dir...
				base.AssertValidConfiguration();	 // we need to check the configuration for url

		}