次の方法で共有


PrefixContainer.GetKeysFromPrefix(String) メソッド

定義

プレフィックスからキーを取得します。

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)

パラメーター

prefix
String

列挙するプレフィックス。

戻り値

プレフィックスのキー。

注釈

"foo.bar"、"foo.hello"、"something.other"、foo[abc].baz、プレフィックス "foo" を要求すると、"bar"/"foo.bar" - "hello"/"foo.hello" - "abc"/"foo[abc]" が返されます。

適用対象