Domain Constructors

Definition

Overloads

Domain()

Initializes a new instance of the Domain class.

Domain(Guid, String, String, Boolean, Boolean)
Domain(Guid, String, String, Boolean, Boolean, IList<String>, ModelInformation)

Domain()

Source:
Domain.cs
Source:
Domain.cs

Initializes a new instance of the Domain class.

public Domain ();
Public Sub New ()

Applies to

Domain(Guid, String, String, Boolean, Boolean)

Source:
Domain.cs
public Domain (Guid id = default, string name = default, string type = default, bool exportable = false, bool enabled = false);
new Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.Domain : Guid * string * string * bool * bool -> Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.Domain
Public Sub New (Optional id As Guid = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional exportable As Boolean = false, Optional enabled As Boolean = false)

Parameters

id
Guid
name
String
type
String
exportable
Boolean
enabled
Boolean

Applies to

Domain(Guid, String, String, Boolean, Boolean, IList<String>, ModelInformation)

Source:
Domain.cs
public Domain (Guid id = default, string name = default, string type = default, bool exportable = false, bool enabled = false, System.Collections.Generic.IList<string> exportablePlatforms = default, Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.ModelInformation modelInformation = default);
new Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.Domain : Guid * string * string * bool * bool * System.Collections.Generic.IList<string> * Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.ModelInformation -> Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.Domain
Public Sub New (Optional id As Guid = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional exportable As Boolean = false, Optional enabled As Boolean = false, Optional exportablePlatforms As IList(Of String) = Nothing, Optional modelInformation As ModelInformation = Nothing)

Parameters

id
Guid
name
String
type
String
exportable
Boolean
enabled
Boolean
exportablePlatforms
IList<String>
modelInformation
ModelInformation

Applies to