Table of Contents

Class FieldValueAndInheritanceInformation

Namespace
Dynamicweb.Ecommerce.Products.Categories
Assembly
Dynamicweb.Ecommerce.dll

Used to return both a field value and information about if it is inherited.

public class FieldValueAndInheritanceInformation
Inheritance
FieldValueAndInheritanceInformation
Inherited Members

Constructors

FieldValueAndInheritanceInformation(object, bool)

Initializes a new instance of the FieldValueAndInheritanceInformation class.

public FieldValueAndInheritanceInformation(object fieldValue, bool inheritedFieldValue)

Parameters

fieldValue object

The field value.

inheritedFieldValue bool

if set to true [inherited field value].

Properties

DefaultValue

Gets or sets a default value.

public object DefaultValue { get; set; }

Property Value

object

Inherited

Gets or sets a value indicating whether this FieldValueAndInheritanceInformation is inherited.

public bool Inherited { get; set; }

Property Value

bool

Value

Gets or sets the value.

public object Value { get; set; }

Property Value

object
To top