Share via


Delta.TryGetPropertyValue Method (String, Object)

 

Attempts to get the value of the Property called name from the underlying Entity.

Remarks

Only properties that exist on Entity can be retrieved. Both modified and unmodified properties can be retrieved.

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

Syntax

public abstract bool TryGetPropertyValue(
    string name,
    out object value
)
public:
virtual bool TryGetPropertyValue(
    String^ name,
    [OutAttribute] Object^% value
) abstract
abstract TryGetPropertyValue : 
        name:string *
        value:Object byref -> bool
Public MustOverride Function TryGetPropertyValue (
    name As String,
    <OutAttribute> ByRef value As Object
) As Boolean

Parameters

Return Value

Type: System.Boolean

True if the Property was found

Implements

IDelta.TryGetPropertyValue(String, Object)

See Also

Delta Class
System.Web.OData Namespace

Return to top