Delta.TrySetPropertyValue Method (String, Object)
Attempts to set the Property called name to the value specified.
Namespace: System.Web.Http.OData
Assembly: System.Web.Http.OData (in System.Web.Http.OData.dll)
Syntax
public abstract bool TrySetPropertyValue(
string name,
object value
)
public:
virtual bool TrySetPropertyValue(
String^ name,
Object^ value
) abstract
abstract TrySetPropertyValue :
name:string *
value:Object -> bool
Public MustOverride Function TrySetPropertyValue (
name As String,
value As Object
) As Boolean
Parameters
name
Type: System.StringThe name of the Property
value
Type: System.ObjectThe new value of the Property
Return Value
Type: System.Boolean
True if successful
Implements
IDelta.TrySetPropertyValue(String, Object)
See Also
Delta Class
System.Web.Http.OData Namespace
Return to top