Compartir a través de


PrefixContainer.GetKeysFromPrefix(String) Método

Definición

Obtiene las claves de un prefijo.

public:
 System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ GetKeysFromPrefix(System::String ^ prefix);
public System.Collections.Generic.IDictionary<string,string> GetKeysFromPrefix (string prefix);
member this.GetKeysFromPrefix : string -> System.Collections.Generic.IDictionary<string, string>
Public Function GetKeysFromPrefix (prefix As String) As IDictionary(Of String, String)

Parámetros

prefix
String

Prefijo que se va a enumerar.

Devoluciones

Claves del prefijo.

Comentarios

Dado "foo.bar", "foo.hello", "something.other", foo[abc].baz y pidiendo prefijo "foo" devolverá: - "bar"/"foo.bar" - "hello"/"foo.hello" - "abc"/"foo[abc]"

Se aplica a