Hi,
Since 5.14 whenever we retrieve the session, the propertynames which belong to AuthUserSession have become PascalCased, the props belonging to our custom session remain camelCased.
This appears to be changing the serialisation behaviour
Indeed on our custom session, changing
[DataMember]
public string Prop1 {get; set;}
to
[DataMember(Name = nameof(Prop1)]
public string Prop1 {get; set;}
has the same effect. Any ideas?