ItemType.LastModifiedTime Property
The LastModifiedTime property gets an instance of the DateTime structure that represents the date and time that the item was last modified.
Namespace: ExchangeWebServices
Assembly: EWS (in EWS.dll)
Syntax
'Declaration
Public Property LastModifiedTime As DateTime
Get
Set
'Usage
Dim instance As ItemType
Dim value As DateTime
value = instance.LastModifiedTime
instance.LastModifiedTime = value
public DateTime LastModifiedTime { get; set; }
Property Value
Type: System.DateTime
The LastModifiedTime property returns an instance of the DateTime structure that represents the date and time that the item was last modified.
Remarks
The LastModifiedTime property signature is incorrect because it suggests that this property is settable. The setter property is an artifact of the fact that the auto-generated proxy generator does not have the context to account for the server business logic, which does not allow this property to be set.
See Also