JumpItemsRejectedEventArgs Constructors

Definition

Initializes a new instance of the JumpItemsRejectedEventArgs class.

Overloads

JumpItemsRejectedEventArgs()

Initializes a new instance of the JumpItemsRejectedEventArgs class.

JumpItemsRejectedEventArgs(IList<JumpItem>, IList<JumpItemRejectionReason>)

Initializes a new instance of the JumpItemsRejectedEventArgs class that has the specified parameters.

JumpItemsRejectedEventArgs()

Initializes a new instance of the JumpItemsRejectedEventArgs class.

public:
 JumpItemsRejectedEventArgs();
public JumpItemsRejectedEventArgs ();
Public Sub New ()

Applies to

JumpItemsRejectedEventArgs(IList<JumpItem>, IList<JumpItemRejectionReason>)

Initializes a new instance of the JumpItemsRejectedEventArgs class that has the specified parameters.

public:
 JumpItemsRejectedEventArgs(System::Collections::Generic::IList<System::Windows::Shell::JumpItem ^> ^ rejectedItems, System::Collections::Generic::IList<System::Windows::Shell::JumpItemRejectionReason> ^ reasons);
public JumpItemsRejectedEventArgs (System.Collections.Generic.IList<System.Windows.Shell.JumpItem> rejectedItems, System.Collections.Generic.IList<System.Windows.Shell.JumpItemRejectionReason> reasons);
new System.Windows.Shell.JumpItemsRejectedEventArgs : System.Collections.Generic.IList<System.Windows.Shell.JumpItem> * System.Collections.Generic.IList<System.Windows.Shell.JumpItemRejectionReason> -> System.Windows.Shell.JumpItemsRejectedEventArgs
Public Sub New (rejectedItems As IList(Of JumpItem), reasons As IList(Of JumpItemRejectionReason))

Parameters

rejectedItems
IList<JumpItem>

The list of Jump List items that could not be added to the Jump List by the Windows shell.

reasons
IList<JumpItemRejectionReason>

The list of reasons why the rejected Jump List items could not be added to the Jump List.

Exceptions

The count of rejectedItems does not equal the count of rejection reasons.

Remarks

Every rejected item must have a corresponding rejection reason.

Applies to