PropertyBag constructor

PropertyBag(
  1. ServiceObject owner
)
Initializes a new instance of PropertyBag. The owner of the bag.

Implementation

PropertyBag(ServiceObject owner) {
  EwsUtilities.Assert(owner != null, "PropertyBag.ctor", "owner is null");

  this._owner = owner;
}