ISettingsManager.NamesStartingWith(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the names of all settings currently stored whose names begin with the given prefix (case insensitive).
public:
cli::array <System::String ^> ^ NamesStartingWith(System::String ^ prefix);
public:
Platform::Array <Platform::String ^> ^ NamesStartingWith(Platform::String ^ prefix);
std::Array <std::wstring const &> NamesStartingWith(std::wstring const & prefix);
public string[] NamesStartingWith (string prefix);
abstract member NamesStartingWith : string -> string[]
Public Function NamesStartingWith (prefix As String) As String()
Parameters
- prefix
- String
The prefix
Returns
String[]
The names.
Exceptions
Thrown when prefix
is null.
Remarks
This method is safe to access from any thread.