Delta<TEntityType>.TryGetPropertyValue Method (String, Object)
Attempts to get the value of the property called name from the underlying entity.
Namespace: System.Web.Http.OData
Assembly: System.Web.Http.OData (in System.Web.Http.OData.dll)
Syntax
public override bool TryGetPropertyValue(
string name,
out object value
)
public:
virtual bool TryGetPropertyValue(
String^ name,
[OutAttribute] Object^% value
) override
override TryGetPropertyValue :
name:string *
value:Object byref -> bool
Public Overrides Function TryGetPropertyValue (
name As String,
<OutAttribute> ByRef value As Object
) As Boolean
Parameters
name
Type: System.StringThe name of the property.
value
Type: System.ObjectThe value of the property.
Return Value
Type: System.Boolean
true if the property was found.
Implements
IDelta.TryGetPropertyValue(String, Object) IDelta.TryGetPropertyValue(String, Object)
See Also
Delta<TEntityType> Class
System.Web.Http.OData Namespace
Return to top