コード例 #1
0
        protected void SetInsuranceDetails()
        {
            _insurance = new Insurance
            {
                InsuranceName = "LIC",
                Caption       = "Life Insurance Corporation",
                InsuranceCode = 100013
            };

            this.IjsRuntime.InvokeVoidAsync("setLocalStorage", "LocalValue", _insurance);
        }
コード例 #2
0
 private async Task LoadStateAsync()
 {
     _insurance = await GetAsync("getLocalStorage", "LocalValue");
 }