BloomTests.Collection.CollectionSettingsTests.CreateCollectionSettings C# (CSharp) Method

CreateCollectionSettings() private method

Creates a new CollectionSettings object. May or may not load a .bloomCollection file depending on whether one exists in the collection or not.
private CreateCollectionSettings ( string parentFolderPath, string collectionName ) : CollectionSettings
parentFolderPath string
collectionName string
return Bloom.Collection.CollectionSettings
        private CollectionSettings CreateCollectionSettings(string parentFolderPath, string collectionName)
        {
            return new CollectionSettings(CollectionSettings.GetPathForNewSettings(parentFolderPath, collectionName));
        }