コード例 #1
0
 internal static void SetBackendService(this EndpointsConfig self, IBackendService backendService)
 {
     foreach (var(_, endpointUrl)  in self)
     {
         endpointUrl.SetBackendService(backendService);
     }
 }
コード例 #2
0
 public static Uri GetUri(this EndpointsConfig self, string path)
 => new Uri($"{self.Host}{self.BasePath}{path}");