ResourceNameAvailability 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
ResourceNameAvailability() |
Initializes a new instance of the ResourceNameAvailability class. |
ResourceNameAvailability(Nullable<Boolean>, String, String) |
Initializes a new instance of the ResourceNameAvailability class. |
ResourceNameAvailability()
Initializes a new instance of the ResourceNameAvailability class.
public ResourceNameAvailability ();
Public Sub New ()
Applies to
ResourceNameAvailability(Nullable<Boolean>, String, String)
Initializes a new instance of the ResourceNameAvailability class.
public ResourceNameAvailability (bool? nameAvailable = default, string reason = default, string message = default);
new Microsoft.Azure.Management.WebSites.Models.ResourceNameAvailability : Nullable<bool> * string * string -> Microsoft.Azure.Management.WebSites.Models.ResourceNameAvailability
Public Sub New (Optional nameAvailable As Nullable(Of Boolean) = Nothing, Optional reason As String = Nothing, Optional message As String = Nothing)
Parameters
<code>true</code> indicates name is valid and available. <code>false</code> indicates the name is invalid, unavailable, or both.
- reason
- String
<code>Invalid</code> indicates the name provided does not match Azure App Service naming requirements. <code>AlreadyExists</code> indicates that the name is already in use and is therefore unavailable. Possible values include: 'Invalid', 'AlreadyExists'
- message
- String
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 resource name is already in use, and direct them to select a different name.
Applies to
Azure SDK for .NET