HttpResponseMessageExtensions.TryGetObjectValue<T> Method

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function TryGetObjectValue(Of T As Class) ( _
    response As HttpResponseMessage, _
    <OutAttribute> ByRef value As T _
) As Boolean
public static bool TryGetObjectValue<T>(
    this HttpResponseMessage response,
    out T value
)
where T : class
[ExtensionAttribute]
public:
generic<typename T>
where T : ref class
static bool TryGetObjectValue(
    HttpResponseMessage^ response, 
    [OutAttribute] T% value
)
static member TryGetObjectValue : 
        response:HttpResponseMessage * 
        value:'T byref -> bool  when 'T : not struct
JScript does not support generic types or methods.

Type Parameters

  • T

Parameters

  • value
    Type: T%

Return Value

Type: System.Boolean

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 Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also

Reference

HttpResponseMessageExtensions Class

System.Web.Http Namespace