共用方式為


Address Constructors

Definition

Overloads

Address()

Initializes a new instance of the Address class.

Address(String, String, String, String, String, String, String)

Initializes a new instance of the Address class.

Address()

Initializes a new instance of the Address class.

public Address ();
Public Sub New ()

Applies to

Address(String, String, String, String, String, String, String)

Initializes a new instance of the Address class.

public Address (string country, string addressLine1 = default, string addressLine2 = default, string addressLine3 = default, string postalCode = default, string city = default, string state = default);
new Microsoft.Azure.Management.DataBoxEdge.Models.Address : string * string * string * string * string * string * string -> Microsoft.Azure.Management.DataBoxEdge.Models.Address
Public Sub New (country As String, Optional addressLine1 As String = Nothing, Optional addressLine2 As String = Nothing, Optional addressLine3 As String = Nothing, Optional postalCode As String = Nothing, Optional city As String = Nothing, Optional state As String = Nothing)

Parameters

country
String

The country name.

addressLine1
String

The address line1.

addressLine2
String

The address line2.

addressLine3
String

The address line3.

postalCode
String

The postal code.

city
String

The city name.

state
String

The state name.

Applies to