Nivot.SignalR.Client.Net35
Nivot.SignalR.Client.Net35 copied to clipboard
Enum.HasFlag extension returns the wrong value
You're lacking the actual flag comparison in your method. You should replace NET35Shims.cs#L50 with
ulong num = Convert.ToUInt64(value);
return ((Convert.ToUInt64(enumerated) & num) == num);
facepalm