Share via


SettingsListChangedEventArgs.Removing Method

Definition

Overloads

Removing(IEnumerable<KeyValuePair<String,Object>>, Object)

Returns a SettingsListChangedEventArgs describing the removal of multiple items from a list.

Removing(KeyValuePair<String,Object>, Object)

Returns a SettingsListChangedEventArgs describing the removal of a single item from a list.

Removing(IEnumerable<KeyValuePair<String,Object>>, Object)

Returns a SettingsListChangedEventArgs describing the removal of multiple items from a list.

public static Microsoft.VisualStudio.Settings.SettingsListChangedEventArgs Removing (System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object>> items, object state = default);
static member Removing : seq<System.Collections.Generic.KeyValuePair<string, obj>> * obj -> Microsoft.VisualStudio.Settings.SettingsListChangedEventArgs
Public Shared Function Removing (items As IEnumerable(Of KeyValuePair(Of String, Object)), Optional state As Object = Nothing) As SettingsListChangedEventArgs

Parameters

items
IEnumerable<KeyValuePair<String,Object>>

The items.

state
Object

The state. Null by default.

Returns

The event arguments.

Applies to

Removing(KeyValuePair<String,Object>, Object)

Returns a SettingsListChangedEventArgs describing the removal of a single item from a list.

public static Microsoft.VisualStudio.Settings.SettingsListChangedEventArgs Removing (System.Collections.Generic.KeyValuePair<string,object> item, object state = default);
static member Removing : System.Collections.Generic.KeyValuePair<string, obj> * obj -> Microsoft.VisualStudio.Settings.SettingsListChangedEventArgs
Public Shared Function Removing (item As KeyValuePair(Of String, Object), Optional state As Object = Nothing) As SettingsListChangedEventArgs

Parameters

item
KeyValuePair<String,Object>

The item.

state
Object

The state. Null by default.

Returns

The event arguments.

Applies to