Uses of Class
microsoft.exchange.webservices.data.core.PropertySet

Packages that use PropertySet
microsoft.exchange.webservices.data.core   
microsoft.exchange.webservices.data.core.request   
microsoft.exchange.webservices.data.core.response   
microsoft.exchange.webservices.data.core.service   
microsoft.exchange.webservices.data.core.service.folder   
microsoft.exchange.webservices.data.core.service.item   
microsoft.exchange.webservices.data.core.service.response   
microsoft.exchange.webservices.data.search   
 

Uses of PropertySet in microsoft.exchange.webservices.data.core
 

Fields in microsoft.exchange.webservices.data.core declared as PropertySet
static PropertySet PropertySet.FirstClassProperties
          The Constant FirstClassProperties.
static PropertySet PropertySet.IdOnly
          The Constant IdOnly.
 

Methods in microsoft.exchange.webservices.data.core that return PropertySet
static PropertySet PropertySet.getFirstClassProperties()
          Returns a predefined property set that includes the first class property of an item or folder.
static PropertySet PropertySet.getIdOnly()
          Returns a predefined property set that only includes the Id property.
static PropertySet PropertySet.getPropertySetFromBasePropertySet(BasePropertySet basePropertySet)
          Implements an implicit conversion between PropertySet and BasePropertySet.
 

Methods in microsoft.exchange.webservices.data.core with parameters of type PropertySet
 IAsyncResult ExchangeService.beginSyncFolderHierarchy(AsyncCallback callback, Object state, FolderId syncFolderId, PropertySet propertySet, String syncState)
          Begins an asynchronous request to synchronize the sub-folder of a specific folder.
 IAsyncResult ExchangeService.beginSyncFolderItems(AsyncCallback callback, Object state, FolderId syncFolderId, PropertySet propertySet, Iterable<ItemId> ignoredItemIds, int maxChangesReturned, SyncFolderItemsScope syncScope, String syncState)
          Begins an asynchronous request to synchronize the item of a specific folder.
<TFolder extends Folder>
TFolder
ExchangeService.bindToFolder(Class<TFolder> cls, FolderId folderId, PropertySet propertySet)
          Binds to folder.
 Folder ExchangeService.bindToFolder(FolderId folderId, PropertySet propertySet)
          Binds to a folder.
<TItem extends Item>
TItem
ExchangeService.bindToItem(Class<TItem> c, ItemId itemId, PropertySet propertySet)
          Bind to item.
 Item ExchangeService.bindToItem(ItemId itemId, PropertySet propertySet)
          Binds to multiple item in a single call to EWS.
 ServiceResponseCollection<GetItemResponse> ExchangeService.bindToItems(Iterable<ItemId> itemIds, PropertySet propertySet)
          Binds to multiple item in a single call to EWS.
 ServiceResponseCollection<ServiceResponse> ExchangeService.internalLoadPropertiesForItems(Iterable<Item> items, PropertySet propertySet, ServiceErrorHandling errorHandling)
          Loads the property of multiple item in a single call to EWS.
 void PropertyBag.loadFromXml(EwsServiceXmlReader reader, boolean clear, PropertySet requestedPropertySet, boolean onlySummaryPropertiesRequested)
          Loads property from XML and inserts them in the bag.
 void ExchangeService.loadPropertiesForFolder(Folder folder, PropertySet propertySet)
          Load specified property for a folder.
 ServiceResponseCollection<ServiceResponse> ExchangeService.loadPropertiesForItems(Iterable<Item> items, PropertySet propertySet)
          Loads the property of multiple item in a single call to EWS.
<TServiceObject extends ServiceObject>
List<TServiceObject>
EwsServiceXmlReader.readServiceObjectsCollectionFromXml(String collectionXmlElementName, IGetObjectInstanceDelegate<ServiceObject> getObjectInstanceDelegate, boolean clearPropertyBag, PropertySet requestedPropertySet, boolean summaryPropertiesOnly)
          Reads the service objects collection from XML.
 NameResolutionCollection ExchangeService.resolveName(String nameToResolve, Iterable<FolderId> parentFolderIds, ResolveNameSearchLocation searchScope, boolean returnContactDetails, PropertySet contactDataPropertySet)
          Finds contacts in the Global Address List and/or in specific contact folder that have names that match the one passed as a parameter.
 NameResolutionCollection ExchangeService.resolveName(String nameToResolve, ResolveNameSearchLocation searchScope, boolean returnContactDetails, PropertySet contactDataPropertySet)
          Finds contacts in the Global Address List that have names that match the one passed as a parameter.
 ChangeCollection<FolderChange> ExchangeService.syncFolderHierarchy(FolderId syncFolderId, PropertySet propertySet, String syncState)
          Synchronizes the sub-folder of a specific folder.
 ChangeCollection<FolderChange> ExchangeService.syncFolderHierarchy(PropertySet propertySet, String syncState)
          Synchronizes the entire folder hierarchy of the mailbox this Service is connected to.
 ChangeCollection<ItemChange> ExchangeService.syncFolderItems(FolderId syncFolderId, PropertySet propertySet, Iterable<ItemId> ignoredItemIds, int maxChangesReturned, SyncFolderItemsScope syncScope, String syncState)
          Synchronizes the item of a specific folder.
 

