IAbpAntiForgeryManager.cs 195 B

123456789
  1. namespace Abp.Web.Security.AntiForgery
  2. {
  3. public interface IAbpAntiForgeryManager
  4. {
  5. IAbpAntiForgeryConfiguration Configuration { get; }
  6. string GenerateToken();
  7. }
  8. }