.NET MAUI & Storage, Part 1 - Secure Storage

Поделиться
HTML-код
  • Опубликовано: 27 окт 2024

Комментарии • 23

  • @avh2502
    @avh2502 Год назад

    Thanks for this. I couldn't get this working until I watched your video and saw that the new Entitlements file needs to be set to "Copy to the Output Folder".

  • @jeanhibbert
    @jeanhibbert Год назад

    Great video - thank you!

  • @arielpenag
    @arielpenag 2 года назад

    Great Video! interesting , would you make a video storing Data in a cloud services SQL or ANY REST API ENDPOINT , SQL or NOSQL .

  • @moawadabdelbasset9896
    @moawadabdelbasset9896 2 года назад

    thanks for you can you make example for piker like combobox with crud

  • @bbhoodsta
    @bbhoodsta 2 года назад

    Great Video! I see that you used [ObservableProperty] for Commands (save & show). Shouldn't it be [RelayCommand] or is there no difference?

    • @DanielHindrikes
      @DanielHindrikes  2 года назад +1

      I have not study the code in detail, but in general they do the same. Command is from MAUI and RelayCommand from CommunityToolkit.Mvvm.

  • @LeonelRc
    @LeonelRc Год назад +1

    I tried to do the same for MacCatalys and the SecureStorage doesn't work

    • @DanielHindrikes
      @DanielHindrikes  Год назад

      Do you have entitlements?

    • @LeonelRc
      @LeonelRc Год назад

      @@DanielHindrikes yes, I did but I'am doing the app is for desktop, I just get this error "Object reference not set to an instance of an object"

  • @radoslavatanasov8846
    @radoslavatanasov8846 2 года назад

    Amazing video!

  • @madraven37
    @madraven37 Год назад

    I use this API, seems that email can't be save here or when I store Large text. I also read the documentation that this is the limitation. I want to use the remember credential on my App and storing the email in SecureStorage is one way of doing that, but because of the limitation, I can't continue with this feature. Do you have any other alternatives than SecureStorage that can store larg text?

    • @DanielHindrikes
      @DanielHindrikes  Год назад +1

      Save the credentials in secure storage and the other data in som other places. I have a video about storing application data and one about LiteDB that you can take a look at.

    • @DanielHindrikes
      @DanielHindrikes  Год назад +2

      .NET MAUI & Storage, Part 3 - Where to save application data
      ruclips.net/video/3xqIXS1SBaU/видео.html

    • @DanielHindrikes
      @DanielHindrikes  Год назад +1

      .NET MAUI - NoSQL with LiteDB
      ruclips.net/video/m03IjT1b2Hs/видео.html

    • @madraven37
      @madraven37 Год назад

      @@DanielHindrikes Thank you sir, much appreciated...

  • @hamzaougui6751
    @hamzaougui6751 8 месяцев назад

    After adding Entitlements.plist file i got error building : could not find any provisioning profiles .. in Visual Studio Windows

    • @DanielHindrikes
      @DanielHindrikes  8 месяцев назад

      If I remember right it is needed when you add Entitlements. Requirement from Apple.

    • @hamzaougui6751
      @hamzaougui6751 8 месяцев назад

      @@DanielHindrikes so i will need apple developer account subscription for this purpose ?

  • @davidbrenchley
    @davidbrenchley 2 года назад

    While secure storage is better than unsecured storage, not data that is transmitted to the device can be considered "secure". It is best to keep as much secure information as possible on the server.

    • @DanielHindrikes
      @DanielHindrikes  2 года назад +2

      It depends on the type of data. Some data you don't want to share with a server. If you need to save passwords for example. Or if you need to save an access token on device. iOS Keychain is the most secure way to store that type on a iOS device.

    • @davidbrenchley
      @davidbrenchley 2 года назад

      @@DanielHindrikes yes there is data that needs to be on the device, but even with iOS keys, it still can't be considered truly secure.

    • @DanielHindrikes
      @DanielHindrikes  2 года назад +4

      What is truly secure?