I've created few webparts in Sharepoint 2010. In current version users are authenticated by Ad login, but now custome want to customize it and allow authentication by AD login or by email name - using Claims (on different application pools).

My problem is that I have to check if user is authenticated by claims or not (to use this in my admin webpart).
I know that I can check user login name in sharepoint and if it is in this form: i:0#.f|ldapmember|user@site.com it means that I have Claims turned on.

But maybe there is better way to check if Claims is turned on? Does anyone know that method?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You need to check if the username is encoded.

SPClaimProviderManager.IsEncodedClaim(SPContext.Current.Web.CurrentUser.LoginName)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.