コード例 #1
0
        private void Copy(ContentReference cref)
        {
            var dest = (!string.IsNullOrEmpty(Destination) ? ContentReference.Parse(Destination) :_repo.Get <IContent>(cref).ParentLink);
            var cf   = _repo.Copy(cref, dest);

            OnCommandOutput?.Invoke(this, cf);
            _count++;
        }