HttpResponseMessageExtensions.TryGetContentValue<T> Method

Attempts to retrieve the value of the content for the HttpResponseMessageExtensions.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function TryGetContentValue(Of T) ( _
    response As HttpResponseMessage, _
    <OutAttribute> ByRef value As T _
) As Boolean
'Usage
Dim response As HttpResponseMessage 
Dim value As T
Dim returnValue As Boolean 

returnValue = response.TryGetContentValue(value)
public static bool TryGetContentValue<T>(
    this HttpResponseMessage response,
    out T value
)
[ExtensionAttribute]
public:
generic<typename T>
static bool TryGetContentValue(
    HttpResponseMessage^ response, 
    [OutAttribute] T% value
)
static member TryGetContentValue : 
        response:HttpResponseMessage * 
        value:'T byref -> bool
JScript does not support generic types and methods.

Type Parameters

  • T
    The type of the value to retrieve.

Parameters

  • response
    Type: HttpResponseMessage

    The response of the operation.

  • value
    Type: T%

    The value of the content.

Return Value

Type: System.Boolean
The result of the retrieval of value of the content.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type HttpResponseMessage. 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).

See Also

Reference

HttpResponseMessageExtensions Class

System.Net.Http Namespace