TransactionalNodeService.TransactionalMappingToolService.DeleteBulkNode C# (CSharp) Method

DeleteBulkNode() public method

public DeleteBulkNode ( string callingUrl, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter nodeId ) : MapParameter
callingUrl string
sessionId System.Guid
responseParameter System.Guid
domainId MapParameter
nodeId MapParameter
return MapParameter
        public MapParameter DeleteBulkNode(string callingUrl, Guid sessionId, Guid responseParameter, MapParameter domainId, MapParameter nodeId)
        {
            using (GlymaNSApp.NodeServiceClient nodeServiceClient = new GlymaNSApp.NodeServiceClient(callingUrl))
            {
                return nodeServiceClient.DeleteBulkNode(callingUrl, sessionId, responseParameter, domainId, nodeId);
            }
        }