IHeaderDictionary.AppendValues Method
Adds the header values to the dictionary unmodified.
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Syntax
'Declaration
Sub AppendValues ( _
key As String, _
ParamArray values As String() _
)
'Usage
Dim instance As IHeaderDictionary
Dim key As String
Dim values As String()
instance.AppendValues(key, values)
void AppendValues(
string key,
params string[] values
)
void AppendValues(
String^ key,
... array<String^>^ values
)
abstract AppendValues :
key:string *
values:string[] -> unit
function AppendValues(
key : String,
... values : String[]
)
Parameters
- key
Type: System.String
The key of the header to add.
- values
Type: System.String[]
The header values to add.