Table of Contents

Class OrderLineFieldValue

Namespace
Dynamicweb.Ecommerce.Orders
Assembly
Dynamicweb.Ecommerce.dll
Represents information about an order line field value.
[Serializable]
public class OrderLineFieldValue
Inheritance
OrderLineFieldValue
Inherited Members

Constructors

OrderLineFieldValue(string, string)

Initializes a new instance of the OrderLineFieldValue class.
public OrderLineFieldValue(string orderLineFieldSystemName, string value)

Parameters

orderLineFieldSystemName string
System name of the order line field.
value string
The value.

Properties

OrderLineFieldLength

Gets the length of the order line field.
public int OrderLineFieldLength { get; }

Property Value

int
The length of the order line field.

OrderLineFieldName

Gets the name of the order line field.
public string OrderLineFieldName { get; }

Property Value

string
The name of the order line field.

OrderLineFieldSystemName

Gets or sets the system name of the order line field.
public string OrderLineFieldSystemName { get; set; }

Property Value

string
System name of the order line field.

ValidationErrorMessage

Gets or sets the validation error message.
public string ValidationErrorMessage { get; set; }

Property Value

string
The validation error message.

Value

Gets or sets the value.
public string Value { get; set; }

Property Value

string
The value.

Methods

Equals(object)

Determines whether the specified object is equal to this instance.
public override bool Equals(object obj)

Parameters

obj object
The object to compare with this instance.

Returns

bool
true if the specified object is equal to this instance; otherwise, false.

GetCartInputFieldName(string)

Gets the name of the input field.
public string GetCartInputFieldName(string orderLineId)

Parameters

orderLineId string
The order line ID.

Returns

string

GetHashCode()

public override int GetHashCode()

Returns

int
To top