HeaderDictionary.AppendCommaSeparatedValues Method
Quotes any values containing comas, and then coma joins all of the values with any existing values.
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Syntax
'Declaration
Public Sub AppendCommaSeparatedValues ( _
key As String, _
ParamArray values As String() _
)
'Usage
Dim instance As HeaderDictionary
Dim key As String
Dim values As String()
instance.AppendCommaSeparatedValues(key, _
values)
public void AppendCommaSeparatedValues(
string key,
params string[] values
)
public:
virtual void AppendCommaSeparatedValues(
String^ key,
... array<String^>^ values
) sealed
abstract AppendCommaSeparatedValues :
key:string *
values:string[] -> unit
override AppendCommaSeparatedValues :
key:string *
values:string[] -> unit
public final function AppendCommaSeparatedValues(
key : String,
... values : String[]
)
Parameters
- key
Type: System.String
The header name.
- values
Type: System.String[]
The header values.
Implements
IHeaderDictionary.AppendCommaSeparatedValues(String, String[])