EdmStructuredObject.TryGetPropertyValue(String, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the value of the property with the given name.
public override bool TryGetPropertyValue (string name, out object value);
override this.TryGetPropertyValue : string * obj -> bool
Public Overrides Function TryGetPropertyValue (name As String, ByRef value As Object) As Boolean
Parameters
- name
- String
- value
- Object
When 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.
Returns
true
if the instance contains the property with the given name; otherwise, false
.