Share via


CopyModelOperation Constructors

Definition

Overloads

CopyModelOperation()

Initializes a new instance of the CopyModelOperation class. This constructor is intended to be used for mocking only.

CopyModelOperation(String, String, FormTrainingClient)

Initializes a new instance of the CopyModelOperation class which tracks the status of the long-running operation for copying a custom model into a target Form Recognizer resource.

CopyModelOperation()

Source:
CopyModelOperation.cs

Initializes a new instance of the CopyModelOperation class. This constructor is intended to be used for mocking only.

protected CopyModelOperation ();
Protected Sub New ()

Applies to

CopyModelOperation(String, String, FormTrainingClient)

Source:
CopyModelOperation.cs

Initializes a new instance of the CopyModelOperation class which tracks the status of the long-running operation for copying a custom model into a target Form Recognizer resource.

public CopyModelOperation (string operationId, string targetModelId, Azure.AI.FormRecognizer.Training.FormTrainingClient client);
new Azure.AI.FormRecognizer.Training.CopyModelOperation : string * string * Azure.AI.FormRecognizer.Training.FormTrainingClient -> Azure.AI.FormRecognizer.Training.CopyModelOperation
Public Sub New (operationId As String, targetModelId As String, client As FormTrainingClient)

Parameters

operationId
String

The ID of this operation.

targetModelId
String

Model ID in the target Form Recognizer resource.

client
FormTrainingClient

The client used to check for completion.

Applies to