Share via


ImagePrediction Constructors

Definition

Overloads

ImagePrediction()

Initializes a new instance of the ImagePrediction class.

ImagePrediction(Guid, Guid, Guid, DateTime, IList<PredictionModel>)

Initializes a new instance of the ImagePrediction class.

ImagePrediction()

Source:
ImagePrediction.cs

Initializes a new instance of the ImagePrediction class.

public ImagePrediction ();
Public Sub New ()

Applies to

ImagePrediction(Guid, Guid, Guid, DateTime, IList<PredictionModel>)

Source:
ImagePrediction.cs

Initializes a new instance of the ImagePrediction class.

public ImagePrediction (Guid id = default, Guid project = default, Guid iteration = default, DateTime created = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Vision.CustomVision.Prediction.Models.PredictionModel> predictions = default);
new Microsoft.Azure.CognitiveServices.Vision.CustomVision.Prediction.Models.ImagePrediction : Guid * Guid * Guid * DateTime * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Vision.CustomVision.Prediction.Models.PredictionModel> -> Microsoft.Azure.CognitiveServices.Vision.CustomVision.Prediction.Models.ImagePrediction
Public Sub New (Optional id As Guid = Nothing, Optional project As Guid = Nothing, Optional iteration As Guid = Nothing, Optional created As DateTime = Nothing, Optional predictions As IList(Of PredictionModel) = Nothing)

Parameters

id
Guid
project
Guid
iteration
Guid
created
DateTime
predictions
IList<PredictionModel>

Applies to