TryGetPropertyDefinition method
bool
TryGetPropertyDefinition(
- String xmlElementName,
- OutParam<
PropertyDefinition> propertyDefinitionOutParam
Implementation
bool TryGetPropertyDefinition(String xmlElementName,
OutParam<PropertyDefinition> propertyDefinitionOutParam) {
if (this._properties.containsKey(xmlElementName)) {
propertyDefinitionOutParam.param = this._properties[xmlElementName];
return true;
} else {
return false;
}
}