IReadableStringCollection.Get Method
Get the associated value from the collection. Multiple values will be merged. Returns null if the key is not present.
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Syntax
'Declaration
Function Get ( _
key As String _
) As String
'Usage
Dim instance As IReadableStringCollection
Dim key As String
Dim returnValue As String
returnValue = instance.Get(key)
string Get(
string key
)
String^ Get(
String^ key
)
abstract Get :
key:string -> string
function Get(
key : String
) : String
Parameters
- key
Type: System.String
The key.
Return Value
Type: System.String
The associated value from the collection.