HttpRequestMessageExtensions.GetConfiguration Method
Retrieves the HttpConfiguration for the given request.
Namespace: System.Net.Http
Assembly: System.Web.Http (in System.Web.Http.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function GetConfiguration ( _
request As HttpRequestMessage _
) As HttpConfiguration
'Usage
Dim request As HttpRequestMessage
Dim returnValue As HttpConfiguration
returnValue = request.GetConfiguration()
public static HttpConfiguration GetConfiguration(
this HttpRequestMessage request
)
[ExtensionAttribute]
public:
static HttpConfiguration^ GetConfiguration(
HttpRequestMessage^ request
)
static member GetConfiguration :
request:HttpRequestMessage -> HttpConfiguration
public static function GetConfiguration(
request : HttpRequestMessage
) : HttpConfiguration
Parameters
request
Type: HttpRequestMessageThe HTTP request.
Return Value
Type: System.Web.Http.HttpConfiguration
The HttpConfiguration for the given request.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type HttpRequestMessage. 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).