Aspose.Email.Examples.CSharp.Email.Outlook.AddDisplayReminderToACalendar.Run C# (CSharp) Метод

Run() публичный статический Метод

public static Run ( ) : void
Результат void
        public static void Run()
        {
            // ExStart:AddDisplayReminderToACalendar
            // The path to the File directory.
            string dataDir = RunExamples.GetDataDir_Outlook();

            // Create Appointment 
            Appointment app = new Appointment("Home", DateTime.Now.AddHours(1), DateTime.Now.AddHours(1), "[email protected]", "[email protected]");
            MailMessage msg = new MailMessage();
            msg.AddAlternateView(app.RequestApointment());
            MapiMessage mapi = MapiMessage.FromMailMessage(msg);
            MapiCalendar calendar = (MapiCalendar)mapi.ToMapiMessageItem();

            // Set calendar Properties 
            calendar.ReminderSet= true;
            calendar.ReminderDelta = 45;//45 min before start of event

            string savedFile = (dataDir + "calendarWithDisplayReminder.ics");
            calendar.Save(savedFile, AppointmentSaveFormat.Ics);
            // ExEnd:AddDisplayReminderToACalendar
        }
    }
AddDisplayReminderToACalendar