CheckNameResult 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
CheckNameResult() |
Initializes a new instance of the CheckNameResult class. |
CheckNameResult(Nullable<Boolean>, String, String, String) |
Initializes a new instance of the CheckNameResult class. |
CheckNameResult()
Initializes a new instance of the CheckNameResult class.
public CheckNameResult ();
Public Sub New ()
Applies to
CheckNameResult(Nullable<Boolean>, String, String, String)
Initializes a new instance of the CheckNameResult class.
public CheckNameResult (bool? nameAvailable = default, string name = default, string message = default, string reason = default);
new Microsoft.Azure.Management.Kusto.Models.CheckNameResult : Nullable<bool> * string * string * string -> Microsoft.Azure.Management.Kusto.Models.CheckNameResult
Public Sub New (Optional nameAvailable As Nullable(Of Boolean) = Nothing, Optional name As String = Nothing, Optional message As String = Nothing, Optional reason As String = Nothing)
Parameters
- name
- String
The name that was checked.
- message
- String
Message indicating an unavailable name due to a conflict, or a description of the naming rules that are violated.
- reason
- String
Message providing the reason why the given name is invalid. Possible values include: 'Invalid', 'AlreadyExists'
Applies to
Azure SDK for .NET