IHeaderDictionary.SetCommaSeparatedValues Method
Assigns the header values to the dictionary as a comma-separated value.
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Syntax
'Declaration
Sub SetCommaSeparatedValues ( _
key As String, _
ParamArray values As String() _
)
'Usage
Dim instance As IHeaderDictionary
Dim key As String
Dim values As String()
instance.SetCommaSeparatedValues(key, _
values)
void SetCommaSeparatedValues(
string key,
params string[] values
)
void SetCommaSeparatedValues(
String^ key,
... array<String^>^ values
)
abstract SetCommaSeparatedValues :
key:string *
values:string[] -> unit
function SetCommaSeparatedValues(
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.