Size property
int?
get
Size
Implementation
int? get Size {
EwsUtilities.ValidatePropertyVersion(
this._service, ExchangeVersion.Exchange2010, "Size");
return this._size;
}
set
Size
(int? value)
Implementation
set Size(int? value) {
EwsUtilities.ValidatePropertyVersion(
this._service, ExchangeVersion.Exchange2010, "Size");
if (CanSetFieldValue(this._size, value)) {
this._size = value;
this.Changed();
}
}