IHeaderDictionary.GetCommaSeparatedValues Method (String)
Get the associated values from the collection separated into individual values. Quoted values will not be split, and the quotes will be removed.
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Syntax
IList<string> GetCommaSeparatedValues(
string key
)
IList<String^>^ GetCommaSeparatedValues(
String^ key
)
abstract GetCommaSeparatedValues :
key:string -> IList<string>
Function GetCommaSeparatedValues (
key As String
) As IList(Of String)
Parameters
key
Type: System.StringThe header name.
Return Value
Type: System.Collections.Generic.IList<String>
the associated values from the collection separated into individual values, or null if the key is not present.
See Also
IHeaderDictionary Interface
Microsoft.Owin Namespace
Return to top