Ews.GetItemInfoAsync Method
Namespace: Rebex.Net
Assembly: Rebex.Ews.dll (version 7.0.9119)
GetItemInfoAsync(EwsItemId, Object)
Begins asynchronous GetItemInfo operation. Gets the information about an item with default set of properties retrieved.
Declaration
public Task<EwsItemInfo> GetItemInfoAsync(EwsItemId itemId, object state = null)
Parameters
| Type | Name | Description | 
|---|---|---|
| EwsItemId | itemId | ID of an item to get info about.  | 
    
| Object | state | An optional user-provided object that identifies this particular asynchronous operation.  | 
    
Returns
| Type | Description | 
|---|---|
| Task<EwsItemInfo> | EwsItemInfo object containing default set of information about the item.  | 
    
GetItemInfoAsync(EwsItemId, EwsItemFields, Object)
Begins asynchronous GetItemInfo operation. Gets the information about an item with specified set of properties retrieved.
Declaration
public Task<EwsItemInfo> GetItemInfoAsync(EwsItemId itemId, EwsItemFields fields, object state = null)
Parameters
| Type | Name | Description | 
|---|---|---|
| EwsItemId | itemId | ID of an item to get info about.  | 
    
| EwsItemFields | fields | Set of item properties to be retrieved.  | 
    
| Object | state | An optional user-provided object that identifies this particular asynchronous operation.  | 
    
Returns
| Type | Description | 
|---|---|
| Task<EwsItemInfo> | EwsItemInfo object containing specified set of information about the item.  |