Merge pull request #4124 from umbraco/temp8-deploy-valueconnector

- Added PropertyType parameter to IValueConnector.FromArtifact
This commit is contained in:
Mikkel Holck Madsen
2019-01-17 18:57:12 +01:00
committed by GitHub

View File

@@ -29,8 +29,9 @@ namespace Umbraco.Core.Deploy
/// Gets the content property value corresponding to a deploy property value.
/// </summary>
/// <param name="value">The deploy property value.</param>
/// <param name="propertyType">The value property type<</param>
/// <param name="currentValue">The current content property value.</param>
/// <returns>The content property value.</returns>
object FromArtifact(string value, object currentValue);
object FromArtifact(string value, PropertyType propertyType, object currentValue);
}
}