Gets the IContentNegotiator service.
Namespace:  System.Web.Http
Assembly:  System.Web.Http (in System.Web.Http.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function GetContentNegotiator ( _
    services As ServicesContainer _
) As IContentNegotiator
'Usage
Dim services As ServicesContainer 
Dim returnValue As IContentNegotiator 
returnValue = services.GetContentNegotiator()
public static IContentNegotiator GetContentNegotiator(
    this ServicesContainer services
)
[ExtensionAttribute]
public:
static IContentNegotiator^ GetContentNegotiator(
    ServicesContainer^ services
)
static member GetContentNegotiator : 
        services:ServicesContainer -> IContentNegotiator
public static function GetContentNegotiator(
    services : ServicesContainer
) : IContentNegotiator
Parameters
- services 
 Type: System.Web.Http.Controllers.ServicesContainer- The services container. 
Return Value
Type: System.Net.Http.Formatting.IContentNegotiator
Returns anIContentNegotiatorinstance.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type ServicesContainer. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.108) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.108).
Remarks
The IContentNegotiator is used to select a MediaTypeFormatter object when creating an HTTP response.