Appointment.Bind 方法

定义

重载

Bind(ExchangeService, ItemId)

绑定到现有约会并加载其第一类属性。 调用此方法会导致调用 Exchange Web Services (EWS) 。

Bind(ExchangeService, ItemId, PropertySet)

绑定到现有约会并加载指定的属性集。 调用此方法会导致调用 Exchange Web Services (EWS) 。

Bind(ExchangeService, ItemId)

绑定到现有约会并加载其第一类属性。 调用此方法会导致调用 Exchange Web Services (EWS) 。

public:
 static Microsoft::Exchange::WebServices::Data::Appointment ^ Bind(Microsoft::Exchange::WebServices::Data::ExchangeService ^ service, Microsoft::Exchange::WebServices::Data::ItemId ^ id);
public static Microsoft.Exchange.WebServices.Data.Appointment Bind (Microsoft.Exchange.WebServices.Data.ExchangeService service, Microsoft.Exchange.WebServices.Data.ItemId id);
Public Shared Function Bind (service As ExchangeService, id As ItemId) As Appointment

参数

service
ExchangeService

用于绑定到约会的服务。

id
ItemId

要绑定到的约会的标识符。

返回

表示 Appointment 与指定 ID 对应的约会的实例。

例外

在特定情况下,此方法可以生成类似于以下的异常:System.ArgumentNullException: 值不能为 null。参数名称:id At System.TimeZoneInfo.FindSystemTimeZoneById (字符串 id) ...如果以下所有条件均为 true,则可能会发生这种情况:在 ExchangeService 参数中service传递的对象是在 参数中使用 requestedServerVersionExchange2007_SP1创建的。MeetingTimeZoneTimeZoneName 属性。如果遇到此异常,可以通过启用跟踪请求和响应来验证 TimeZoneName 属性的缺失。ExchangeServiceExchange2010requestedServerVersionPropertySet指定不包含 StartTimeZoneStartTimeZone 属性的对象。

适用于

Bind(ExchangeService, ItemId, PropertySet)

绑定到现有约会并加载指定的属性集。 调用此方法会导致调用 Exchange Web Services (EWS) 。

public:
 static Microsoft::Exchange::WebServices::Data::Appointment ^ Bind(Microsoft::Exchange::WebServices::Data::ExchangeService ^ service, Microsoft::Exchange::WebServices::Data::ItemId ^ id, Microsoft::Exchange::WebServices::Data::PropertySet ^ propertySet);
public static Microsoft.Exchange.WebServices.Data.Appointment Bind (Microsoft.Exchange.WebServices.Data.ExchangeService service, Microsoft.Exchange.WebServices.Data.ItemId id, Microsoft.Exchange.WebServices.Data.PropertySet propertySet);

参数

service
ExchangeService

用于绑定到约会的服务。

id
ItemId

要绑定到的约会的标识符。

propertySet
PropertySet

要加载的属性集。

返回

表示 Appointment 与指定 ID 对应的约会的实例。

例外

有关此异常的详细信息,请参阅 Bind(ExchangeService, ItemId)

适用于