Share via


AcceptedResult Constructors

Definition

Overloads

AcceptedResult()

Initializes a new instance of the AcceptedResult class with the values provided.

AcceptedResult(String, Object)

Initializes a new instance of the AcceptedResult class with the values provided.

AcceptedResult(Uri, Object)

Initializes a new instance of the AcceptedResult class with the values provided.

AcceptedResult()

Source:
AcceptedResult.cs
Source:
AcceptedResult.cs
Source:
AcceptedResult.cs

Initializes a new instance of the AcceptedResult class with the values provided.

public:
 AcceptedResult();
public AcceptedResult();
Public Sub New ()

Applies to

AcceptedResult(String, Object)

Source:
AcceptedResult.cs
Source:
AcceptedResult.cs
Source:
AcceptedResult.cs

Initializes a new instance of the AcceptedResult class with the values provided.

public:
 AcceptedResult(System::String ^ ___location, System::Object ^ value);
public AcceptedResult(string ___location, object value);
public AcceptedResult(string? ___location, object? value);
new Microsoft.AspNetCore.Mvc.AcceptedResult : string * obj -> Microsoft.AspNetCore.Mvc.AcceptedResult
Public Sub New (___location As String, value As Object)

Parameters

___location
String

The ___location at which the status of requested content can be monitored.

value
Object

The value to format in the entity body.

Applies to

AcceptedResult(Uri, Object)

Source:
AcceptedResult.cs
Source:
AcceptedResult.cs
Source:
AcceptedResult.cs

Initializes a new instance of the AcceptedResult class with the values provided.

public:
 AcceptedResult(Uri ^ locationUri, System::Object ^ value);
public AcceptedResult(Uri locationUri, object value);
public AcceptedResult(Uri locationUri, object? value);
new Microsoft.AspNetCore.Mvc.AcceptedResult : Uri * obj -> Microsoft.AspNetCore.Mvc.AcceptedResult
Public Sub New (locationUri As Uri, value As Object)

Parameters

locationUri
Uri

The ___location at which the status of requested content can be monitored.

value
Object

The value to format in the entity body.

Applies to