ReviewsExtensions.CreateVideoReviews Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.Collections.Generic.IList<string> CreateVideoReviews (this Microsoft.Azure.CognitiveServices.ContentModerator.IReviews operations, string contentType, string teamName, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.ContentModerator.Models.CreateVideoReviewsBodyItem> createVideoReviewsBody, string subTeam = default);
static member CreateVideoReviews : Microsoft.Azure.CognitiveServices.ContentModerator.IReviews * string * string * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.ContentModerator.Models.CreateVideoReviewsBodyItem> * string -> System.Collections.Generic.IList<string>
<Extension()>
Public Function CreateVideoReviews (operations As IReviews, contentType As String, teamName As String, createVideoReviewsBody As IList(Of CreateVideoReviewsBodyItem), Optional subTeam As String = Nothing) As IList(Of String)
Parameters
- operations
- IReviews
The operations group for this extension method.
- contentType
- String
The content type.
- teamName
- String
Your team name.
- createVideoReviewsBody
- IList<CreateVideoReviewsBodyItem>
Body for create reviews API
- subTeam
- String
SubTeam of your team, you want to assign the created review to.
Returns
Applies to
Azure SDK for .NET