共用方式為


SettingsStore.GetString 方法

定義

多載

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

屬性的名稱。

傳回

屬性的值。

例外狀況

如果 屬性的類型不同或不存在,則會擲回這個例外狀況。

適用於