Share via


IHeaderDictionary.GetCommaSeparatedValues Method

Parses out comma separated headers into individual values. Quoted values will not be coma split, and the quotes will be removed.

Namespace:  Microsoft.Owin
Assembly:  Microsoft.Owin (in Microsoft.Owin.dll)

Syntax

'Declaration
Function GetCommaSeparatedValues ( _
    key As String _
) As IList(Of String)
'Usage
Dim instance As IHeaderDictionary 
Dim key As String 
Dim returnValue As IList(Of String)

returnValue = instance.GetCommaSeparatedValues(key)
IList<string> GetCommaSeparatedValues(
    string key
)
IList<String^>^ GetCommaSeparatedValues(
    String^ key
)
abstract GetCommaSeparatedValues : 
        key:string -> IList<string> 
function GetCommaSeparatedValues(
    key : String
) : IList<String>

Parameters

Return Value

Type: System.Collections.Generic.IList<String>
The collection of header values.

See Also

Reference

IHeaderDictionary Interface

Microsoft.Owin Namespace