HeaderDictionary.Remove Method (KeyValuePair<String, String>)
.NET Framework 4.5
Removes a specific key/ value pair item from the dictionary.
Namespace: Microsoft.AspNet.SignalR.Client
Assembly: Microsoft.AspNet.SignalR.Client (in Microsoft.AspNet.SignalR.Client.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^, 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 to remove.
Return Value
Type: System.Boolean
The dictionary with removed item.