OAuthControllerRemoteFailure - метод
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("remote-failure")]
[ConsumesAttribute("application/json", new string[] { ... })]
[ProducesAttribute("application/json", new string[] { ... })]
public IActionResult RemoteFailure(
[FromQueryAttribute] string exception,
[FromQueryAttribute] string? error,
[FromQueryAttribute] string? errorUri,
[FromQueryAttribute] string? errorDescription
)
<HttpGetAttribute("remote-failure")>
<ConsumesAttribute("application/json", New String() { ... })>
<ProducesAttribute("application/json", New String() { ... })>
Public Function RemoteFailure (
<FromQueryAttribute> exception As String,
<FromQueryAttribute> error As String,
<FromQueryAttribute> errorUri As String,
<FromQueryAttribute> errorDescription As String
) As IActionResult
public:
[HttpGetAttribute(L"remote-failure")]
[ConsumesAttribute(L"application/json", __gc new array<String^>^ { ... })]
[ProducesAttribute(L"application/json", __gc new array<String^>^ { ... })]
IActionResult^ RemoteFailure(
[FromQueryAttribute] String^ exception,
[FromQueryAttribute] String^ error,
[FromQueryAttribute] String^ errorUri,
[FromQueryAttribute] String^ errorDescription
)
[<HttpGetAttribute("remote-failure")>]
[<ConsumesAttribute("application/json", new string[] { ... })>]
[<ProducesAttribute("application/json", new string[] { ... })>]
member RemoteFailure :
[<FromQueryAttribute>] exception : string *
[<FromQueryAttribute>] error : string *
[<FromQueryAttribute>] errorUri : string *
[<FromQueryAttribute>] errorDescription : string -> IActionResult
- exception String
-
A human-readable error message.
- error String
-
Optional single ASCII [USASCII] error code.
- 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.
IActionResultAccess denied error screen.