Click or drag to resize

UrlParseResultParse Method

Splits input host string into four distinct parts: URL scheme that can be used to determine the protocol, actual host domain name or IP address, port number and path for use in WebSocket connections.

Namespace:  SoftGear.Strix.Unity.Runtime
Assembly:  StrixUnityRuntime (in StrixUnityRuntime.dll) Version: 1.5.0
Syntax
C#
public static UrlParseResult Parse(
	string url
)

Parameters

url
Type: SystemString
Input connection URL string.

Return Value

Type: UrlParseResult
The result of the parsing.
Exceptions
ExceptionCondition
UrlParseExceptionThrown if input string cannot be parsed.
See Also