JsonObject.TryParse(String, JsonObject) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將代表 JSON 物件的指定字串剖析為 JsonObject。
public:
static bool TryParse(Platform::String ^ input, [Out] JsonObject ^ & result);
static bool TryParse(winrt::hstring const& input, [Out] JsonObject const& & result);
public static bool TryParse(string input, out JsonObject result);
Public Shared Function TryParse (input As String, ByRef result As JsonObject) As Boolean
參數
- input
-
String
Platform::String
winrt::hstring
指定的 JSON 字串。
- result
- JsonObject
產生的 JsonObject。
傳回
Boolean
bool
如果已成功建立 JsonValue 物件,則為 True;否則為 false。