Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns the quality of the match of the MediaTypeHeaderValue associated with request.
Namespace: System.Net.Http.Formatting
Assembly: System.Net.Http.Formatting (in System.Net.Http.Formatting.dll)
Syntax
public abstract double TryMatchMediaType(
HttpRequestMessage request
)
public:
virtual double TryMatchMediaType(
HttpRequestMessage^ request
) abstract
abstract TryMatchMediaType :
request:HttpRequestMessage -> float
Public MustOverride Function TryMatchMediaType (
request As HttpRequestMessage
) As Double
Parameters
request
Type: System.Net.Http.HttpRequestMessageThe HttpRequestMessage to evaluate for the characteristics associated with the MediaTypeHeaderValue of the MediaTypeMapping.
Return Value
Type: System.Double
The quality of the match. It must be between 0.0 and 1.0. A value of 0.0 signifies no match. A value of 1.0 signifies a complete match.
See Also
MediaTypeMapping Class
System.Net.Http.Formatting Namespace
Return to top