Table of Contents

Class GroupRelatedProductKey

Namespace
Dynamicweb.Ecommerce.Products
Assembly
Dynamicweb.Ecommerce.dll
[Serializable]
public sealed class GroupRelatedProductKey : IEquatable<GroupRelatedProductKey>
Inheritance
GroupRelatedProductKey
Implements
Inherited Members

Constructors

GroupRelatedProductKey(string, string, string, string, string)

public GroupRelatedProductKey(string productId, string productVariantId, string groupId, string languageId, string relatedGroupId)

Parameters

productId string
productVariantId string
groupId string
languageId string
relatedGroupId string

Properties

GroupId

public string GroupId { get; set; }

Property Value

string

LanguageId

public string LanguageId { get; set; }

Property Value

string

ProductId

public string ProductId { get; set; }

Property Value

string

ProductVariantId

public string ProductVariantId { get; set; }

Property Value

string

RelatedGroupId

public string RelatedGroupId { get; set; }

Property Value

string

Methods

Equals(GroupRelatedProductKey)

Indicates whether the current object is equal to another object of the same type.

public bool Equals(GroupRelatedProductKey other)

Parameters

other GroupRelatedProductKey

An object to compare with this object.

Returns

bool

true if the current object is equal to the other parameter; otherwise, false.

Equals(object)

Determines whether the specified object is equal to the current object.

public override bool Equals(object obj)

Parameters

obj object

The object to compare with the current object.

Returns

bool

true if the specified object is equal to the current object; otherwise, false.

GetHashCode()

Serves as the default hash function.

public override int GetHashCode()

Returns

int

A hash code for the current object.

Parse(string)

public static GroupRelatedProductKey Parse(string key)

Parameters

key string

Returns

GroupRelatedProductKey

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.

To top