TryGetProperty method

bool TryGetProperty(
  1. PropertyDefinitionBase propertyDefinition,
  2. OutParam<Object> propertyValueOutParam
)
Try to get the value of a specified property in this instance. The property definition. The property value.

Implementation

bool TryGetProperty(PropertyDefinitionBase propertyDefinition,
    OutParam<Object> propertyValueOutParam) {
  return this.TryGetPropertyGeneric<Object>(
      propertyDefinition, propertyValueOutParam);
}