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

DeleteNode() public method

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

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

            return result;
        }