NameValueCollectionValueProvider::GetKeysFromPrefix Method

Gets the keys using the specified prefix.

Namespace:  System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

public:
virtual IDictionary<String^, String^>^ GetKeysFromPrefix(
	String^ prefix
)

Parameters

prefix
Type: System::String

The prefix.

Implements

IEnumerableValueProvider::GetKeysFromPrefix(String)

GetKeysFromPrefix(“xyz") will return the following:

  1. "abc" and "xyz.abc" from "xyz.abc"

  2. "hello" and "xyz.hello" from "xyz.hello"

  3. Nothing from "something.other"

  4. "abc" and "xyz[abc]" from “xyz[abc].123”

Show: