Class PropertyLongString
A property representing a string value of undetermined length.
Inheritance
Inherited Members
Namespace: EPiServer.Core
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public class PropertyLongString : PropertyData, IReadOnly<PropertyData>, IReadOnly, ILazyProperty
Constructors
PropertyLongString()
Initializes a new instance of the Property
Declaration
public PropertyLongString()
PropertyLongString(String)
Initializes a new instance of the Property
Declaration
public PropertyLongString(string value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The value for the new Property |
Properties
IsNull
Check for null property (no value has been set).
Declaration
public override bool IsNull { get; }
Property Value
Type | Description |
---|---|
System. |
|
Overrides
LongString
Gets or sets the value of the property typed as a System.
Declaration
protected virtual string LongString { get; set; }
Property Value
Type | Description |
---|---|
System. |
The value of the property typed as a System. |
PageLink
Gets or sets the Page
Declaration
public virtual PageReference PageLink { get; set; }
Property Value
Type | Description |
---|---|
Page |
The Page |
PropertyValueType
Gets the System.
Declaration
public override Type PropertyValueType { get; }
Property Value
Type | Description |
---|---|
System. |
The System. |
Overrides
Type
Property type as defined by enum Property
Declaration
public override PropertyDataType Type { get; }
Property Value
Type | Description |
---|---|
Property |
The type as defined by enum Property |
Overrides
Value
The value of the property.
Declaration
public override object Value { get; set; }
Property Value
Type | Description |
---|---|
System. |
The value of the property. |
Overrides
Remarks
Value returns null if the property has no value defined.
Methods
IsEmptyValue(Object)
Called to determine if current value is considered empty.
Declaration
protected override bool IsEmptyValue(object value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value |
Returns
Type | Description |
---|---|
System. |
Overrides
Remarks
Default implementation returns true for System.
Parse(String)
Create a new Property
Declaration
public static PropertyLongString Parse(string value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The value for the new Property |
Returns
Type | Description |
---|---|
Property |
A new instance of Property |
Remarks
As Property
ParseToSelf(String)
Parses a string and assigns it to the value of this instance.
Declaration
public override void ParseToSelf(string value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The new value for the property. |
Overrides
Remarks
As Property
SetDefaultValue()
Sets the default value for this property.
Declaration
protected override void SetDefaultValue()
Overrides
Explicit Interface Implementations
ILazyProperty.AssignValueFactory(Func<Object>)
Assigns a factory method that can provide a property with the value.
Declaration
void ILazyProperty.AssignValueFactory(Func<object> valueFactory)
Parameters
Type | Name | Description |
---|---|---|
System. |
valueFactory | The value factory method. |
ILazyProperty.HasLazyValue
Declaration
bool ILazyProperty.HasLazyValue { get; }
Returns
Type | Description |
---|---|
System. |