ReadableStringCollection.GetValues Method
Get the associated values from the collection in their original format. Returns null if the key is not present.
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Syntax
'Declaration
Public Function GetValues ( _
key As String _
) As IList(Of String)
'Usage
Dim instance As ReadableStringCollection
Dim key As String
Dim returnValue As IList(Of String)
returnValue = instance.GetValues(key)
public IList<string> GetValues(
string key
)
public:
virtual IList<String^>^ GetValues(
String^ key
) sealed
abstract GetValues :
key:string -> IList<string>
override GetValues :
key:string -> IList<string>
public final function GetValues(
key : String
) : IList<String>
Parameters
- key
Type: System.String
Return Value
Type: System.Collections.Generic.IList<String>
Returns IList<T>.
Implements
IReadableStringCollection.GetValues(String)