InternalLoad method

  1. @override
Future<void> InternalLoad(
  1. PropertySet propertySet
)
override
Loads the specified set of properties on the object. The properties to load.

Implementation

@override
Future<void> InternalLoad(PropertySet propertySet) {
  this.ThrowIfThisIsNew();
  this.ThrowIfThisIsAttachment();

  return this.Service.InternalLoadPropertiesForItems(
      [this], propertySet, ServiceErrorHandling.ThrowOnError);
}