Exemplo n.º 1
0
 public static bool MatchHost(this RaciEndpoint ep, string host) =>
 keyUtil.Equals(Hostname(ep), GetHostname(host));
Exemplo n.º 2
0
 public static bool MatchUrl(this RaciEndpoint ep, string url) =>
 keyUtil.Equals(GetUrl(ep.ServiceRoot), GetUrl(url));
Exemplo n.º 3
0
 public static string Hostname(this RaciEndpoint ep) => Uri(ep)?.DnsSafeHost;
Exemplo n.º 4
0
 public static string Url(this RaciEndpoint ep) => GetUri(ep?.ServiceRoot).AbsoluteUri;
Exemplo n.º 5
0
 public static Uri Uri(this RaciEndpoint ep) => GetUri(ep?.ServiceRoot);