IWebUrlService.cs 433 B

123456789101112131415161718
  1. using Abp.Dependency;
  2. namespace VberZero.DomainService.Url;
  3. public interface IWebUrlService : ITransientDependency
  4. {
  5. string WebSiteRootAddressFormat { get; }
  6. string ServerRootAddressFormat { get; }
  7. bool SupportsTenancyNameInUrl { get; }
  8. string GetSiteRootAddress(string tenancyName = null);
  9. string GetServerRootAddress(string tenancyName = null);
  10. List<string> GetRedirectAllowedExternalWebSites();
  11. }