Can anyone briefly explain what is the use of GenericIdentity and where to use it.
|
2
|
|||||
|
|
|
You can use GenericIdentity as a concrete implementation of Identity where you want to supply the details yourself, programmatically, about the current user. Pretty good if you have identified and authenticated the user yourself, through other channels. |
||
|
|
|
|
Check out http://msdn.microsoft.com/en-us/library/system.security.principal.genericidentity.aspx You will find some examples up there. It represents a generic user. Authentication and profile perissions. |
||
|
|
|
|
You might do this at the point of client login to a winform, or there are specific points to do this in WCF, ASP.NET, etc. Then later code, without having to know how those permissions are handled, can check that permission - either via IsInRole, or declaratively:
Some useful utility code here is null-safe wrappers around principal/identity:
Then you might have some audit code in your DAL:
You can also use a principal to store extra identity information that is only needed in certain contexts - for example, a security token. Callers might test the principal with Using "principal" is useful because your logic processing code can talk about identity, without having to know whether this is winforms, ASP.NET, WCF, a windows service, etc - it is abstract. Additionally, some 3rd party code will also talk to the principal. As another example - I wrote some example code here that shows how to use the principal to control access to winform controls via the designer (via an |
||||
|
