搜索:asp .net core, 为您找到相关结果约 1052条结果, 这是第 20 -30 条。 [搜索用时:38 毫秒]

ASP.NET Core Web API Authentication series:Secure an ASP.NET Core Web Api using Cookies

This blog post is about how you can secure an ASP.NET Core Web Api using cookies (if you are lookingfor how to secure a Web Api using JWT tokens check out Secure a Web Api in ASP.NET Core and Refresh Tokensin ASP.NET Core Web Api).https://www.blinkingcaret.com/2018/07/18/secure-an-asp-net-core-web-api-using-cookies/ asp-net-core-web-api-using-cookies/trackback/" /> -->.

8/8/2018 0字 ViewCount:2525 Score: 12.962197; ASP.NET Core Authentication ASP.NET Core Web API
https://www.iaspnetcore.com/Blog/BlogPost/5b6b570d173ff8275c532aa6/aspnet-core-web-api-authentication-seriessecure-an-aspnet-core-web-api-using-cookies

CQRS with Mediatr and ASP.NET Core Implementing basic CQRS with ASP.NET Core

https://www.stevejgordon.co.uk/cqrs-using-mediatr-asp-net-core    I was first introducedUsing Mediatr with ASP.NET Core Using Mediatr in an ASP.NET Core project is pretty straightforward.I’m going to show how I’ve got it working in ASP.NET Core with the default container.I try to use async methods for everything I do in ASP.NET Core so I’ll stick to async examplesThis will be injected by the ASP.NET Core DI when the application runs.

4/16/2017 0字 ViewCount:16548 Score: 12.961881; ASP.NET Core ASP.NET Core CORS Mediatr
https://www.iaspnetcore.com/Blog/BlogPost/58f39c6784cd4533a415a69a/cqrs-with-mediatr-and-aspnet-core-implementing-basic-cqrs-with-aspnet-core

ASP.NET Core 3.0 GlobalAppSettings Configuration

What about ASP.NET Core?Understanding the Configuration DOM The configuration of an ASP.NET Core application is based on a listCore configuration API is so far functionally equivalent to that of the old ASP.NET.In ASP.NET Core, instead, you can use the Bind method on the configuration root object.In ASP.NET Core, the recommended approach is using the native Dependency Injection layer.

9/28/2019 0字 ViewCount:1931 Score: 12.93884; ASP.NET Core Configuration ASP.NET Core 3.x
https://www.iaspnetcore.com/Blog/BlogPost/5d8f6da64053c9111c567a5f/aspnet-core-30-globalappsettings-configuration

Dealing With Camel Casing In ASP.NET Core Web API

pivots=dotnet-5-0   Table of Contents 4.1 ASP.NET Core 6.x-use System.Text.Json 3.1ASP.NET Core5.x-use System.Text.Json 3.2ASP.NET Core 5.x-use Newtonsoft.JSON   1.ASP.NET Core 3.x-use System.Text.Json3.1 ASP.NET Core 3.0  has removed the dependency on JSON.NET.data to the client, the ASP.NET Core Web API uses camel casing.ASP.NET Core 3.0 System.Text.Json Camel Case Serialization.

6/28/2017 8字 ViewCount:16254 Score: 12.921045; ASP.NET Core ASP.NET Core Web API
https://www.iaspnetcore.com/Blog/BlogPost/5953e09584cd45053069b2f9/dealing-with-camel-casing-in-aspnet-core-web-api

Writing Custom Middleware in ASP.NET Core 1.0

One of the new features from ASP.NET Core 1.0 is the idea of Middleware.As part of my ongoing learning process about ASP.NET Core, I decided to build a sample applicationNOTE: This post was written using RC1 (Release Candidate 1) of ASP.NET Core, and as the framework getsHere's a sample from my earlier post covering the Startup.cs file in ASP.NET Core 1.0: public voidDefining a Custom Middleware Component A Middleware component, in an ASP.NET Core project, is a class

6/4/2016 0字 ViewCount:1629 Score: 12.906958; ASP.NET Core Middleware
https://www.iaspnetcore.com/Blog/BlogPost/57530a806ceb7a17ec4bcfa4/writing-custom-middleware-in-aspnet-core-10-2

ASP.NET Core Blazor 3.x(Server-side)-Integrating ASP.NET Core SignalR chat

