StoreRateAndReviewResult.ExtendedJsonData 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得速率的完整結果資料,並以 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
屬性值
包含速率和檢閱要求結果的 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」 ] } }