Table of Contents

Class Items.CancelableItemArgs

Namespace
Dynamicweb.Notifications
Assembly
Dynamicweb.dll

Provides information about the item with the ability to cancel the further execution.

public class Items.CancelableItemArgs : CancelableNotificationArgs
Inheritance
Items.CancelableItemArgs
Derived
Inherited Members

Constructors

CancelableItemArgs()

Initializes a new instance of an object.

public CancelableItemArgs()

CancelableItemArgs(ItemEntry)

Initializes a new instance of an object.

public CancelableItemArgs(ItemEntry item)

Parameters

item ItemEntry

Item instance.

Properties

Item

Gets or sets the item instance.

public ItemEntry Item { get; set; }

Property Value

ItemEntry

Methods

ToItem(ItemEntry)

Returns an instance of an Item object that corresponds to the given ItemEntry object.

public Item ToItem(ItemEntry i)

Parameters

i ItemEntry

ItemEntry object to convert.

Returns

Item

An instance of an Item object.

To top