ApiDescription.SupportedResponseFormatters Property

 

Gets the supported response formatters.

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

Syntax

public Collection<MediaTypeFormatter> SupportedResponseFormatters {
    [CompilerGeneratedAttribute]
    get;
    [CompilerGeneratedAttribute]
    internal set;
}
public:
property Collection<MediaTypeFormatter^>^ SupportedResponseFormatters {
    [CompilerGeneratedAttribute]
    Collection<MediaTypeFormatter^>^ get();
    [CompilerGeneratedAttribute]
    internal: void set(Collection<MediaTypeFormatter^>^ value);
}
member SupportedResponseFormatters : Collection<MediaTypeFormatter> with get, internal set
Public Property SupportedResponseFormatters As Collection(Of MediaTypeFormatter)
    Get
    Friend Set
End Property

Property Value

Type: System.Collections.ObjectModel.Collection<MediaTypeFormatter>

The supported response formatters.

See Also

ApiDescription Class
System.Web.Http.Description Namespace

Return to top