Table of Contents

Class OrderFieldCollection

Namespace
Dynamicweb.Ecommerce.Orders
Assembly
Dynamicweb.Ecommerce.dll
Represents a collection of the OrderField objects.
[Serializable]
public class OrderFieldCollection : Collection<OrderField>, IList<OrderField>, ICollection<OrderField>, IReadOnlyList<OrderField>, IReadOnlyCollection<OrderField>, IEnumerable<OrderField>, IList, ICollection, IEnumerable
Inheritance
OrderFieldCollection
Implements
Inherited Members
Extension Methods

Methods

Contains(OrderField)

Determines whether contains the specified order field.
public bool Contains(OrderField orderfield)

Parameters

orderfield OrderField
The order field.

Returns

bool
true if contains the specified order field; otherwise, false.

Contains(string)

Determines whether the collection contains the specified system name of the order field.
public bool Contains(string orderfieldSystemName)

Parameters

orderfieldSystemName string
Name of the order field system.

Returns

bool
true if contains the specified system name of the order field; otherwise, false.

Load(string)

Loads the specified order fields from DB.
[Obsolete("Use Services.OrderFields instead.")]
public void Load(string query)

Parameters

query string
The query query.
To top