SettingsListChangedEventArgs.Removing Method
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.
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.