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