MessageEncoder.MediaType Property
Definition
When overridden in a derived class, gets the media type value that is used by the encoder.
public:
abstract property System::String ^ MediaType { System::String ^ get(); };
public abstract string MediaType { get; }
member this.MediaType : string
Public MustOverride ReadOnly Property MediaType As String
Property Value
The media type that is supported by the message encoder.
Examples
The following code shows how to implement the MediaType
property.
public override string MediaType
{
get
{
return factory.MediaType;
}
}
Remarks
The media type is part of the content-type header.