IEnumerableValueProvider.GetKeysFromPrefix Method
Retrieves the keys from the specified prefix.
Namespace: System.Web.Http.ValueProviders
Assembly: System.Web.Http (in System.Web.Http.dll)
Syntax
'Declaration
Function GetKeysFromPrefix ( _
prefix As String _
) As IDictionary(Of String, String)
'Usage
Dim instance As IEnumerableValueProvider
Dim prefix As String
Dim returnValue As IDictionary(Of String, String)
returnValue = instance.GetKeysFromPrefix(prefix)
IDictionary<string, string> GetKeysFromPrefix(
string prefix
)
IDictionary<String^, String^>^ GetKeysFromPrefix(
String^ prefix
)
abstract GetKeysFromPrefix :
prefix:string -> IDictionary<string, string>
function GetKeysFromPrefix(
prefix : String
) : IDictionary<String, String>
Parameters
- prefix
Type: System.String
The prefix.
Return Value
Type: System.Collections.Generic.IDictionary<String, String>
The keys from the specified prefix.