Table of Contents

Class GroupKey

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

Constructors

GroupKey(string, string)

public GroupKey(string groupId, string languageId)

Parameters

groupId string
languageId string

Properties

GroupId

The group identifier.

public string GroupId { get; }

Property Value

string

LanguageId

The language identifier.

public string LanguageId { get; }

Property Value

string

Methods

Equals(GroupKey)

Determines whether the specified GroupKey is equal to this instance.

public bool Equals(GroupKey other)

Parameters

other GroupKey

The GroupKey to compare with this instance.

Returns

bool

true if the specified GroupKey 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.

Parse(string)

Parses the given input as a GroupKey.

public static GroupKey Parse(string input)

Parameters

input string

The key string to parse.

Returns

GroupKey

ToString()

Returns a string representation of this instance.

public override string ToString()

Returns

string

TryParse(string, out GroupKey)

Tries to parse the given input as a GroupKey.

public static bool TryParse(string input, out GroupKey groupKey)

Parameters

input string

The key string to parse.

groupKey GroupKey

The out variable containing the GroupKey if parsing was possible.

Returns

bool
To top