CheckNameAvailabilityResponse Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CheckNameAvailabilityResponse() |
Initializes a new instance of the CheckNameAvailabilityResponse class. |
CheckNameAvailabilityResponse(String, Nullable<Boolean>, Nullable<CheckNameAvailabilityReason>, String) |
Initializes a new instance of the CheckNameAvailabilityResponse class. |
CheckNameAvailabilityResponse()
Initializes a new instance of the CheckNameAvailabilityResponse class.
public CheckNameAvailabilityResponse ();
Public Sub New ()
Applies to
CheckNameAvailabilityResponse(String, Nullable<Boolean>, Nullable<CheckNameAvailabilityReason>, String)
Initializes a new instance of the CheckNameAvailabilityResponse class.
public CheckNameAvailabilityResponse (string name = default, bool? available = default, Microsoft.Azure.Management.Sql.Models.CheckNameAvailabilityReason? reason = default, string message = default);
new Microsoft.Azure.Management.Sql.Models.CheckNameAvailabilityResponse : string * Nullable<bool> * Nullable<Microsoft.Azure.Management.Sql.Models.CheckNameAvailabilityReason> * string -> Microsoft.Azure.Management.Sql.Models.CheckNameAvailabilityResponse
Public Sub New (Optional name As String = Nothing, Optional available As Nullable(Of Boolean) = Nothing, Optional reason As Nullable(Of CheckNameAvailabilityReason) = Nothing, Optional message As String = Nothing)
Parameters
- name
- String
The name whose availability was checked.
- reason
- Nullable<CheckNameAvailabilityReason>
The reason code explaining why the name is unavailable. Will be undefined if the name is available. Possible values include: 'Invalid', 'AlreadyExists'
- message
- String
A message explaining why the name is unavailable. Will be undefined if the name is available.
Applies to
Azure SDK for .NET