PrefixEndpointAddressMessageFilter.IncludeHostNameInComparison Propriedade

Definição

Obtém um valor que indica se o nome do host está incluído na comparação de endereço do ponto de extremidade.Gets a value that indicates whether the host name is included in the endpoint address comparison.

public:
 property bool IncludeHostNameInComparison { bool get(); };
public bool IncludeHostNameInComparison { get; }
member this.IncludeHostNameInComparison : bool
Public ReadOnly Property IncludeHostNameInComparison As Boolean

Valor da propriedade

Boolean

true se o nome do host está incluído na comparação de endereço do ponto de extremidade; caso contrário, false.true if the host name is included in the endpoint address comparison; otherwise, false.

Comentários

Se você tiver um serviço Web instalado em seu computador local, há muitas maneiras equivalentes de fazer referência a ele, incluindo o seguinte:If you have a web service installed on your local machine, there are many equivalent ways to reference it, including the following:

  • http://localhost/foo.svc
  • http://192.168.1.100/foo.svc
  • http://[my-machine-name]/foo.svc
  • http://[my-machine-name].[my-company].com/foo.svc

O valor padrão dessa propriedade é false , portanto, os URIs acima são resolvidos para o mesmo ponto de extremidade, a menos que você altere essa propriedade.The default value of this property is false, so the above URIs all resolve to the same endpoint, unless you change this property.

Aplica-se a