Why should we choose PrincipaPermission over IsInRole()? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T15:34:19Zhttp://stackoverflow.com/feeds/question/846087http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/846087/why-should-we-choose-principapermission-over-isinrole0Why should we choose PrincipaPermission over IsInRole()?SourceC2009-05-10T20:55:09Z2009-05-10T21:05:00Z
<p>Hello,</p>
<p><br></p>
<p>Q1 - I’m not sure I understand why we should prefer to use <em>PrincipalPermission.Union()</em> ( or <em>PrincipalPermission.Intersect()</em> ) instead of <em>IsInRole()</em>? If anything, calling <em>IsInRole()</em> several times requires less code than creating multiple <em>PrincipalPermission</em> objects and merging them into one via <em>Union()</em> ( or <em>Intersect()</em> )? </p>
<p><br></p>
<p>Q2 - One constructor overload of <em>PrincipalPermission</em> object also specifies a <em>IsAuthenticated</em> flag that tells <em>Demand()</em> to verify if user is authenticated. Wouldn’t using that flag only be useful in situations where first two parameters ( <em>name</em> and <em>role</em> ) are both null? </p>
<p><br></p>
<p>thanx</p>
http://stackoverflow.com/questions/846087/why-should-we-choose-principapermission-over-isinrole/846100#8461001Answer by Spence for Why should we choose PrincipaPermission over IsInRole()?Spence2009-05-10T21:05:00Z2009-05-10T21:05:00Z<p>Q1.</p>
<p>The two function calls make a PrincipalPermission that has the union or intersection of the roles you give it. Thus you end up with a principal that has a very specific set of demands, which you can then call IsInRole() upon. Note that doing this will hit your role provider which may be an SQL server or the active directory and thus have latency involved, so you don't want to do it all the time.</p>
<p>Q2.</p>
<p>Authenticated indicates that the user is logged in against your provider. You may want this if you need only auditing on your application, confirming the user is logged in to your role provider will mean that you can log who they are etc.</p>
<p>You are correct in saying it's only useful where you don't care about who the user is, only that they are logged in.</p>