4 references to TryGetInt32
SocialSample (2)
Startup.cs (2)
343if (payload.RootElement.TryGetProperty("expires_in", out var property) && property.TryGetInt32(out var seconds)) 373if (payload.RootElement.TryGetProperty("expires_in", out var property) && property.TryGetInt32(out var seconds))
System.Text.Json (2)
System\Text\Json\Document\JsonElement.cs (1)
677if (!TryGetInt32(out int value))
System\Text\Json\Nodes\JsonValueOfElement.cs (1)
65success = Value.TryGetInt32(out int result);