共用方式為


StoreRateAndReviewResult.ExtendedJsonData 屬性

定義

取得速率的完整結果資料,並以 JSON 格式檢閱要求。 這包括判斷使用者是否中止對話方塊的資訊,以及呼叫未成功時的錯誤詳細資料。

public:
 property Platform::String ^ ExtendedJsonData { Platform::String ^ get(); };
winrt::hstring ExtendedJsonData();
public string ExtendedJsonData { get; }
var string = storeRateAndReviewResult.extendedJsonData;
Public ReadOnly Property ExtendedJsonData As String

屬性值

String

Platform::String

winrt::hstring

包含速率和檢閱要求結果的 JSON 格式字串。

備註

使用 ExtendedJsonData 屬性來存取 StoreRateAndReviewResult 物件的完整資料,作為程式碼中的 JSON 格式字串。

JSON 架構:

{ 「type」: 「object」, 「properties」: { 「status」: { 「enum」: [ 「success」, 「aborted」 ] }, 「data」: { 「type」: 「object」, 「properties」: { 「updated」: { 「type」: 「boolean」 } }, 「required」: [ 「updated」 ] }, 「errorDetails」: { 「type」: 「string」 } }, 「required」: [ 「status」, 「errorDetails」 ] } }

適用於

另請參閱