Glyma.NodeServiceApp.NodeServiceClient.DeleteNode C# (CSharp) Метод

DeleteNode() публичный Метод

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
Результат 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;
        }