Uses of PropertySet in microsoft.exchange.webservices.data.core.request
 

Methods in microsoft.exchange.webservices.data.core.request that return PropertySet
 PropertySet ResolveNamesRequest.getContactDataPropertySet()
          Gets or sets the PropertySet for Contact Data
 PropertySet SyncFolderItemsRequest.getPropertySet()
          Gets or sets the property set.
 PropertySet SyncFolderHierarchyRequest.getPropertySet()
          Gets or sets the property set.
 

Methods in microsoft.exchange.webservices.data.core.request with parameters of type PropertySet
 void ResolveNamesRequest.setContactDataPropertySet(PropertySet propertySet)
          Gets or sets the PropertySet for Contact Data

The PropertySet

 void SyncFolderItemsRequest.setPropertySet(PropertySet propertySet)
          Sets the property set.
 void SyncFolderHierarchyRequest.setPropertySet(PropertySet value)
          Sets the property set.
 

Uses of PropertySet in microsoft.exchange.webservices.data.core.response
 

Constructors in microsoft.exchange.webservices.data.core.response with parameters of type PropertySet
FindFolderResponse(PropertySet propertySet)
          Initializes a new instance of the FindFolderResponse class.
FindItemResponse(boolean isGrouped, PropertySet propertySet)
          Initializes a new instance of the FindItemResponse class.
GetFolderResponse(Folder folder, PropertySet propertySet)
          Initializes a new instance of the GetFolderResponse class.
GetItemResponse(Item item, PropertySet propertySet)
          Initializes a new instance of the class.
SyncFolderHierarchyResponse(PropertySet propertySet)
          Represents the response to a folder synchronization operation.
SyncFolderItemsResponse(PropertySet propertySet)
          Initializes a new instance of the class.
SyncResponse(PropertySet propertySet)
          Initializes a new instance of the class.
 

Uses of PropertySet in microsoft.exchange.webservices.data.core.service
 

Methods in microsoft.exchange.webservices.data.core.service with parameters of type PropertySet
protected abstract  void ServiceObject.internalLoad(PropertySet propertySet)
          Internal load.
 void ServiceObject.load(PropertySet propertySet)
          Load.
 void ServiceObject.loadFromXml(EwsServiceXmlReader reader, boolean clearPropertyBag, PropertySet requestedPropertySet, boolean summaryPropertiesOnly)
          Load from xml.
 

Uses of PropertySet in microsoft.exchange.webservices.data.core.service.folder
 

Methods in microsoft.exchange.webservices.data.core.service.folder with parameters of type PropertySet
static TasksFolder TasksFolder.bind(ExchangeService service, FolderId id, PropertySet propertySet)
          Binds to an existing tasks folder and loads the specified set of property.
static SearchFolder SearchFolder.bind(ExchangeService service, FolderId id, PropertySet propertySet)
          Binds to an existing search folder and loads the specified set of property.
static Folder Folder.bind(ExchangeService service, FolderId id, PropertySet propertySet)
          Binds to an existing folder, whatever its actual type is, and loads the specified set of property.
static ContactsFolder ContactsFolder.bind(ExchangeService service, FolderId id, PropertySet propertySet)
          Binds to an existing contacts folder and loads the specified set of property.
static CalendarFolder CalendarFolder.bind(ExchangeService service, FolderId id, PropertySet propertySet)
          Binds to an existing calendar folder and loads the specified set of property.
static TasksFolder TasksFolder.bind(ExchangeService service, WellKnownFolderName name, PropertySet propertySet)
          Binds to an existing tasks folder and loads specified set of property.
static SearchFolder SearchFolder.bind(ExchangeService service, WellKnownFolderName name, PropertySet propertySet)
          Binds to an existing search folder and loads the specified set of property.
