- Added PropertyType parameter to IValueConnector.FromArtifact

This commit is contained in:
mclausen
2019-01-17 18:52:08 +01:00
parent 42f32e61e9
commit 537b7e5ce9

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);
}
}