HeaderDictionary.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
public IList<string> GetCommaSeparatedValues(
string key
)
public:
virtual IList<String^>^ GetCommaSeparatedValues(
String^ key
) sealed
abstract GetCommaSeparatedValues :
key:string -> IList<string>
override GetCommaSeparatedValues :
key:string -> IList<string>
Public 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.
Implements
IHeaderDictionary.GetCommaSeparatedValues(String)
See Also
HeaderDictionary Class
Microsoft.Owin Namespace
Return to top