Table of Contents

Class FavoriteCommandResult

Namespace
Dynamicweb.Ecommerce.CustomerExperienceCenter.Favorites
Assembly
Dynamicweb.Ecommerce.dll

Represents the result of a favorite list command execution.

public sealed class FavoriteCommandResult
Inheritance
FavoriteCommandResult
Inherited Members

Constructors

FavoriteCommandResult(FavoriteResultType, string?)

Represents the result of a favorite list command execution.

public FavoriteCommandResult(FavoriteResultType resultType, string? name = null)

Parameters

resultType FavoriteResultType

The result type.

name string

The favorite list name.

Properties

IsSuccess

Gets a value indicating whether the command was successful.

public bool IsSuccess { get; }

Property Value

bool

Name

Gets the name of the favorite list related to this result.

public string? Name { get; }

Property Value

string

ResultType

Gets the result type of the favorite list command execution.

public FavoriteResultType ResultType { get; }

Property Value

FavoriteResultType
To top