Share via


ReviewsExtensions.AddVideoFrameAsync Method

Definition

The reviews created would show up for Reviewers on your team. As Reviewers complete reviewing, results of the Review would be POSTED (i.e. HTTP POST) on the specified CallBackEndpoint.

<h3>CallBack Schemas </h3> <h4>Review Completion CallBack Sample</h4> <p> {<br/> "ReviewId": "<Review Id>",<br/> "ModifiedOn": "2016-10-11T22:36:32.9934851Z",<br/> "ModifiedBy": "<Name of the Reviewer>",<br/> "CallBackType": "Review",<br/> "ContentId": "<The ContentId that was specified input>",<br/> "Metadata": {<br/> "adultscore": "0.xxx",<br/> "a": "False",<br/> "racyscore": "0.xxx",<br/> "r": "True"<br/> },<br/> "ReviewerResultTags": {<br/> "a": "False",<br/> "r": "True"<br/> }<br/> }<br/>

</p>.

public static System.Threading.Tasks.Task AddVideoFrameAsync (this Microsoft.Azure.CognitiveServices.ContentModerator.IReviews operations, string teamName, string reviewId, int? timescale = default, System.Threading.CancellationToken cancellationToken = default);
static member AddVideoFrameAsync : Microsoft.Azure.CognitiveServices.ContentModerator.IReviews * string * string * Nullable<int> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
<Extension()>
Public Function AddVideoFrameAsync (operations As IReviews, teamName As String, reviewId As String, Optional timescale As Nullable(Of Integer) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task

Parameters

operations
IReviews

The operations group for this extension method.

teamName
String

Your team name.

reviewId
String

Id of the review.

timescale
Nullable<Int32>

Timescale of the video you are adding frames to.

cancellationToken
CancellationToken

The cancellation token.

Returns

Applies to