Attempts to get the value of the Property called name from the underlying Entity.
Namespace:   System.Web.OData
Assembly:  System.Web.OData (in System.Web.OData.dll)
Syntax
bool TryGetPropertyValue(
    string name,
    out object value
)
bool TryGetPropertyValue(
    String^ name,
    [OutAttribute] Object^% value
)
abstract TryGetPropertyValue : 
        name:string *
        value:Object byref -> bool
Function TryGetPropertyValue (
    name As String,
    <OutAttribute> ByRef value As Object
) As Boolean
Parameters
- name 
 Type: System.String- The name of the Property 
- value 
 Type: System.Object- The value of the Property 
Return Value
Type: System.Boolean
Returns true if the Property was found and false if not.
See Also
IDelta Interface
System.Web.OData Namespace
Return to top