BrightstarDB.Models.EventFeed.EventFeedService.EventFeedService C# (CSharp) Метод

EventFeedService() публичный Метод

public EventFeedService ( string storeNane, string connectionString ) : System
storeNane string
connectionString string
Результат System
        public EventFeedService(string storeNane, string connectionString = "type=embedded;storesdirectory=c:\\brightstar")
        {
            _storeName = storeNane;
            if (connectionString.Contains("storename=")){
                _connectionString = connectionString;
            } else {
                _connectionString = connectionString + ";storename=" + storeNane;
            }
        }