UserActivityContentInfo.FromJson(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a UserActivityContentInfo from a JSON string.
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
Parameters
- value
-
String
Platform::String
winrt::hstring
The content to store in JSON format.
Returns
A UserActivityContentInfo that contains the JSON data.
Examples
userActivity.ContentInfo = UserActivityContentInfo.FromJson(
@"{
""@context"": ""~~http~~://schema.org"",
""@type"": ""Article"",
""author"": ""John Doe"",
""name"": ""How to Tie a Reef Knot""
}");