HeaderDictionary.Remove Method (KeyValuePair<String, String[]>)
Removes the given item from the the collection.
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Syntax
'Declaration
Public Function Remove ( _
item As KeyValuePair(Of String, String()) _
) As Boolean
'Usage
Dim instance As HeaderDictionary
Dim item As KeyValuePair(Of String, String())
Dim returnValue As Boolean
returnValue = instance.Remove(item)
public bool Remove(
KeyValuePair<string, string[]> item
)
public:
virtual bool Remove(
KeyValuePair<String^, array<String^>^> item
) sealed
abstract Remove :
item:KeyValuePair<string, string[]> -> bool
override Remove :
item:KeyValuePair<string, string[]> -> bool
public final function Remove(
item : KeyValuePair<String, String[]>
) : boolean
Parameters
- item
Type: System.Collections.Generic.KeyValuePair<String, String[]>
The item.
Return Value
Type: System.Boolean
true if the specified object was removed from the collection; otherwise, false.