Appointment constructor

Appointment(
  1. ExchangeService service
)
Initializes an unsaved local instance of The ExchangeService instance to which this appointmtnt is bound.

Implementation

Appointment(ExchangeService service) : super(service) {
  // If we're running against Exchange 2007, we need to explicitly preset
  // the StartTimeZone property since Exchange 2007 will otherwise scope
  // start and end to UTC.
  if (service.RequestedServerVersion == ExchangeVersion.Exchange2007_SP1) {
    // TODO : repair time zone
//                this.StartTimeZone = service.TimeZone;
  }
}