in FMLab/ConnectorClientApplication/Helper.cs [87:93]
private static AuthenticationHeaderValue ParseAuthenticationHeader(string authenticationHeader)
{
string[] split = authenticationHeader.Split(' ');
string scheme = split[0];
string parameter = split[1];
return new AuthenticationHeaderValue(scheme, parameter);
}