public CosmosDBServiceOperationProvider()

in src/CosmosDB/Providers/CosmosDbServiceOperationProvider.cs [47:61]


        public CosmosDBServiceOperationProvider()
        {
            this.serviceOperationsList = new List<ServiceOperation>();
            this.apiOperationsList = new InsensitiveDictionary<ServiceOperation>();

            this.apiOperationsList.AddRange(new InsensitiveDictionary<ServiceOperation>
            {
                { "receiveDocument", this.GetReceiveDocumentServiceOperation() },
            });

            this.serviceOperationsList.AddRange(new List<ServiceOperation>
            {
                { this.GetReceiveDocumentServiceOperation().CloneWithManifest(this.GetServiceOperationManifest()) },
            });
        }