Alexandru Puiu
Alexandru Puiu
I'm trying to use this to download a json document from a rest endpoint (our RavenDB document store) and it doesn't support basic authentication (only NTLM authentication). I can accomplish...
Since LDAP calls are I/O bound, async calls could add a performance benefit under high-load.
The uploader works great while the app is in the foreground, but the uploads fail as soon as the app enters the background on iOS. Here's some additional behavior I...
You can include this: ```csharp private string ComputeSignature(string stringToSign) { var secret = "Webhook Signing Key"; using (var hmac = new HMACSHA256(Encoding.ASCII.GetBytes(secret))) { var signature = hmac.ComputeHash(Encoding.ASCII.GetBytes(stringToSign)); return BitConverter.ToString(signature).Replace("-", "");...