Class PropertyString
A property representing a string value less than 255 characters.
Inheritance
Inherited Members
Namespace: EPiServer.Core
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public class PropertyString : PropertyData, IReadOnly<PropertyData>, IReadOnly
Constructors
PropertyString()
Initializes a new instance of the Property
Declaration
public PropertyString()
PropertyString(String)
Initializes a new instance of the Property
Declaration
public PropertyString(string stringValue)
Parameters
Type | Name | Description |
---|---|---|
System. |
stringValue | The string value. |
Properties
IsNull
Check for null property (no value has been set).
Declaration
public override bool IsNull { get; }
Property Value
Type | Description |
---|---|
System. |
|
Overrides
MaxLength
Gets or sets the max length of the string.
Declaration
public virtual int MaxLength { get; set; }
Property Value
Type | Description |
---|---|
System. |
The max length of the string. |
Remarks
Default value is 255.
PropertyValueType
Gets the System.
Declaration
public override Type PropertyValueType { get; }
Property Value
Type | Description |
---|---|
System. |
The System. |
Overrides
String
Gets or sets the string value.
Declaration
protected virtual string String { get; set; }
Property Value
Type | Description |
---|---|
System. |
The string value. |
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
Gets or sets 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)
Creates a new instance of Property
Declaration
public static PropertyString Parse(string value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The value. |
Returns
Type | Description |
---|---|
Property |
A new instance of Property |
Remarks
No parsing is needed as the property is stored as a string.
ParseToSelf(String)
Sets the value of the property from a string representation.
Declaration
public override void ParseToSelf(string value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The string value to parse. |
Overrides
Remarks
No parsing is needed as the property is stored as a string.
SetDefaultValue()
Sets the default value for this property.
Declaration
protected override void SetDefaultValue()