SenseNet.Services.ContentStore.ContentStoreService.MoveMore C# (CSharp) Method

MoveMore() public method

public MoveMore ( string nodeIdList, string targetNodePath ) : void
nodeIdList string
targetNodePath string
return void
        public void MoveMore(string nodeIdList, string targetNodePath)
        {
            if (String.IsNullOrEmpty(nodeIdList))
                return;

            if (String.IsNullOrEmpty(targetNodePath))
                return;

            var errors = new List<Exception>();

            var nodeList = GetNodeIdList(nodeIdList);

            Node.MoveMore(nodeList, targetNodePath, ref errors);
            
            if (errors.Count != 0)
                SendErrorsToUser(errors);            
        }