UserActivityContentInfo.FromJson(String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從 JSON 字串建立 UserActivityContentInfo 。
public:
static UserActivityContentInfo ^ FromJson(Platform::String ^ value);
static UserActivityContentInfo FromJson(winrt::hstring const& value);
public static UserActivityContentInfo FromJson(string value);
function fromJson(value)
Public Shared Function FromJson (value As String) As UserActivityContentInfo
參數
- value
-
String
Platform::String
winrt::hstring
要以 JSON 格式儲存的內容。
傳回
包含 JSON 資料的 UserActivityContentInfo 。
範例
userActivity.ContentInfo = UserActivityContentInfo.FromJson(
@"{
""@context"": ""~~http~~://schema.org"",
""@type"": ""Article"",
""author"": ""John Doe"",
""name"": ""How to Tie a Reef Knot""
}");