TransactionalNodeService.TransactionalMappingToolService.SubmitBulkOperations C# (CSharp) Method

SubmitBulkOperations() public method

public SubmitBulkOperations ( string callingUrl, System.Guid sessionId, BulkOperations operations ) : List
callingUrl string
sessionId System.Guid
operations TransactionalNodeService.Common.NodeServiceOperations.Bulk.BulkOperations
return List
        public List<BulkOperationResponse> SubmitBulkOperations(string callingUrl, Guid sessionId, BulkOperations operations)
        {
            List<BulkOperationResponse> operationResponses = new List<BulkOperationResponse>();

            foreach (IBulkOperation operation in operations.Operations)
            {
                BulkOperationResponse operationResponse = operation.SubmitOperation(this, callingUrl, sessionId);

                operationResponses.Add(operationResponse);
            }

            return operationResponses;
        }