You supplied: @SuppliedValue
I computed: @computedValue
@functions { public int SuppliedValue { get; set; } private int computedValue; protected override void OnParametersSet() { computedValue = SuppliedValue * 2; } }