RazorBlock Delegate
In This Article
Represents the Razor @<text>
block. You can use it to specify templates and handle events and callbacks.
Namespace: DevExtreme.AspNet.Mvc
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public delegate IHtmlContent RazorBlock(
object item
);
#Parameters
Name | Type | Description |
---|---|---|
item | Object | The Razor block’s argument. |
#Returns
Type | Description |
---|---|
IHtml |
The Razor block’s return value. |
See Also