示例#1
0
 internal static void RenderSecondaryNavigation(TextWriter output, UserContext userContext)
 {
     if (output == null)
     {
         throw new ArgumentNullException("output");
     }
     if (userContext == null)
     {
         throw new ArgumentNullException("userContext");
     }
     TaskView.RenderSecondaryNavigationFilter(output, "divTskFlt");
     NavigationHost.RenderNavigationTreeControl(output, userContext, NavigationModule.Tasks);
 }
示例#2
0
 // Token: 0x06002781 RID: 10113 RVA: 0x000E096C File Offset: 0x000DEB6C
 internal static void RenderSecondaryNavigation(TextWriter output, UserContext userContext, bool isPicker)
 {
     if (output == null)
     {
         throw new ArgumentNullException("output");
     }
     if (userContext == null)
     {
         throw new ArgumentNullException("userContext");
     }
     if (!isPicker)
     {
         ContactView.RenderSecondaryNavigationFilter(output, "divCntFlt");
     }
     NavigationHost.RenderNavigationTreeControl(output, userContext, NavigationModule.Contacts);
 }