TransactionalNodeService.TransactionalMappingToolService.AddBulkRelationship C# (CSharp) Method

AddBulkRelationship() public method

public AddBulkRelationship ( string callingUrl, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter rootMapId, MapParameter>.Dictionary nodes, RelationshipType relationshipType, string originalId ) : MapParameter
callingUrl string
sessionId System.Guid
responseParameter System.Guid
domainId MapParameter
rootMapId MapParameter
nodes MapParameter>.Dictionary
relationshipType TransactionalNodeService.Common.Model.RelationshipType
originalId string
return MapParameter
        public MapParameter AddBulkRelationship(string callingUrl, Guid sessionId, Guid responseParameter, MapParameter domainId, MapParameter rootMapId, Dictionary<DescriptorType, MapParameter> nodes, RelationshipType relationshipType, string originalId)
        {
            using (GlymaNSApp.NodeServiceClient nodeServiceClient = new GlymaNSApp.NodeServiceClient(callingUrl))
            {
                return nodeServiceClient.AddBulkRelationship(callingUrl, sessionId, responseParameter, domainId, rootMapId, nodes, relationshipType, originalId);
            }
        }