What is an ASP.NET Provider?

2019-04-29 04:04发布

What is the meaning of "Provider" in ASP.NET Provider? For example when we are speaking about AuthorizationRuleProvider, connectionStrings.providerName, ...?

3条回答
Summer. ? 凉城
2楼-- · 2019-04-29 04:20

And if you want to implement the Provider pattern in your application, take a look at this .NET Provider Model Template for Visual Studio (shameless plug).

查看更多
The star\"
3楼-- · 2019-04-29 04:29

It's a design pattern: The Provider model. There is some good information in this SO Q&A as well: Designing loosely coupled components in .NET - Provider Pattern

查看更多
ゆ 、 Hurt°
4楼-- · 2019-04-29 04:29

It's just a concrete implementation of an abstract interface. You can select an appropriate provider to fulfill the requirements of the interface at runtime.

查看更多
登录 后发表回答