question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Filter inherited members? (feature request)

See original GitHub issue

Filter inherited members? (feature request)

I would like to filter inherited members. For example, System.Object produces a lot of ‘noise’, and distracts from more relevant documentation:

image

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Reactions:7
  • Comments:5 (1 by maintainers)

github_iconTop GitHub Comments

12reactions
vicancycommented, Jul 6, 2017

Hi @mfaux this can be done by adding a filterConfig.yml http://dotnet.github.io/docfx/tutorial/howto_filter_out_unwanted_apis_attributes.html#3-default-filter-configuration For example, the following excludes all the members inside “System.Object”

apiRules:
- exclude:
      uidRegex: ^System\.Object
      type: Type

You can also exclude one specific method, for example, the following exclude “System.Object.GetHashCode”

apiRules:
- exclude:
      uidRegex: ^System\.Object\.GetHashCode
      type: Member
0reactions
lorddevcommented, May 14, 2019

That did it, thank you. (I had it at the root level instead of under metadata.)

Read more comments on GitHub >

github_iconTop Results From Across the Web

In eclipse, how to display inherited members in Outline view?
right click -> Open Type Hierarchy? It does not show it in the same pane but I think you can see what you're...
Read more >
New Feature : Saved Filters for Feature Requests - Savio
Use Savio to capture feature requests? Now you can save custom filters that are most relevant to your work. Here's how.
Read more >
Missing icons for filters in Structure view
How do I get icons for filtering on public/private or inherited class members in the Structure view? I expected there was a setting...
Read more >
Pre-populate relations when objects are created from a ...
I second this feature request. In my scenario I have a Set and different views with filters for tags / categories. When I...
Read more >
Global Query Filters - EF Core
Global query filters have the following limitations: Filters can only be defined for the root Entity Type of an inheritance hierarchy. Feedback.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found