UserActivityContentInfo.FromJson(String) Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Erstellt eine UserActivityContentInfo aus einer JSON-Zeichenfolge.
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
Parameter
- value
-
String
Platform::String
winrt::hstring
Der im JSON-Format zu speichernde Inhalt.
Gibt zurück
Eine UserActivityContentInfo , die die JSON-Daten enthält.
Beispiele
userActivity.ContentInfo = UserActivityContentInfo.FromJson(
@"{
""@context"": ""~~http~~://schema.org"",
""@type"": ""Article"",
""author"": ""John Doe"",
""name"": ""How to Tie a Reef Knot""
}");