HeaderDictionary.Remove Method (String)
.NET Framework 4.5
Removes a specific key from the dictionary.
Namespace: Microsoft.AspNet.SignalR.Client
Assembly: Microsoft.AspNet.SignalR.Client (in Microsoft.AspNet.SignalR.Client.dll)
Syntax
'Declaration
Public Function Remove ( _
key As String _
) As Boolean
'Usage
Dim instance As HeaderDictionary
Dim key As String
Dim returnValue As Boolean
returnValue = instance.Remove(key)
public bool Remove(
string key
)
public:
virtual bool Remove(
String^ key
) sealed
abstract Remove :
key:string -> bool
override Remove :
key:string -> bool
public final function Remove(
key : String
) : boolean
Parameters
- key
Type: System.String
The key to remove.
Return Value
Type: System.Boolean
The dictionary with removed key.
Implements
IDictionary<TKey, TValue>.Remove(TKey)