Click or drag to resize

ZeroMQServerEndpointFormatRegex Field

Regular expression used to validate the format for a ZeroMQ endpoint.

Namespace: GSF.Communication
Assembly: GSF.Communication (in GSF.Communication.dll) Version: 2.4.181-beta
Syntax
public const string EndpointFormatRegex = "(?<protocol>.+)\://(?<host>(\[.+\]|[^\:])+)(\:(?<port>\d+$))?"
View Source

Field Value

String
Remarks

Matches the following valid example input:
- tcp://127.0.0.1:5959
- tcp://[::1]:5959
- tcp://dnsname.org:8186
- pgm://[FF01:0:0:0:0:0:0:1]:6565
- pgm://224.0.0.1:6565
- inproc://pipe-name

See Also