BasePropertyValue Property

This is used to set or get the value of the property in its unencoded string form

Definition

Namespace: EWSoftware.PDI.Properties
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2023.1.2.0
public virtual string Value { get; set; }

Property Value

String

Remarks

If the ValueLocation property is set to INLINE or a data type, this property contains the actual value in string form. If it is set to some other value, this property contains a pointer to the actual value (i.e. a URL, content ID, etc). In such cases, the value is probably not encoded.

This property can be used to set or get the property value in its decoded form. For setting or getting the value in its encoded form, use the EncodedValue property instead.

Derived classes can override this to parse the value and provide access to it via type-specific value properties. If this property is overridden, override EncodedValue as well to ensure the value is stored correctly in either form.

See Also