DictionaryValueProvider<TValue>.GetKeysFromPrefix Method (String)

 

Gets the keys from the prefix.

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

Syntax

public virtual IDictionary<string, string> GetKeysFromPrefix(
    string prefix
)
public:
virtual IDictionary<String^, String^>^ GetKeysFromPrefix(
    String^ prefix
)
abstract GetKeysFromPrefix : 
        prefix:string -> IDictionary<string, string>
override GetKeysFromPrefix : 
        prefix:string -> IDictionary<string, string>
Public Overridable Function GetKeysFromPrefix (
    prefix As String
) As IDictionary(Of String, String)

Parameters

Return Value

Type: System.Collections.Generic.IDictionary<StringString>

The keys from the prefix.

Implements

IEnumerableValueProvider.GetKeysFromPrefix(String)

Remarks

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”

See Also

DictionaryValueProvider<TValue> Class
System.Web.Mvc Namespace

Return to top