DictionaryValueProvider<TValue>::GetKeysFromPrefix Method (String^)
Gets the keys from the prefix.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Parameters
- prefix
-
Type:
System::String^
the prefix.
Return Value
Type: System.Collections.Generic::IDictionary<String^, String^>^The keys from the prefix.
GetKeysFromPrefix(“xyz") will return the following:
"abc" and "xyz.abc" from "xyz.abc"
"hello" and "xyz.hello" from "xyz.hello"
Nothing from "something.other"
"abc" and "xyz[abc]" from “xyz[abc].123”
Show: