UtilitiesIPEndPointListFromHostPortString Method |
Given a string/list in the form HOSTNAME:PORT#;HOSTNAME2:PORT2#, this function returns all IPEndPoints for ALL listed hosts. Defaults to port 80 if not specified.
Warning: DNS resolution is slow, so use this function wisely.
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public static IPEndPoint[] IPEndPointListFromHostPortString(
string sAllHostAndPorts
)
Public Shared Function IPEndPointListFromHostPortString (
sAllHostAndPorts As String
) As IPEndPoint()
public:
static array<IPEndPoint^>^ IPEndPointListFromHostPortString(
String^ sAllHostAndPorts
)
Parameters
- sAllHostAndPorts
- Type: SystemString
HOSTNAME:PORT#;OPTHOST2:PORT2#
Return Value
Type:
IPEndPointAn array of IPEndPoints or null if no results were obtained
See Also