PrefixContainer.GetKeysFromPrefix(String) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
プレフィックスからキーを取得します。
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]" が返されます。