ASP.NET Core Blazor 3.x(Server-side)-Integrating ASP.NET Core SignalR chat step 1:Create an ASP.NETCore Blazor(Server-side) Web app.endpoints.MapFallbackToPage("/_Host"); }); }   step 5:Add the ASP.NETCore SignalR Client package to the  project./en-us/aspnet/core/tutorials/signalr-blazor?

3/14/2020 0字 ViewCount:3234 Score: 12.905268; ASP.NET Core Blazor 3.x(Server-side) ASP.NET Core SignalR
https://www.iaspnetcore.com/Blog/BlogPost/5e6d52156df30830612dfe41/aspnet-core-blazor-3xserver-side-integrating-aspnet-core-signalr-chat

All Tools for bundling and minification in ASP.NET Core

Tools for bundling and minification in ASP.NET Core ASP.NET supports bundling and minification out ofthe box, but same is not true for ASP.NET Core.Read Introduction to using Gulp in ASP.NET Core to know more.Read Using Grunt in ASP.NET Core to know more.The latest version 3.0 is targeted at .NET Standard 2.0 and ASP.NET Core 2.0.

1/10/2018 0字 ViewCount:2243 Score: 12.902974; ASP.NET Core ASP.NET Core Bundling and minification
https://www.iaspnetcore.com/Blog/BlogPost/5a5642c342c35f3e3425a413/all-tools-for-bundling-and-minification-in-aspnet-core

ASP.NET Core从传统ASP.NET的Cookie中读取用户登录信息

对于cookie的加解密,传统asp.net用的是对称加解密算法,而asp.net core用的是基于公钥私钥的非对称加解密算法,所以asp.net core无法解密传统asp.net生成的cookie,传统asp.net也无法解密asp.net core生成的cookie。先简化一下问题,根据我们向ASP.NET Core迁移过渡阶段的实际场景,用户登录操作是在传统asp.net站点上完成的,我们只需在asp.net core站点中解密cookie获取用户登录信息即可,连加密都不需要既然asp.net core自己解密不了,那可以让传统asp.net帮忙解密,asp.net core将接收到的cookie通过web api发给传统asp.net解密。简化后问题变成了——在asp.net core中如何接收传统asp.net的cookie?如何拦截asp.net core对cookie的解密操作?

4/24/2017 1223字 ViewCount:2953 Score: 12.875483; ASP.NET Core Authentication
https://www.iaspnetcore.com/Blog/BlogPost/58fdac0584cd45328c5c2d19/asp-net-core-has-evolved-from-traditional-asp-reading-user-login-information-from-cookies-in-net

Markdown in your ASP.NET Core Razor Pages

WYSIWYG markdown editor MarkDown plugin Markdown .NET Core Library Markdig Markdown TagHelper MarkdownWYSIWYG markdown editor The ASP.NET Core rich text editor control can be used as a WYSIWYG markdown/my.oschina.net/u/4303671/blog/3248317 在Asp.Net Core中配置使用MarkDown富文本编辑器实现图片上传和截图上传(开源代码.net core3.0)    Markdown .NET Core Library Markdig NuGet package Install-Package Markdig https    Creating an ASP.NET Core Markdown TagHelper and Parser   Markdown Module OrchardCore

5/11/2017 27字 ViewCount:2732 Score: 12.867083; ASP.NET Core Front-end technology Orchard
https://www.iaspnetcore.com/Blog/BlogPost/59146c4884cd45213400651b/markdown-in-your-aspnet-core-razor-pages

How to Generate a Sitemap in ASP.NET Core

But how do we create a sitemap in ASP.NET Core?In this post I will show you a very simple way to generate a sitemap that works in ASP.NET MVC and ASP.NETThe following reference needs added to your project.json file for the code above to work in ASP.NET"System.Xml.XmlDocument": "4.0.1-beta-23516" Step 3: Generating the Sitemap in ASP.NET Core by creatingSitemapController The following example shows how the SitemapBuilder can be used from an ASP.NET

1/12/2018 0字 ViewCount:11968 Score: 12.826948; ASP.NET Core Website seo
https://www.iaspnetcore.com/Blog/BlogPost/5a587db642c35f3e343fa316/how-to-generate-a-sitemap-in-aspnet-core