How to Get the Value of selecteditem in RadzenDropDown

I have a question about the RadzenDropdown component. I'm trying to save the selected item's value and pass it to local storage. I've tried using the selectedItems property from Radzen, as well as selectedText and the onchange event, but none of them seem to work. It's possible that I'm making some mistakes. Can someone please assist me in resolving this issue?
I'm new to this field, and I'm finding it challenging to trigger the selected value. I previously used a regular HTML select element, and it worked fine. However, I decided to switch to RadzenDropdown, and I'm facing difficulties with it.

This is my Dropdown List

 <RadzenDropDown @ref="@radzenDropDown"
                                @bind-SearchText="SearchText"
                                FilterCaseSensitivity="FilterCaseSensitivity.CaseInsensitive"
                                FilterOperator="StringFilterOperator.Contains"
                                AllowFiltering="true"
                                Data="@Data"
                                TextProperty="Name"
                                ValueProperty="NameID"
                                AllowClear="true"
                                SelectedItemsText="value"
                                @bind-Value="value"
                                Style="width: 100%; max-width: 400px;"
                                Change="HandleDropDownChange">
                                </RadzenDropDown>

The statement or declaration related to Radzen.

RadzenDropDown<string> radzenDropDown;
  public string value { get; set; }
 async Task HandleWorkCenterChange(ChangeEventArgs e)
    {
        string NameJ = JsonSerializer.Serialize(selecteditem);
        await _localStorageUtility.SetItemInLocalStorageAsync("selecteditem", NameJ);
     
        StateHasChanged();
    }
 private void HandleDropDownChange(object selectedValue)
    {
        if (selectedValue != null)
        {
            string selectedStringValue = selectedValue.ToString();
            // Log the selected value to the console
            Console.WriteLine("Selected Value: " + selectedStringValue);
        }
    }

This is the selected item value - in your case the value of the NameID property.