FHIR Chat · ConditionalCreate never sets If-Match header · dotnet

Stream: dotnet

Topic: ConditionalCreate never sets If-Match header


view this post on Zulip Theo Stolker (Jun 26 2017 at 15:15):

Despite the presence of a boolean flag versionAware in the conditional update request, I never see the "If-Match" header being sent.
The "normal" update does send that header.

            SearchParams condition = new SearchParams();
            condition.Add("identifier", HttpUtility.UrlEncode(BSNSystem) + "|" + BSNValue2);
            Patient curesult = client.Update<Patient>(patient2, condition, true);

Is this a bug, or am I missing something?


Last updated: Apr 12 2022 at 19:14 UTC