ObjectContent Constructor (Type, Object, MediaTypeFormatter, MediaTypeHeaderValue)

Initializes a new instance of the ObjectContent class.

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

Syntax

'Declaration
Public Sub New ( _
    type As Type, _
    value As Object, _
    formatter As MediaTypeFormatter, _
    mediaType As MediaTypeHeaderValue _
)
'Usage
Dim type As Type 
Dim value As Object 
Dim formatter As MediaTypeFormatter 
Dim mediaType As MediaTypeHeaderValue 

Dim instance As New ObjectContent(type, value, _
    formatter, mediaType)
public ObjectContent(
    Type type,
    Object value,
    MediaTypeFormatter formatter,
    MediaTypeHeaderValue mediaType
)
public:
ObjectContent(
    Type^ type, 
    Object^ value, 
    MediaTypeFormatter^ formatter, 
    MediaTypeHeaderValue^ mediaType
)
new : 
        type:Type * 
        value:Object * 
        formatter:MediaTypeFormatter * 
        mediaType:MediaTypeHeaderValue -> ObjectContent
public function ObjectContent(
    type : Type, 
    value : Object, 
    formatter : MediaTypeFormatter, 
    mediaType : MediaTypeHeaderValue
)

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.
  • mediaType
    Type: 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.

See Also

Reference

ObjectContent Class

ObjectContent Overload

System.Net.Http Namespace