HttpRequestMessageExtensions.GetDependencyScope Method
Retrieves the IDependencyScope for the given request or null reference (Nothing in Visual Basic) if not available.
Namespace: System.Net.Http
Assembly: System.Web.Http (in System.Web.Http.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function GetDependencyScope ( _
request As HttpRequestMessage _
) As IDependencyScope
'Usage
Dim request As HttpRequestMessage
Dim returnValue As IDependencyScope
returnValue = request.GetDependencyScope()
public static IDependencyScope GetDependencyScope(
this HttpRequestMessage request
)
[ExtensionAttribute]
public:
static IDependencyScope^ GetDependencyScope(
HttpRequestMessage^ request
)
static member GetDependencyScope :
request:HttpRequestMessage -> IDependencyScope
public static function GetDependencyScope(
request : HttpRequestMessage
) : IDependencyScope
Parameters
request
Type: HttpRequestMessageThe HTTP request.
Return Value
Type: System.Web.Http.Dependencies.IDependencyScope
The IDependencyScope for the given request or null reference (Nothing in Visual Basic) if not available.
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).