-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathStartup.cs
More file actions
43 lines (39 loc) · 1.63 KB
/
Startup.cs
File metadata and controls
43 lines (39 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using System.Diagnostics;
using System.Net.Http;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using SharpEventGridServer;
namespace SharpMappingOverrideSample {
public class Startup {
public Startup(IConfiguration configuration) {
Configuration = configuration;
}
public IConfiguration Configuration { get; }
public void ConfigureServices(IServiceCollection services) {
services.AddSingleton(new HttpClient());
services.AddSingleton(new mySubject_SomeEventHandler());
services.AddSingleton<IDatabase, Database>();
services.AddMvc();
}
public void Configure(IApplicationBuilder app, IHostingEnvironment env) {
if (env.IsDevelopment()) {
app.UseDeveloperExceptionPage();
}
var opt = new EventGridOptions();
opt.AutoValidateSubscription = true;
opt.AutoValidateSubscriptionAttemptNotifier = (url, success, message) => {
Debug.WriteLine($"Validation attempt: {url} -> Success: {success}: {message}");
};
opt.EventsPath = "api/events";
opt.MapEvent<mySubject_SomeEventHandler>("someEventType");
opt.MapEvent<mySubject_NewCustomerEventHandler>("newCustomerEventType");
opt.MapDefault<DefaultMappingHandler>();
opt.SetValidationKey("key", "foo");
app.UseEventGrid(opt);
opt.Mapper=new SubjectConventionMapper();
app.UseMvc();
}
}
}