ItemType.LastModifiedName Property
The LastModifiedName property gets a string value that contains the name of the user who last modified the item.
Namespace: ExchangeWebServices
Assembly: EWS (in EWS.dll)
Syntax
'Declaration
Public Property LastModifiedName As String
Get
Set
'Usage
Dim instance As ItemType
Dim value As String
value = instance.LastModifiedName
instance.LastModifiedName = value
public string LastModifiedName { get; set; }
Property Value
Type: System.String
The LastModifiedName property returns a string value that contains the name of the user who last modified the item.
Remarks
The LastModifiedName 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