Raven.DBUtil.Program.GetDocumentStore C# (CSharp) Метод

GetDocumentStore() приватный статический Метод

private static GetDocumentStore ( string url ) : IDocumentStore
url string
Результат IDocumentStore
		private static IDocumentStore GetDocumentStore(string url)
		{
			var documentStore = new DocumentStore { Url = url };
			documentStore.Initialize();
			return documentStore;
		}