Glyma.NodeServiceApp.NodeServiceClient.DeleteBulkNode C# (CSharp) Method

DeleteBulkNode() public method

public DeleteBulkNode ( GlymaSessionConfiguration configuration, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter nodeId ) : MapParameter
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
sessionId System.Guid
responseParameter System.Guid
domainId TransactionalNodeService.Common.MapParameter
nodeId TransactionalNodeService.Common.MapParameter
return TransactionalNodeService.Common.MapParameter
        public MapParameter DeleteBulkNode(GlymaSessionConfiguration configuration, Guid sessionId, Guid responseParameter, MapParameter domainId, MapParameter nodeId)
        {
            MapParameter result = null;

            // run the call against the application proxy
            NodeServiceApplicationProxy.Invoke(_serviceContext,
                proxy => result = proxy.DeleteBulkNode(configuration, sessionId, responseParameter, domainId, nodeId));

            return result;
        }

Usage Example

Example #1
0
 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));
     }
 }
All Usage Examples Of Glyma.NodeServiceApp.NodeServiceClient::DeleteBulkNode