DomainAvailabilityCheckResult Constructors

Definition

Overloads

DomainAvailabilityCheckResult()

Initializes a new instance of the DomainAvailabilityCheckResult class.

DomainAvailabilityCheckResult(String, Nullable<Boolean>, Nullable<DomainType>)

Initializes a new instance of the DomainAvailabilityCheckResult class.

DomainAvailabilityCheckResult()

Initializes a new instance of the DomainAvailabilityCheckResult class.

public DomainAvailabilityCheckResult ();
Public Sub New ()

Applies to

DomainAvailabilityCheckResult(String, Nullable<Boolean>, Nullable<DomainType>)

Initializes a new instance of the DomainAvailabilityCheckResult class.

public DomainAvailabilityCheckResult (string name = default, bool? available = default, Microsoft.Azure.Management.WebSites.Models.DomainType? domainType = default);
new Microsoft.Azure.Management.WebSites.Models.DomainAvailabilityCheckResult : string * Nullable<bool> * Nullable<Microsoft.Azure.Management.WebSites.Models.DomainType> -> Microsoft.Azure.Management.WebSites.Models.DomainAvailabilityCheckResult
Public Sub New (Optional name As String = Nothing, Optional available As Nullable(Of Boolean) = Nothing, Optional domainType As Nullable(Of DomainType) = Nothing)

Parameters

name
String

Name of the domain.

available
Nullable<Boolean>

<code>true</code> if domain can be purchased using CreateDomain API; otherwise, <code>false</code>.

domainType
Nullable<DomainType>

Valid values are Regular domain: Azure will charge the full price of domain registration, SoftDeleted: Purchasing this domain will simply restore it and this operation will not cost anything. Possible values include: 'Regular', 'SoftDeleted'

Applies to