Where can I find the source code for WebMatrix.WebData.WebSecurity

I need to check the implemented code for WebMatrix.WebData.WebSecurity .

Can I see the implemented code for WebSecurity online? (This is an open source class)

+8
security asp.net-mvc-4
source share
2 answers

Of course, the code for WebMatrix.WebData is open source

Here is a link to the WebSecurity class - https://github.com/aspnetwebstack/aspnetwebstack/blob/master/src/WebMatrix.WebData/WebSecurity.cs

+13
source share

The official source code is in the CodePlex Git repo project: https://aspnetwebstack.codeplex.com/SourceControl/latest#src/WebMatrix.WebData/WebSecurity.cs

The code on GitHub, unfortunately, is a clone and, as a rule, is not updated.

+3
source share

All Articles