SettingsStore.GetString 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
GetString(String, String, String) |
返回其数据类型为 String的请求属性的值。 |
GetString(String, String) |
返回其数据类型为 String的请求属性的值。 |
GetString(String, String, String)
返回其数据类型为 String的请求属性的值。
public:
abstract System::String ^ GetString(System::String ^ collectionPath, System::String ^ propertyName, System::String ^ defaultValue);
public:
abstract Platform::String ^ GetString(Platform::String ^ collectionPath, Platform::String ^ propertyName, Platform::String ^ defaultValue);
abstract std::wstring GetString(std::wstring const & collectionPath, std::wstring const & propertyName, std::wstring const & defaultValue);
public abstract string GetString (string collectionPath, string propertyName, string defaultValue);
abstract member GetString : string * string * string -> string
Public MustOverride Function GetString (collectionPath As String, propertyName As String, defaultValue As String) As String
参数
- collectionPath
- String
属性集合的路径。
- propertyName
- String
属性的名称。
- defaultValue
- String
如果该属性不存在,则返回的值。
返回
如果该属性不存在,则返回传入的 defaultValue。
例外
如果属性的类型不同,则引发此异常。
适用于
GetString(String, String)
返回其数据类型为 String的请求属性的值。
public:
abstract System::String ^ GetString(System::String ^ collectionPath, System::String ^ propertyName);
public:
abstract Platform::String ^ GetString(Platform::String ^ collectionPath, Platform::String ^ propertyName);
abstract std::wstring GetString(std::wstring const & collectionPath, std::wstring const & propertyName);
public abstract string GetString (string collectionPath, string propertyName);
abstract member GetString : string * string -> string
Public MustOverride Function GetString (collectionPath As String, propertyName As String) As String
参数
- collectionPath
- String
属性集合的路径。
- propertyName
- String
属性的名称。
返回
属性的名称。
例外
如果属性的类型不同或不存在,则引发此异常。