I am working on implementing a Credential Provider in C#.
I have downloaded the V2 Credential Provider sample in C++, which is for Windows 8, and managed to make it work on my Windows 10 PC. I also looked into this credential provider implementation in .NET https://github.com/SteveSyfuhs/CredProvider.NET, but this is for the CredUI scenario.
I have managed to make my credential provider to be displayed under "Sign-in options" of a user's tile, but now I would like to implement the login part.
I have to implement the GetSerialization method for the Logon/Unlock scenario. In the C++ sample this is already implemented, but I have troubles "translating" it into C# code, since I am not familiar with C++.
Does anyone know where I could find a working implementation of this method in C# for the Logon/Unlock scenario? Any help would be very appreciated.