TPConfAddin.BackUpAppointment.backUp C# (CSharp) Method

backUp() public static method

备份会议
public static backUp ( string bak_subject, System.DateTime bak_start, System.DateTime bak_end, string bak_location, string bak_resources, string bak_attdences, string bak_body ) : BackUpAppointment
bak_subject string
bak_start System.DateTime
bak_end System.DateTime
bak_location string
bak_resources string
bak_attdences string
bak_body string
return BackUpAppointment
        public static BackUpAppointment backUp(string bak_subject, DateTime bak_start, DateTime bak_end, string bak_location, string bak_resources, string bak_attdences,string bak_body)
        {
            BackUpAppointment app = new BackUpAppointment();
            app.bak_subject = bak_subject;
            app.bak_start = bak_start;
            app.bak_end = bak_end;
            app.bak_location = bak_location;
            app.bak_resources = bak_resources;
            app.bak_attdences = bak_attdences;
            app.bak_body = bak_body;

            app.scheduledEnd = false;
            app.editEnd = false;
            app.editException = false;
            return app;
        }
BackUpAppointment