你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

HostName 构造函数

定义

重载

HostName()

初始化 HostName 类的新实例。

HostName(String, IList<String>, String, Nullable<AzureResourceType>, Nullable<CustomHostNameDnsRecordType>, Nullable<HostNameType>)

初始化 HostName 类的新实例。

HostName()

初始化 HostName 类的新实例。

public HostName ();
Public Sub New ()

适用于

HostName(String, IList<String>, String, Nullable<AzureResourceType>, Nullable<CustomHostNameDnsRecordType>, Nullable<HostNameType>)

初始化 HostName 类的新实例。

public HostName (string name = default, System.Collections.Generic.IList<string> siteNames = default, string azureResourceName = default, Microsoft.Azure.Management.AppService.Fluent.Models.AzureResourceType? azureResourceType = default, Microsoft.Azure.Management.AppService.Fluent.Models.CustomHostNameDnsRecordType? customHostNameDnsRecordType = default, Microsoft.Azure.Management.AppService.Fluent.Models.HostNameType? hostNameType = default);
new Microsoft.Azure.Management.AppService.Fluent.Models.HostName : string * System.Collections.Generic.IList<string> * string * Nullable<Microsoft.Azure.Management.AppService.Fluent.Models.AzureResourceType> * Nullable<Microsoft.Azure.Management.AppService.Fluent.Models.CustomHostNameDnsRecordType> * Nullable<Microsoft.Azure.Management.AppService.Fluent.Models.HostNameType> -> Microsoft.Azure.Management.AppService.Fluent.Models.HostName
Public Sub New (Optional name As String = Nothing, Optional siteNames As IList(Of String) = Nothing, Optional azureResourceName As String = Nothing, Optional azureResourceType As Nullable(Of AzureResourceType) = Nothing, Optional customHostNameDnsRecordType As Nullable(Of CustomHostNameDnsRecordType) = Nothing, Optional hostNameType As Nullable(Of HostNameType) = Nothing)

参数

name
String

主机名的名称。

siteNames
IList<String>

主机名分配到的应用列表。 仅当主机名指向流量管理器时,此列表才会包含多个应用。

azureResourceName
String

主机名分配到的 Azure 资源的名称。 如果将其分配给流量管理器,则它将是流量管理器名称,否则它将是应用名称。

azureResourceType
Nullable<AzureResourceType>

主机名分配到的 Azure 资源的类型。 可能的值包括:“Website”、“TrafficManager”

customHostNameDnsRecordType
Nullable<CustomHostNameDnsRecordType>

DNS 记录的类型。 可能的值包括:“CName”、“A”

hostNameType
Nullable<HostNameType>

主机名的类型。 可能的值包括:“Verified”、“Managed”

适用于