JsonObject.TryParse(String, JsonObject) 方法

定义

将表示 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。

适用于