TryGetProperty method
bool
TryGetProperty(
- PropertyDefinition propertyDefinition,
- OutParam<
Object> propertyValueOutParam
Implementation
bool TryGetProperty(PropertyDefinition propertyDefinition,
OutParam<Object> propertyValueOutParam) {
OutParam<ServiceLocalException> serviceExceptionOutParam =
new OutParam<ServiceLocalException>();
propertyValueOutParam.param = this.GetPropertyValueOrException(
propertyDefinition, serviceExceptionOutParam);
return serviceExceptionOutParam.param == null;
}