public static JsonElement GetPropertyEx()

in JetBrains.Etw.HostService.Updater/src/Util/JsonUtil.cs [57:62]


    public static JsonElement GetPropertyEx(this JsonElement element, [NotNull] string propertyName)
    {
      if (!element.TryGetProperty(propertyName, out var childElement))
        throw new KeyNotFoundException($"Failed to find property {propertyName}");
      return childElement;
    }