RadPdfCoreMiddlewareExtensionsUseRadPdf Method (IApplicationBuilder, String) |
Namespace: RadPdf
public static IApplicationBuilder UseRadPdf( this IApplicationBuilder app, string licenseKey )
The IApplicationBuilder.
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.HttpsPolicy; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using RadPdf; namespace RadPdfCoreDemo { public class Startup { public Startup(IConfiguration configuration) { Configuration = configuration; } public IConfiguration Configuration { get; } // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { services.Configure<CookiePolicyOptions>(options => { // This lambda determines whether user consent for non-essential cookies is needed for a given request. options.CheckConsentNeeded = context => true; options.MinimumSameSitePolicy = SameSiteMode.None; }); services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1); //Default RAD PDF session provider relies on ASP.NET session state. //A custom session provider can be used to avoid use of this. services.AddSession(); } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IHostingEnvironment env) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } else { app.UseExceptionHandler("/Error"); app.UseHsts(); } app.UseStaticFiles(); // Default RAD PDF session provider relies on ASP.NET session state, so call this before .MapRadPdf() // A custom session provider can be used to avoid use of this. app.UseSession(); // Add RAD PDF's middleware to app, setting the license key app.UseRadPdf(settings, "DEMO"); app.UseMvc(); } } }