RouteTracker Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| RouteTracker(HttpRoute) |
Creates a new tracker for the given route. |
| RouteTracker(HttpHost, InetAddress) |
Creates a new route tracker. |
RouteTracker(HttpRoute)
Creates a new tracker for the given route.
[Android.Runtime.Register(".ctor", "(Lorg/apache/http/conn/routing/HttpRoute;)V", "")]
public RouteTracker(Org.Apache.Http.Conn.Routing.HttpRoute? route);
[<Android.Runtime.Register(".ctor", "(Lorg/apache/http/conn/routing/HttpRoute;)V", "")>]
new Org.Apache.Http.Conn.Routing.RouteTracker : Org.Apache.Http.Conn.Routing.HttpRoute -> Org.Apache.Http.Conn.Routing.RouteTracker
Parameters
- route
- HttpRoute
The route to track; its target and local address initialize the tracker.
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
RouteTracker(HttpHost, InetAddress)
Creates a new route tracker.
[Android.Runtime.Register(".ctor", "(Lorg/apache/http/HttpHost;Ljava/net/InetAddress;)V", "")]
public RouteTracker(Org.Apache.Http.HttpHost? target, Java.Net.InetAddress? local);
[<Android.Runtime.Register(".ctor", "(Lorg/apache/http/HttpHost;Ljava/net/InetAddress;)V", "")>]
new Org.Apache.Http.Conn.Routing.RouteTracker : Org.Apache.Http.HttpHost * Java.Net.InetAddress -> Org.Apache.Http.Conn.Routing.RouteTracker
Parameters
- target
- HttpHost
The host to which to route.
- local
- InetAddress
The local address to route from, or null to use the default address.
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.