AcceptedResult Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.