Validate method

  1. @override
void Validate()
override
Gets a value indicating whether the TimeZoneContext SOAP header should be emitted. Validate the request.

Implementation

//@override
//        bool EmitTimeZoneHeader
//        {
//            get
//            {
//                for (TServiceObject serviceObject in this.Items)
//                {
//                    if (serviceObject.GetIsTimeZoneHeaderRequired(false /* isUpdateOperation */))
//                    {
//                        return true;
//                    }
//                }
//
//                return false;
//            }
//        }

/// <summary>
/// Validate the request.
/// </summary>
@override
void Validate() {
  super.Validate();

  EwsUtilities.ValidateParam(this.Items, "Items");
}