次の方法で共有


UserActivityContentInfo.FromJson(String) メソッド

定義

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""
    }");

適用対象