BrightcoveMapiWrapper.Api.BrightcoveApi.DeleteVideo C# (CSharp) Метод

DeleteVideo() публичный Метод

Deletes a video, specified by video ID
public DeleteVideo ( long videoId, bool cascade, bool deleteShares ) : void
videoId long The ID of the video you'd like to delete
cascade bool If true, video will be deleted even if it is part of a manual playlist or assigned to /// a player. The video will be removed from all playlists and players in which it appears, then deleted.
deleteShares bool Set this to true if you want also to delete shared copies of this video. Note that /// this will delete all shared copies from your account, as well as from all accounts with which the video has /// been shared, regardless of whether or not those accounts are currently using the video in playlists or players.
Результат void
		public void DeleteVideo(long videoId, bool cascade, bool deleteShares)
		{
			DoDeleteVideo(videoId, null, cascade, deleteShares);
		}

Same methods

BrightcoveApi::DeleteVideo ( string referenceId, bool cascade, bool deleteShares ) : void