Closed
Description
Describe the bug
Is there a way to hide an internal property, which has the [Parameter]
attribute, e.g.:
public class ParentComponentBase : ComponentBase
{
[Parameter]
internal string Value { get; set; }
}`
Using EditorBrowsable does not seem to work either:
public class ParentComponentBase : ComponentBase
{
[Parameter]
[EditorBrowsable(EditorBrowsableState.Never)]
internal string Value { get; set; }
}
Expected behavior
The internal property is not visible.