protected bool TryConvertOutputProperty(object value, string propertyInStr, out object convertedValue) { convertedValue = null; return(this.outputPropertyConverter != null && ObjectOutputHelper.TryConvertOutputProperty(value, this, null, propertyInStr, this.outputPropertyConverter.GetInvocationList(), out convertedValue)); }
protected bool TryConvertOutputProperty(object value, PropertyDefinition property, out object convertedValue) { convertedValue = null; return(this.outputPropertyConverter != null && ObjectOutputHelper.TryConvertOutputProperty(value, this, property, null, this.outputPropertyConverter.GetInvocationList(), out convertedValue)); }