Microsoft.Azure.WebJobs.Extensions.AzureCosmosDb.Mongo/Binding/ICosmosDBMongoBindingCollectorFactory.cs (9 lines of code) (raw):

// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. using MongoDB.Driver; namespace Microsoft.Azure.WebJobs.Extensions.AzureCosmosDb.Mongo { public interface ICosmosDBMongoBindingCollectorFactory { IMongoClient CreateClient(string connectionString); } }