You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Invokes the specified child action method using the specified parameters and returns the result as an HTML string.
38
38
/// </summary>
39
-
/// <param name="htmlHelper">The HTML helper instance that this method extends.</param>
39
+
/// <param name="h">The HTML helper instance that this method extends.</param>
40
40
/// <param name="actionName">The name of the action method to invoke.</param>
41
41
/// <param name="routeValues">An object that contains the parameters for a route. You can use routeValues to provide the parameters that are bound to the action method parameters. The routeValues parameter is merged with the original route values and overrides them.</param>
42
42
/// <param name="excludeFromParentCache">A flag that determines whether the action should be excluded from any parent cache.</param>
43
43
/// <returns>The child action result as an HTML string.</returns>
/// Invokes the specified child action method using the specified parameters and returns the result as an HTML string.
51
51
/// </summary>
52
-
/// <param name="htmlHelper">The HTML helper instance that this method extends.</param>
52
+
/// <param name="h">The HTML helper instance that this method extends.</param>
53
53
/// <param name="actionName">The name of the action method to invoke.</param>
54
54
/// <param name="routeValues">A dictionary that contains the parameters for a route. You can use routeValues to provide the parameters that are bound to the action method parameters. The routeValues parameter is merged with the original route values and overrides them.</param>
55
55
/// <param name="excludeFromParentCache">A flag that determines whether the action should be excluded from any parent cache.</param>
56
56
/// <returns>The child action result as an HTML string.</returns>
/// Invokes the specified child action method using the specified parameters and controller name and returns the result as an HTML string.
77
77
/// </summary>
78
-
/// <param name="htmlHelper">The HTML helper instance that this method extends.</param>
78
+
/// <param name="h">The HTML helper instance that this method extends.</param>
79
79
/// <param name="actionName">The name of the action method to invoke.</param>
80
80
/// <param name="controllerName">The name of the controller that contains the action method.</param>
81
81
/// <param name="routeValues">An object that contains the parameters for a route. You can use routeValues to provide the parameters that are bound to the action method parameters. The routeValues parameter is merged with the original route values and overrides them.</param>
82
82
/// <param name="excludeFromParentCache">A flag that determines whether the action should be excluded from any parent cache.</param>
83
83
/// <returns>The child action result as an HTML string.</returns>
/// Invokes the specified child action method using the specified parameters and controller name and renders the result inline in the parent view.
103
103
/// </summary>
104
-
/// <param name="htmlHelper">The HTML helper instance that this method extends.</param>
104
+
/// <param name="h">The HTML helper instance that this method extends.</param>
105
105
/// <param name="actionName">The name of the child action method to invoke.</param>
106
106
/// <param name="routeValues">A dictionary that contains the parameters for a route. You can use routeValues to provide the parameters that are bound to the action method parameters. The routeValues parameter is merged with the original route values and overrides them.</param>
107
107
/// <param name="excludeFromParentCache">A flag that determines whether the action should be excluded from any parent cache.</param>
/// Invokes the specified child action method using the specified parameters and controller name and renders the result inline in the parent view.
116
116
/// </summary>
117
-
/// <param name="htmlHelper">The HTML helper instance that this method extends.</param>
117
+
/// <param name="h">The HTML helper instance that this method extends.</param>
118
118
/// <param name="actionName">The name of the child action method to invoke.</param>
119
119
/// <param name="routeValues">A dictionary that contains the parameters for a route. You can use routeValues to provide the parameters that are bound to the action method parameters. The routeValues parameter is merged with the original route values and overrides them.</param>
120
120
/// <param name="excludeFromParentCache">A flag that determines whether the action should be excluded from any parent cache.</param>
/// Invokes the specified child action method using the specified parameters and controller name and renders the result inline in the parent view.
140
140
/// </summary>
141
-
/// <param name="htmlHelper">The HTML helper instance that this method extends.</param>
141
+
/// <param name="h">The HTML helper instance that this method extends.</param>
142
142
/// <param name="actionName">The name of the child action method to invoke.</param>
143
143
/// <param name="controllerName">The name of the controller that contains the action method.</param>
144
144
/// <param name="routeValues">A dictionary that contains the parameters for a route. You can use routeValues to provide the parameters that are bound to the action method parameters. The routeValues parameter is merged with the original route values and overrides them.</param>
145
145
/// <param name="excludeFromParentCache">A flag that determines whether the action should be excluded from any parent cache.</param>
/// Invokes the specified child action method using the specified parameters and controller name and renders the result inline in the parent view.
153
153
/// </summary>
154
-
/// <param name="htmlHelper">The HTML helper instance that this method extends.</param>
154
+
/// <param name="h">The HTML helper instance that this method extends.</param>
155
155
/// <param name="actionName">The name of the child action method to invoke.</param>
156
156
/// <param name="controllerName">The name of the controller that contains the action method.</param>
157
157
/// <param name="routeValues">A dictionary that contains the parameters for a route. You can use routeValues to provide the parameters that are bound to the action method parameters. The routeValues parameter is merged with the original route values and overrides them.</param>
158
158
/// <param name="excludeFromParentCache">A flag that determines whether the action should be excluded from any parent cache.</param>
/// Invokes the specified child action method using the specified parameters and controller name and returns the result as an HTML string.
178
178
/// </summary>
179
-
/// <param name="htmlHelper">The HTML helper instance that this method extends.</param>
179
+
/// <param name="h">The HTML helper instance that this method extends.</param>
180
180
/// <param name="actionName">The name of the action method to invoke.</param>
181
181
/// <param name="controllerName">The name of the controller that contains the action method.</param>
182
182
/// <param name="routeValues">A dictionary that contains the parameters for a route. You can use routeValues to provide the parameters that are bound to the action method parameters. The routeValues parameter is merged with the original route values and overrides them.</param>
183
183
/// <param name="excludeFromParentCache">A flag that determines whether the action should be excluded from any parent cache.</param>
184
184
/// <returns>The child action result as an HTML string.</returns>
0 commit comments