Here you can see some methods and variables that are private.
I'm using a different example than the code above: Here is the razor page index.
@page "/"
<Counter Title="Diego's Component" Label="Valor" CurrentValue="@counter" ValueChanged="@CounterChanged"></Counter>
<h1>Dos:</h1>
<Alert Show="@(counter>3)">
<p>Your counter is bigger than 3</p>
</Alert>
<DismissableAlert Show="@(counter>3)">
<p>Count too large!</p>
</DismissableAlert>
<Timer Active="@(counter>3)" Tick="@ResetCounter" TimeInSeconds="3"></Timer>
<DiegoFotos @ref="dies"></DiegoFotos>
<Timer Tick="@NextDie" TimeInSeconds="3" Active="@true"></Timer>
@code
{
private int counter = 0;
private void CounterChanged(int newCounter)
{
counter = newCounter;
this.StateHasChanged();
}
private void ResetCounter() => this.counter = 0;
//reference to the other component
private DiegoFotos dies;
public void NextDie() => dies.NextDie();
}
In the code above you can see a public method "NextDie" Thanks in advance for your clarification.
When you define a method or a variable as private, they are scoped to the current component, and cannot be accessed from outside.
This is not true. You may define your methods and fields and properties as public if you wish to expose them to the external world.
As for instance, if you want to allow a parent component to pass a value to its child component, you should define a parameter public property as follows;
[Parameter] Public string Value {get; set;}
Now, if you change the public modifier to private, this code won't work...
Note: A component is a C# class, and it has the same characteristics of a C# class in that regard, though it is a special case of a class (because of the rendering feature)