Kizspy | Question: 42 (Choose 1 answer)
Handler methods in Razor Pages are methods that are automatically executed as a result of a request.
Choose the correct answer of handler methods in Razor Pages.
A. Handler methods also have optional asynchronous equivalents: OnPostAsync(), OnGetAsync() etc.
B. The default convention works by matching the HTTP verb used for the request to the name of the method:OnGet(), OnPost(), OnPut() etc.
C. All of the others.