ItemChangeType.Updates Property
The Updates property gets or sets an array that defines append, set, and delete changes to item properties. This property is required.
Namespace: ExchangeWebServices
Assembly: EWS (in ews.dll)
Syntax
'Declaration
<XmlArrayItemAttribute("AppendToItemField", GetType(AppendToItemFieldType), IsNullable:=False)> _
<XmlArrayItemAttribute("DeleteItemField", GetType(DeleteItemFieldType), IsNullable:=False)> _
<XmlArrayItemAttribute("SetItemField", GetType(SetItemFieldType), IsNullable:=False)> _
Public Property Updates As ItemChangeDescriptionType()
[XmlArrayItemAttribute("AppendToItemField", typeof(AppendToItemFieldType), IsNullable=false)]
[XmlArrayItemAttribute("DeleteItemField", typeof(DeleteItemFieldType), IsNullable=false)]
[XmlArrayItemAttribute("SetItemField", typeof(SetItemFieldType), IsNullable=false)]
public ItemChangeDescriptionType[] Updates { get; set; }
[XmlArrayItemAttribute(L"AppendToItemField", typeof(AppendToItemFieldType), IsNullable=false)]
[XmlArrayItemAttribute(L"DeleteItemField", typeof(DeleteItemFieldType), IsNullable=false)]
[XmlArrayItemAttribute(L"SetItemField", typeof(SetItemFieldType), IsNullable=false)]
public:
property array<ItemChangeDescriptionType^>^ Updates {
array<ItemChangeDescriptionType^>^ get ();
void set (array<ItemChangeDescriptionType^>^ value);
}
/** @property */
public ItemChangeDescriptionType[] get_Updates ()
/** @property */
public void set_Updates (ItemChangeDescriptionType[] value)
public function get Updates () : ItemChangeDescriptionType[]
public function set Updates (value : ItemChangeDescriptionType[])
Property Value
The Updates property returns a ItemChangeDescriptionType array.
Remarks
The updates that are defined by this property are performed on the item that is identified by the ItemId, OccurrenceItemId, or RecurringMasterItemId elements.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
Development Platforms
Windows XP Professional with Service Pack 2 (SP2), Windows Server 2003,
Target Platforms
Windows 98, Windows 2000, Windows 2000 Server, Windows CE, Windows Longhorn, Windows 98 Second Edition, Pocket PC, Smart Phone, Windows Server 2003, Windows XP Professional with Service Pack 2 (SP2)
See Also