BasicHttpBinding.ProxyAddress Eigenschaft

Definition

Ruft die URI-Adresse des HTTP-Proxys ab oder legt sie fest.

public:
 property Uri ^ ProxyAddress { Uri ^ get(); void set(Uri ^ value); };
public Uri ProxyAddress { get; set; }
[System.ComponentModel.TypeConverter(typeof(System.UriTypeConverter))]
public Uri ProxyAddress { get; set; }
member this.ProxyAddress : Uri with get, set
[<System.ComponentModel.TypeConverter(typeof(System.UriTypeConverter))>]
member this.ProxyAddress : Uri with get, set
Public Property ProxyAddress As Uri

Eigenschaftswert

Uri

Eine Uri, die als Adresse für den HTTP-Proxy dient. Der Standardwert ist "null".

Attribute

Beispiele

Im folgenden Beispiel wird ProxyAddress auf Anwendungseinstellungen festgelegt.

// Get base address from app settings in configuration
Uri baseAddress = new Uri(ConfigurationManager.AppSettings["baseAddress"]);

BasicHttpBinding binding = new BasicHttpBinding();

binding.ProxyAddress = baseAddress;

Der Wert dieser Eigenschaft kann auch in der Konfigurationsdatei festgelegt werden.

<configuration>
  <system.serviceModel>

    <bindings>
      <basicHttpBinding>
        <binding name="Binding1"
                 proxyAddress = "http://myProxy">
          <security mode="None" />
        </binding>
      </basicHttpBinding>
    </bindings>

  </system.serviceModel>

</configuration>

Hinweise

UseDefaultWebProxy trueWenn die Standardadresse verwendet wird, wird die Standardadresse verwendet, und der Wert des ProxyAddress-Sets wird ignoriert.

Gilt für