Exemple #1
0
 /// <summary>
 /// Enables routing configured with the routing configuration file under <paramref name="configurationFilePath"/>
 /// </summary>
 /// <param name="config">The configuration object.</param>
 /// <param name="configurationFilePath">The path to the configuration file.</param>
 /// <param name="updateInterval">The interval the route file should be checked for changes.</param>
 public static void UseFileBasedRouting(this RoutingSettings config, string configurationFilePath, TimeSpan updateInterval)
 {
     config.UseFileBasedRouting(UriHelper.FilePathToUri(configurationFilePath), updateInterval);
 }
Exemple #2
0
 /// <summary>
 /// Enables routing configured with the routing configuration file under <paramref name="configurationFilePath"/>
 /// </summary>
 /// <param name="config">The configuration object.</param>
 /// <param name="configurationFilePath">The path to the configuration file.</param>
 public static void UseFileBasedRouting(this RoutingSettings config, string configurationFilePath)
 {
     config.UseFileBasedRouting(UriHelper.FilePathToUri(configurationFilePath));
 }