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 ) { VisitData visitdata = Tracker.Current.Interaction.ToVisitData(); Dictionary< string , ProfileData> data = visitdata.Profiles; if (data.Any()) { foreach (KeyValuePair< string , ProfileData> profileCollections in data) { List&