public static void CloseFormContext(HttpContext httpContext, TagHelperOutput o) { if (DisabledPostFormContent.IsDisabled(httpContext)) { return; } RenderingContext.CloseContext(o, httpContext, formKey); }
public static void ClosePermissionBindingContext(HttpContext httpContext) { RenderingContext.CloseContext(httpContext, permissionBindingKeyPrefix); }
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); }
public static void CloseBodyContext(HttpContext httpContext, TagHelperOutput o) { RenderingContext.CloseContext(o, httpContext, bodyKey); }
public static void CloseTypeBindingContext(HttpContext httpContext, string name) { RenderingContext.CloseContext(httpContext, typeBindingKeyPrefix + name); }