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