PrefixContainer.GetKeysFromPrefix(String) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém as chaves de um prefixo.
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
O prefixo a ser enumerado.
Retornos
As chaves do prefixo.
Comentários
Dado "foo.bar", "foo.hello", "something.other", foo[abc].baz e pedindo o prefixo "foo" retornarão: - "bar"/"foo.bar" - "hello"/"foo.hello" - "abc"/"foo[abc]"