Interface IPropertyValue
Namespace: Umbraco.Cms.Core.Models
Assembly: Umbraco.Core.dll
Syntax
public interface IPropertyValue
Properties
View SourceCulture
Gets or sets the culture of the property.
Declaration
string Culture { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Remarks
The culture is either null (invariant) or a non-empty string. If the property is set with an empty or whitespace value, its value is converted to null.
EditedValue
Gets or sets the edited value of the property.
Declaration
object EditedValue { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
PublishedValue
Gets or sets the published value of the property.
Declaration
object PublishedValue { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Segment
Gets or sets the segment of the property.
Declaration
string Segment { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Remarks
The segment is either null (neutral) or a non-empty string. If the property is set with an empty or whitespace value, its value is converted to null.
Methods
View SourceClone()
Clones the property value.
Declaration
IPropertyValue Clone()
Returns
Type | Description |
---|---|
IPropertyValue |