Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ObjectContent Constructor

 

Namespace:   System.Net.Http
Assembly:  System.Net.Http.Formatting (in System.Net.Http.Formatting.dll)

Return to top

ObjectContent Constructor (Type^, Object^, MediaTypeFormatter^)

Initializes a new instance of the ObjectContent class.

public:
ObjectContent(
	Type^ type,
	Object^ value,
	MediaTypeFormatter^ formatter
)

Parameters

type
Type: System::Type^

The type of object this instance will contain.

value
Type: System::Object^

The value of the object this instance will contain.

formatter
Type: System.Net.Http.Formatting::MediaTypeFormatter^

The formatter to use when serializing the value.

Return to top

ObjectContent Constructor (Type^, Object^, MediaTypeFormatter^, MediaTypeHeaderValue^)

Initializes a new instance of the ObjectContent class.

public:
ObjectContent(
	Type^ type,
	Object^ value,
	MediaTypeFormatter^ formatter,
	MediaTypeHeaderValue^ mediaType
)

Parameters

type
Type: System::Type^

The type of object this instance will contain.

value
Type: System::Object^

The value of the object this instance will contain.

formatter
Type: System.Net.Http.Formatting::MediaTypeFormatter^

The formatter to use when serializing the value.

mediaType
Type: System.Net.Http.Headers::MediaTypeHeaderValue^

The authoritative value of the Content-Type header. Can be null, in which case the default content type of the formatter will be used.

Return to top

ObjectContent Constructor (Type^, Object^, MediaTypeFormatter^, String^)

Initializes a new instance of the ObjectContent class.

public:
ObjectContent(
	Type^ type,
	Object^ value,
	MediaTypeFormatter^ formatter,
	String^ mediaType
)

Parameters

type
Type: System::Type^

The type of object this instance will contain.

value
Type: System::Object^

The value of the object this instance will contain.

formatter
Type: System.Net.Http.Formatting::MediaTypeFormatter^

The formatter to use when serializing the value.

mediaType
Type: System::String^

The authoritative value of the Content-Type header.

Return to top
Show: