|
TransportEndpointFormatRegex Field
|
Regular expression used to validate the format for an endpoint.
Namespace: GSF.CommunicationAssembly: GSF.Communication (in GSF.Communication.dll) Version: 2.4.205-beta
Syntax public const string EndpointFormatRegex = "(?<host>.+)\:(?<port>\d+$)"
Public Const EndpointFormatRegex As String = "(?<host>.+)\:(?<port>\d+$)"
public:
literal String^ EndpointFormatRegex = "(?<host>.+)\:(?<port>\d+$)"
static val mutable EndpointFormatRegex: string
var GSF.Communication.Transport.EndpointFormatRegex
View SourceField Value
StringRemarks
Matches the following valid input:
- localhost:80
- 127.0.0.1:80
- [::1]:80
- [FEDC:BA98:7654:3210:FEDC:BA98:7654:3210]:80
See Also