Sitecore Live Profile access programmatically
To access on going contact triggered Profile without waiting till session end. public class ProfileScoreAndPointsList { public ID ProfileID { get ; set ; } public string ProfileKeyName { get ; set ; } public double ProfileKeyScore { get ; set ; } } public Dictionary<ID, List<ProfileScoreAndPointsList>> GetTrackerInteractionProfiles() { Dictionary<ID, List<ProfileScoreAndPointsList>> allcategoryProfiles = new Dictionary<ID, List<ProfileScoreAndPointsList>>(); if (Tracker.Current?.Interaction != null ) { ...