OAuthControllerAccessDenied - метод
Get access denied error screen to use in conjunction with OAuth authentication.
Пространство имён: Tessa.Web.Client.ControllersСборка: Tessa.Web.Client (в Tessa.Web.Client.dll) Версия: 4.0.4
[HttpGetAttribute("access-denied")]
[ConsumesAttribute("application/json", new string[] { ... })]
[ProducesAttribute("application/json", new string[] { ... })]
[ProducesResponseTypeAttribute(302)]
public IActionResult AccessDenied(
[FromQueryAttribute] string? errorUri,
[FromQueryAttribute] string? errorDescription,
[FromQueryAttribute] string? redirectTo
)
<HttpGetAttribute("access-denied")>
<ConsumesAttribute("application/json", New String() { ... })>
<ProducesAttribute("application/json", New String() { ... })>
<ProducesResponseTypeAttribute(302)>
Public Function AccessDenied (
<FromQueryAttribute> errorUri As String,
<FromQueryAttribute> errorDescription As String,
<FromQueryAttribute> redirectTo As String
) As IActionResult
public:
[HttpGetAttribute(L"access-denied")]
[ConsumesAttribute(L"application/json", __gc new array<String^>^ { ... })]
[ProducesAttribute(L"application/json", __gc new array<String^>^ { ... })]
[ProducesResponseTypeAttribute(302)]
IActionResult^ AccessDenied(
[FromQueryAttribute] String^ errorUri,
[FromQueryAttribute] String^ errorDescription,
[FromQueryAttribute] String^ redirectTo
)
[<HttpGetAttribute("access-denied")>]
[<ConsumesAttribute("application/json", new string[] { ... })>]
[<ProducesAttribute("application/json", new string[] { ... })>]
[<ProducesResponseTypeAttribute(302)>]
member AccessDenied :
[<FromQueryAttribute>] errorUri : string *
[<FromQueryAttribute>] errorDescription : string *
[<FromQueryAttribute>] redirectTo : string -> IActionResult
- errorUri String
-
Optional URI identifying a human-readable web page with information about the error,
used to provide the client developer with additional information about the error.
- errorDescription String
-
Optional human-readable ASCII [USASCII] text providing additional information,
used to assist the client developer in understanding the error that occurred.
- redirectTo String
-
URL to redirect to after access denied error.
IActionResultAccess denied error screen.