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