Click or drag to resize

UrlParseResult Structure

Contains the result of input connection string parsing.

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

The UrlParseResult type exposes the following members.

Methods
  NameDescription
Public methodStatic memberParse
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.
Top
Fields
  NameDescription
Public fieldHost
Domain name or IP address. The contents are not checked during parsing so it can be invalid. Cannot be null.
Public fieldPath
Optional path. Can be used in WebSocket connections.
Public fieldPort
Port number, if any. Can be null if the input string does not contain port information.
Public fieldScheme
URL scheme that can be used to determine the protocol. The contents are not checked during parsing so the scheme can be invalid. Can be null.
Top
See Also