Pascal Bonheur

Just another SharePoint/.NET weblog

Browsing Posts in Dev SharePoint

So now that we have seen high level overview of the claims picker, let’s focus on how the claims enrichment is done. First thing to know, when you create a custom claim provider you actually derive a class from SPClaimProvider and then you specify what your claim provider is supporting by overriding the following methods: [...]

If you miss the first part, you can refer to http://www.pascalbonheur.com/2010/03/claims-based-authorization-in-sharepoint-2010-real-life-example-part-1/. This will help you to understand the context of what we are going to speak about. In our first article, I explained that some custom claims will be built (Years, School…) and they will be used to secure access to sites. In order to [...]

One of the very nice feature of SharePoint 2010 is the claims based authorization. There is a lot of high level documentation regarding this feature but there aren’t a lot of real life example available on the Web. That’s what I will try to do in this post… One of our customer is a School [...]

SharePoint 2010 introduces a new feature to allow validation formula as shown in the following picture: If you want to access to this through the object model, you have two additional properties on the SPField object in SharePoint 2010: ValidationFormula : string containing the formula (ex: ‘[MyColonne]=’SampleValue’’) ValidationMessage : string containing the message to display [...]