JumpItemsRejectedEventArgs Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.