MeetingInformation = 1 << 3,
MeetingOverview = 1 << 4,
ProgramPresentation = 1 << 5,
SpeakerInformation = 1 << 6,
ContentCustomization = 1 << 7,
All = AssociationMeeting | Location | MeetingDetails | MeetingInformation | MeetingOverview | ProgramPresentation | SpeakerInformation | ContentCustomization | VirtualProgram
public static void Main()
var ap = AgendaPages.All;
Console.WriteLine("All: 0x" + Convert.ToString((int)ap, 2));
ap &= ~(AgendaPages.AssociationMeeting);
Console.WriteLine("All: 0x" + Convert.ToString((int)ap, 2));