UpdateSnapshotRequest Constructors

Definition

Overloads

UpdateSnapshotRequest()

Initializes a new instance of the UpdateSnapshotRequest class.

UpdateSnapshotRequest(IList<Guid>, String)

Initializes a new instance of the UpdateSnapshotRequest class.

UpdateSnapshotRequest()

Source:
UpdateSnapshotRequest.cs

Initializes a new instance of the UpdateSnapshotRequest class.

public UpdateSnapshotRequest ();
Public Sub New ()

Applies to

UpdateSnapshotRequest(IList<Guid>, String)

Source:
UpdateSnapshotRequest.cs

Initializes a new instance of the UpdateSnapshotRequest class.

public UpdateSnapshotRequest (System.Collections.Generic.IList<Guid> applyScope = default, string userData = default);
new Microsoft.Azure.CognitiveServices.Vision.Face.Models.UpdateSnapshotRequest : System.Collections.Generic.IList<Guid> * string -> Microsoft.Azure.CognitiveServices.Vision.Face.Models.UpdateSnapshotRequest
Public Sub New (Optional applyScope As IList(Of Guid) = Nothing, Optional userData As String = Nothing)

Parameters

applyScope
IList<Guid>

Array of the target Face subscription ids for the snapshot, specified by the user who created the snapshot when calling Snapshot - Take. For each snapshot, only subscriptions included in the applyScope of Snapshot - Take can apply it.

userData
String

User specified data about the snapshot for any purpose. Length should not exceed 16KB.

Applies to