Table of Contents

Class AssortmentKey

Namespace
Dynamicweb.Ecommerce.Assortments
Assembly
Dynamicweb.Ecommerce.dll
[Serializable]
[Obsolete("Use Assortment.Translations to get the translated versions of assortment")]
public sealed class AssortmentKey : IEquatable<AssortmentKey>
Inheritance
AssortmentKey
Implements
Inherited Members

Constructors

AssortmentKey(string, string)

public AssortmentKey(string assortmentId, string languageId)

Parameters

assortmentId string
languageId string

Properties

AssortmentId

The Assortment identifier.
public string AssortmentId { get; }

Property Value

string

LanguageId

The language identifier.
public string LanguageId { get; }

Property Value

string

Methods

Equals(AssortmentKey)

Determines whether the specified AssortmentKey is equal to this instance.
public bool Equals(AssortmentKey other)

Parameters

other AssortmentKey
The AssortmentKey to compare with this instance.

Returns

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

Equals(object)

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

Parameters

other object
The object to compare with this instance.

Returns

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

GetHashCode()

Returns a hash code for this instance.
public override int GetHashCode()

Returns

int
A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.

ToString()

Returns a string representation of this instance.
public override string ToString()

Returns

string
To top