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

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

Deletes the specified previously shared video from a list of sharee accounts. If a shared version of the specified video does not exist in a sharee account, no action is taken.
public UnshareVideo ( long videoId, IEnumerable shareeAccountIds ) : ICollection
videoId long The id for the video that is shared.
shareeAccountIds IEnumerable List of Account IDs from which to stop sharing the video.
Результат ICollection
		public ICollection<long> UnshareVideo(long videoId, IEnumerable<long> shareeAccountIds)
		{
			BrightcoveParamCollection parms = CreateWriteParamCollection("unshare_video",
																		 methodParams =>
																		 {
																			 methodParams.Add("video_id", videoId);
																			 methodParams.Add("sharee_account_ids", shareeAccountIds);
																		 });

			return RunPost<BrightcoveResultContainer<long[]>>(parms).Result;
		}