다음을 통해 공유


RegionContract Constructors

Definition

Overloads

RegionContract()

Initializes a new instance of the RegionContract class.

RegionContract(String, Nullable<Boolean>, Nullable<Boolean>)

Initializes a new instance of the RegionContract class.

RegionContract()

Initializes a new instance of the RegionContract class.

public RegionContract ();
Public Sub New ()

Applies to

RegionContract(String, Nullable<Boolean>, Nullable<Boolean>)

Initializes a new instance of the RegionContract class.

public RegionContract (string name = default, bool? isMasterRegion = default, bool? isDeleted = default);
new Microsoft.Azure.Management.ApiManagement.Models.RegionContract : string * Nullable<bool> * Nullable<bool> -> Microsoft.Azure.Management.ApiManagement.Models.RegionContract
Public Sub New (Optional name As String = Nothing, Optional isMasterRegion As Nullable(Of Boolean) = Nothing, Optional isDeleted As Nullable(Of Boolean) = Nothing)

Parameters

name
String

Region name.

isMasterRegion
Nullable<Boolean>

whether Region is the master region.

isDeleted
Nullable<Boolean>

whether Region is deleted.

Applies to