Congratulations to Luís Abreu and Paulo Morgado, for their new book “Linq com C#” (Portuguese for "Linq with C#”).
Archive for May, 2009
LINQ com C#
Posted in Uncategorized on May 17, 2009 | Leave a Comment »
Geneva’s Beta 2 Authorization
Posted in Uncategorized, tagged Geneva, identity on May 15, 2009 | Leave a Comment »
The beta 2 “Geneva” framework contains the concept of a claims authorization manager, represented by the ClaimsAuthorizationManager base class. This class contains a single method
public virtual bool CheckAccess(AuthorizationContext context)
that computes the authorization decision for the access represented by context. This object, of AuthorizationContext type, contains the following properties
Subject, of IClaimsPrincipal type, represents the subject [...]
Geneva’s Beta 2 Claims Model
Posted in Uncategorized, tagged claims, Geneva, identity on May 15, 2009 | Leave a Comment »
This week was released the beta 2 of the “Geneva” framework. This framework aims to provide an unified model for claims based identity management and access control. This includes a class model for representing claims-based identities, showed in the next diagram.
This class model, present in the Microsoft.IdentityModel.dll assembly, is similar to the one [...]