Пример #1
0
 public static void CloseFormContext(HttpContext httpContext, TagHelperOutput o)
 {
     if (DisabledPostFormContent.IsDisabled(httpContext))
     {
         return;
     }
     RenderingContext.CloseContext(o, httpContext, formKey);
 }
Пример #2
0
 public static void ClosePermissionBindingContext(HttpContext httpContext)
 {
     RenderingContext.CloseContext(httpContext, permissionBindingKeyPrefix);
 }
Пример #3
0
 public static void CloseRowContainerContext(HttpContext httpContext, Tuple <IList <RowType>, IList <KeyValuePair <string, string> > > group)
 {
     RenderingContext.CloseContext <Tuple <IList <RowType>, IList <KeyValuePair <string, string> > > >(httpContext, rowContainerKey, group);
 }
Пример #4
0
 public static void CloseBodyContext(HttpContext httpContext, TagHelperOutput o)
 {
     RenderingContext.CloseContext(o, httpContext, bodyKey);
 }
Пример #5
0
 public static void CloseTypeBindingContext(HttpContext httpContext, string name)
 {
     RenderingContext.CloseContext(httpContext, typeBindingKeyPrefix + name);
 }