Exemple #1
0
 /// <summary>
 /// Binds to an existing post item and loads the specified set of properties.
 /// Calling this method results in a call to EWS.
 /// </summary>
 /// <param name="service">The service to use to bind to the post item.</param>
 /// <param name="id">The Id of the post item to bind to.</param>
 /// <param name="propertySet">The set of properties to load.</param>
 /// <returns>An PostItem instance representing the post item corresponding to the specified Id.</returns>
 static new PostItem Bind(
     ExchangeService service,
     ItemId id,
     PropertySet propertySet)
 {
     return(service.BindToItemGeneric <PostItem>(id, propertySet));
 }