TransactionalNodeService.TransactionalMappingToolService.CreateRootMap C# (CSharp) Method

CreateRootMap() public method

public CreateRootMap ( string callingUrl, System.Guid domainId, string name, NodeType nodeType, string originalId ) : QueryResponse
callingUrl string
domainId System.Guid
name string
nodeType TransactionalNodeService.Common.Model.NodeType
originalId string
return QueryResponse
        public QueryResponse CreateRootMap(string callingUrl, Guid domainId, string name, NodeType nodeType, string originalId)
        {
            using (GlymaNSApp.NodeServiceClient nodeServiceClient = new GlymaNSApp.NodeServiceClient(callingUrl))
            {
                return nodeServiceClient.CreateRootMap(callingUrl, domainId, name, nodeType, originalId);
            }
        }