TransactionalNodeService.TransactionalMappingToolService.UpdateBulkNode C# (CSharp) Method

UpdateBulkNode() public method

public UpdateBulkNode ( string callingUrl, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter nodeId, NodeType nodeType ) : MapParameter
callingUrl string
sessionId System.Guid
responseParameter System.Guid
domainId MapParameter
nodeId MapParameter
nodeType TransactionalNodeService.Common.Model.NodeType
return MapParameter
        public MapParameter UpdateBulkNode(string callingUrl, Guid sessionId, Guid responseParameter, MapParameter domainId, MapParameter nodeId, NodeType nodeType)
        {
            using (GlymaNSApp.NodeServiceClient nodeServiceClient = new GlymaNSApp.NodeServiceClient(callingUrl))
            {
                return nodeServiceClient.UpdateBulkNode(callingUrl, sessionId, responseParameter, domainId, nodeId, nodeType);
            }
        }