ApiController::Created Method

 

Namespace:   System.Web.Http
Assembly:  System.Web.Http (in System.Web.Http.dll)

NameDescription
System_CAPS_protmethodCreated<T>(String^, T)

Creates a CreatedNegotiatedContentResult<T> (201 Created) with the specified values.

System_CAPS_protmethodCreated<T>(Uri^, T)

Creates a CreatedNegotiatedContentResult<T> (201 Created) with the specified values.

Return to top

ApiController::Created<T> Method (String^, T)

Creates a CreatedNegotiatedContentResult<T> (201 Created) with the specified values.

public protected:
generic<typename T>
CreatedNegotiatedContentResult<T>^ Created(
	String^ location,
	T content
)

Parameters

location
Type: System::String^

The location at which the content has been created.

content
Type: T

The content value to negotiate and format in the entity body.

Type Parameters

T

The type of content in the entity body.

Return to top

ApiController::Created<T> Method (Uri^, T)

Creates a CreatedNegotiatedContentResult<T> (201 Created) with the specified values.

public protected:
generic<typename T>
virtual CreatedNegotiatedContentResult<T>^ Created(
	Uri^ location,
	T content
)

Parameters

location
Type: System::Uri^

The location at which the content has been created.

content
Type: T

The content value to negotiate and format in the entity body.

Type Parameters

T

The type of content in the entity body.

Return to top
Show: