CheckNameResult Constructors

Definition

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

nameAvailable
Nullable<Boolean>

Specifies a Boolean value that indicates if the name is available.

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