As someone relearning .net + Web API 2, I'm unsure what these entries in my Web.config file are for. Should requirePermission be set to true? Are there any tutorials about this. (I'm currently piecing together the whole process of .net+webapi+azure emulator+ deploying to the cloud).
<configuration>
<configSections>
<sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=3.1.1.0, Culture=neutral, PublicKeyToken=XXXXXXXXX">
<section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=XXXXXXXXXX" requirePermission="false" />
<section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=XXXXXXXXXX" requirePermission="false" />
</sectionGroup>
</configSections>