Table of Contents

Class TrackAndTrace

Namespace
Dynamicweb.Ecommerce.Orders
Assembly
Dynamicweb.Ecommerce.dll

Represents a track and trace configuration for orders.

[Serializable]
public class TrackAndTrace
Inheritance
TrackAndTrace
Inherited Members

Constructors

TrackAndTrace()

Initializes a new instance of the TrackAndTrace class.

public TrackAndTrace()

Properties

ID

Gets or sets the identifier

public int ID { get; set; }

Property Value

int

IsNew

Indicates whether the current instance is new.

public bool IsNew { get; }

Property Value

bool

Name

Gets or sets the track and trace name.

public string Name { get; set; }

Property Value

string

The name.

Parameters

Gets or sets the track and trace Parameters.

public TrackAndTraceParameterCollection Parameters { get; set; }

Property Value

TrackAndTraceParameterCollection

The Parameters.

Url

Gets or sets the track and trace URL.

public string Url { get; set; }

Property Value

string

The URL.

Methods

AddParameter(string, string, string)

Adds the new TrackAndTraceParameter created from provided name, default value and description.

public void AddParameter(string parameterName, string defaultValue, string description)

Parameters

parameterName string

The parameter name.

defaultValue string

The parameter default value.

description string

The parameter description.

GetFormatedUrl(string)

Gets the track and trace formated URL.

public string GetFormatedUrl(string parameterValues)

Parameters

parameterValues string

The URL parameters.

Returns

string
To top