JryVideo.Common.VideoRoleViewModel.BegionMoveToAnotherCollection C# (CSharp) Méthode

BegionMoveToAnotherCollection() public méthode

public BegionMoveToAnotherCollection ( ) : void
Résultat void
        public async void BegionMoveToAnotherCollection()
        {
            var dest = await this.parent.MoveToAnotherCollectionAsync(this);
            if (dest != null)
            {
                this.ImdbItem = dest;
                this.parent.Roles.Collection.Remove(this);
                this.parent.Roles.Collection.Add(this);
            }
        }