ControllerBase.Unauthorized Method

Definition

Overloads

Unauthorized(Object)

Creates an UnauthorizedObjectResult that produces a Status401Unauthorized response.

Unauthorized()

Creates an UnauthorizedResult that produces an Status401Unauthorized response.

Unauthorized(Object)

Source:
ControllerBase.cs

Creates an UnauthorizedObjectResult that produces a Status401Unauthorized response.

public:
 virtual Microsoft::AspNetCore::Mvc::UnauthorizedObjectResult ^ Unauthorized(System::Object ^ value);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.UnauthorizedObjectResult Unauthorized (object value);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.UnauthorizedObjectResult Unauthorized (object? value);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member Unauthorized : obj -> Microsoft.AspNetCore.Mvc.UnauthorizedObjectResult
override this.Unauthorized : obj -> Microsoft.AspNetCore.Mvc.UnauthorizedObjectResult
Public Overridable Function Unauthorized (value As Object) As UnauthorizedObjectResult

Parameters

value
Object

Returns

The created UnauthorizedObjectResult for the response.

Attributes

Applies to

Unauthorized()

Source:
ControllerBase.cs
Source:
ControllerBase.cs

Creates an UnauthorizedResult that produces an Status401Unauthorized response.

public:
 virtual Microsoft::AspNetCore::Mvc::UnauthorizedResult ^ Unauthorized();
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.UnauthorizedResult Unauthorized ();
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member Unauthorized : unit -> Microsoft.AspNetCore.Mvc.UnauthorizedResult
override this.Unauthorized : unit -> Microsoft.AspNetCore.Mvc.UnauthorizedResult
Public Overridable Function Unauthorized () As UnauthorizedResult

Returns

The created UnauthorizedResult for the response.

Attributes

Applies to