ActionPortModelDefaultValue Property

The default value assigned to this object.

Definition

Namespace: MobileTrack.Web.Components.Models.ActionFlows
Assembly: MobileTrack.Web.Components (in MobileTrack.Web.Components.dll) Version: 0.7+1dadc87dcf0a0f837e19a3ce2deb7c1cd85375d1
public Object DefaultValue { get; set; }

Property Value

Object

Implements

IHasDefaultValueDefaultValue

Remarks

The value must always be stateful; it cannot be It must represent the default state of a value-type struct.
This is except for Identifiers, which is why Empty is not allowed.
Valid examples of default values include: a String (Empty), Guid (not Empty), Double (0.0d), GeoLocation (Empty), and so on.
To represent empty Identifiers (Empty), use an Int32 of value 0, similar to NULL in the C Programming Language.

See Also