CheckNameAvailabilityResult 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
CheckNameAvailabilityResult() |
Initializes a new instance of the CheckNameAvailabilityResult class. |
CheckNameAvailabilityResult(Nullable<Boolean>, Nullable<Reason>, String) |
Initializes a new instance of the CheckNameAvailabilityResult class. |
CheckNameAvailabilityResult()
Initializes a new instance of the CheckNameAvailabilityResult class.
public CheckNameAvailabilityResult ();
Public Sub New ()
Applies to
CheckNameAvailabilityResult(Nullable<Boolean>, Nullable<Reason>, String)
Initializes a new instance of the CheckNameAvailabilityResult class.
public CheckNameAvailabilityResult (bool? nameAvailable = default, Microsoft.Azure.Management.ManagementGroups.Models.Reason? reason = default, string message = default);
new Microsoft.Azure.Management.ManagementGroups.Models.CheckNameAvailabilityResult : Nullable<bool> * Nullable<Microsoft.Azure.Management.ManagementGroups.Models.Reason> * string -> Microsoft.Azure.Management.ManagementGroups.Models.CheckNameAvailabilityResult
Public Sub New (Optional nameAvailable As Nullable(Of Boolean) = Nothing, Optional reason As Nullable(Of Reason) = Nothing, Optional message As String = Nothing)
Parameters
Required. True indicates name is valid and available. False indicates the name is invalid, unavailable, or both.
Required if nameAvailable == false. Invalid indicates the name provided does not match the resource provider's naming requirements (incorrect length, unsupported characters, etc.) AlreadyExists indicates that the name is already in use and is therefore unavailable. Possible values include: 'Invalid', 'AlreadyExists'
- message
- String
Required if nameAvailable == false. Localized. If reason == invalid, provide the user with the reason why the given name is invalid, and provide the resource naming requirements so that the user can select a valid name. If reason == AlreadyExists, explain that is already in use, and direct them to select a different name.
Applies to
Azure SDK for .NET