Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets the value of the property with the given name.
Namespace: System.Web.Http.OData
Assembly: System.Web.Http.OData (in System.Web.Http.OData.dll)
Syntax
bool TryGetPropertyValue(
string propertyName,
out object value
)
bool TryGetPropertyValue(
String^ propertyName,
[OutAttribute] Object^% value
)
abstract TryGetPropertyValue :
propertyName:string *
value:Object byref -> bool
Function TryGetPropertyValue (
propertyName As String,
<OutAttribute> ByRef value As Object
) As Boolean
Parameters
propertyName
Type: System.StringThe name of the property to get.
value
Type: System.ObjectWhen this method returns, contains the value of the property with the given name, if the property is found; otherwise, null. The parameter is passed uninitialized.
Return Value
Type: System.Boolean
true if the instance contains the property with the given name; otherwise, false.
See Also
IEdmStructuredObject Interface
System.Web.Http.OData Namespace
Return to top