コード例 #1
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IWebHostEnvironment env, ITurkishWordsService turkishDictionary)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }
            app.UseSwagger();
            app.UseSwaggerUI(c =>
            {
                c.SwaggerEndpoint("/swagger/v1/swagger.json", "Swagger");
            });
            //app.UseHttpsRedirection();

            app.UseRouting();

            app.UseAuthorization();
            app.UseCors(option =>
                        option.AllowAnyOrigin()
                        .AllowAnyMethod()
                        .AllowAnyHeader()
                        );
            app.UseEndpoints(endpoints =>
            {
                endpoints.MapControllers();
            });
            turkishDictionary.ReadFromFile(Configuration.GetSection("TurkishWordsFileName").Value);
        }
コード例 #2
0
ファイル: WordController.cs プロジェクト: gktnkrdg/kelimebul
 public WordController(ITurkishWordsService turkishWordsService)
 {
     _turkishWordService = turkishWordsService;
 }