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

UpdateNode() public method

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

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

            return result;
        }