static Folder Folder.bind(ExchangeService service, WellKnownFolderName name, PropertySet propertySet)
          Binds to an existing folder, whatever its actual type is, and loads the specified set of property.
static ContactsFolder ContactsFolder.bind(ExchangeService service, WellKnownFolderName name, PropertySet propertySet)
          Binds to an existing contacts folder and loads the specified set of property.
static CalendarFolder CalendarFolder.bind(ExchangeService service, WellKnownFolderName name, PropertySet propertySet)
          Binds to an existing calendar folder and loads the specified set of property.
protected  void Folder.internalLoad(PropertySet propertySet)
          Loads the specified set of property on the object.
 

Uses of PropertySet in microsoft.exchange.webservices.data.core.service.item
 

Methods in microsoft.exchange.webservices.data.core.service.item with parameters of type PropertySet
static Task Task.bind(ExchangeService service, ItemId id, PropertySet propertySet)
          Binds to an existing task and loads the specified set of property.
static PostItem PostItem.bind(ExchangeService service, ItemId id, PropertySet propertySet)
          Binds to an existing post item and loads the specified set of property.
static MeetingResponse MeetingResponse.bind(ExchangeService service, ItemId id, PropertySet propertySet)
          Binds to an existing meeting response and loads the specified set of property.
static MeetingRequest MeetingRequest.bind(ExchangeService service, ItemId id, PropertySet propertySet)
          Binds to an existing meeting response and loads the specified set of property.
static MeetingMessage MeetingMessage.bind(ExchangeService service, ItemId id, PropertySet propertySet)
          Binds to an existing meeting message and loads the specified set of property.
static MeetingCancellation MeetingCancellation.bind(ExchangeService service, ItemId id, PropertySet propertySet)
          Binds to an existing meeting cancellation message and loads the specified set of property.
static Item Item.bind(ExchangeService service, ItemId id, PropertySet propertySet)
          Binds to an existing item, whatever its actual type is, and loads the specified set of property.
static EmailMessage EmailMessage.bind(ExchangeService service, ItemId id, PropertySet propertySet)
          Binds to an existing e-mail message and loads the specified set of property.Calling this method results in a call to EWS.
static ContactGroup ContactGroup.bind(ExchangeService service, ItemId id, PropertySet propertySet)
          Binds to an existing contact group and loads the specified set of property.Calling this method results in a call to EWS.
static Contact Contact.bind(ExchangeService service, ItemId id, PropertySet propertySet)
          Binds to an existing contact and loads the specified set of property.
static Appointment Appointment.bind(ExchangeService service, ItemId id, PropertySet propertySet)
          Binds to an existing appointment and loads the specified set of property.
static Appointment Appointment.bindToOccurrence(ExchangeService service, ItemId recurringMasterId, int occurenceIndex, PropertySet propertySet)
          Binds to an existing appointment and loads its first class property.
static Appointment Appointment.bindToRecurringMaster(ExchangeService service, ItemId occurrenceId, PropertySet propertySet)
          Binds to the master appointment of a recurring series and loads its first class property.
protected  void Item.internalLoad(PropertySet propertySet)
          The property definition for the Id of this object.
protected  void Conversation.internalLoad(PropertySet propertySet)
          This method is not supported in this object.
 

Uses of PropertySet in microsoft.exchange.webservices.data.core.service.response
 

Methods in microsoft.exchange.webservices.data.core.service.response with parameters of type PropertySet
protected  void SuppressReadReceipt.internalLoad(PropertySet propertySet)
          Loads the specified set of property on the object.
protected  void ResponseObject.internalLoad(PropertySet propertySet)
          Loads the specified set of property on the object.
protected  void RemoveFromCalendar.internalLoad(PropertySet propertySet)
          Loads the specified set of property on the object.
protected  void PostReply.internalLoad(PropertySet propertySet)
          Loads the specified set of property on the object.
 

Uses of PropertySet in microsoft.exchange.webservices.data.search
 

Methods in microsoft.exchange.webservices.data.search that return PropertySet
 PropertySet ViewBase.getPropertySet()
          Gets the property set.
 PropertySet ViewBase.getPropertySetOrDefault()
          Gets the property set or the default.
 

Methods in microsoft.exchange.webservices.data.search with parameters of type PropertySet
 void ViewBase.setPropertySet(PropertySet propertySet)
          Sets the property set.
 



Copyright © 2012–2015 Microsoft. All rights reserved.