Feeds:
Posts
Comments

Archive for May, 2009

LINQ com C#

Congratulations to Luís Abreu and Paulo Morgado, for their new book “Linq com C#” (Portuguese for "Linq with C#”).

Read Full Post »

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 [...]

Read Full Post »

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 [...]

Read Full Post »