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

Copy() public method

public Copy ( string sourceIdOrPath, string targetIdOrPath ) : void
sourceIdOrPath string
targetIdOrPath string
return void
        public void Copy(string sourceIdOrPath, string targetIdOrPath)
        {
            Copy(GetNodeId(sourceIdOrPath), GetNodeId(targetIdOrPath));
        }
        

Same methods

ContentStoreService::Copy ( int nodeID, int targetNodeID ) : void