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