|
ZeroMQServerEndpointFormatRegex Field
|
Regular expression used to validate the format for a ZeroMQ endpoint.
Namespace: GSF.CommunicationAssembly: GSF.Communication (in GSF.Communication.dll) Version: 2.4.207-beta
Syntax public const string EndpointFormatRegex = "(?<protocol>.+)\://(?<host>(\[.+\]|[^\:])+)(\:(?<port>\d+$))?"
Public Const EndpointFormatRegex As String = "(?<protocol>.+)\://(?<host>(\[.+\]|[^\:])+)(\:(?<port>\d+$))?"
public:
literal String^ EndpointFormatRegex = "(?<protocol>.+)\://(?<host>(\[.+\]|[^\:])+)(\:(?<port>\d+$))?"
static val mutable EndpointFormatRegex: string
var GSF.Communication.ZeroMQServer.EndpointFormatRegex
View SourceField Value
StringRemarks
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