Show / Hide Table of Contents

Class ProductCatalogEventArgs

Inheritance
object
EventArgs
ProductCatalogEventArgs
Inherited Members
EventArgs.Empty
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
Namespace: tt_net_sdk
Assembly: tt-net-api.dll
Syntax
public class ProductCatalogEventArgs : EventArgs

Properties

Added

Declaration
public IEnumerable<Product> Added { get; }
Property Value
Type Description
IEnumerable<Product>

Deleted

Declaration
public IEnumerable<Product> Deleted { get; }
Property Value
Type Description
IEnumerable<Product>

Event

Declaration
public ProductDataEvent Event { get; }
Property Value
Type Description
ProductDataEvent

IsFinal

Declaration
public bool IsFinal { get; }
Property Value
Type Description
bool

Message

Declaration
public string Message { get; }
Property Value
Type Description
string

ProductCatalog

Declaration
public ProductCatalog ProductCatalog { get; }
Property Value
Type Description
ProductCatalog

Updated

Declaration
public IEnumerable<Product> Updated { get; }
Property Value
Type Description
IEnumerable<Product>
In this article
Back to top