ExtendedPropertyCollection class

Represents a collection of extended properties.
Inheritance
Implemented types
Available Extensions

Properties

AddedItems List<ExtendedProperty>
Gets the added items.
no setterinherited
Count int
Gets the total number of properties in the collection.
no setterinherited
first ExtendedProperty
The first element.
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
isEmpty bool
Whether this collection has no elements.
no setterinherited
isNotEmpty bool
Whether this collection has at least one element.
no setterinherited
Items List<ExtendedProperty>
Gets the items.
no setterinherited
iterator Iterator<ExtendedProperty>
Gets an enumerator that iterates through the elements of the collection.
no setterinherited
last ExtendedProperty
The last element.
no setterinherited
length int
The number of elements in this.
no setterinherited
ModifiedItems List<ExtendedProperty>
Gets the modified items.
no setterinherited
Namespace XmlNamespace
Gets or sets the namespace.
getter/setter pairinherited
OnChangeList List<IComplexPropertyChangedDelegate>
Occurs when property changed.
getter/setter pairinherited
RemovedItems List<ExtendedProperty?>
Gets the removed items.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
single ExtendedProperty
Checks that this iterable has only one element, and returns that element.
no setterinherited

Methods

addOnChangeEvent(IComplexPropertyChangedDelegate change) → void
inherited
any(bool test(ExtendedProperty element)) bool
Checks whether any element of this iterable satisfies test.
inherited
CanSetFieldValue<T>(T field, T value) bool
Sets value of field.
inherited
cast<R>() Iterable<R>
A view of this iterable as an iterable of R instances.
inherited
Changed() → dynamic
Instance was changed.
inherited
ClearChangeLog() → void
Clears the change log.
inherited
Contains(ExtendedProperty complexProperty) bool
Determines whether a specific property is in the collection.
inherited
contains(Object? element) bool
Whether the collection contains an element equal to element.
inherited
CreateComplexProperty(String xmlElementName) ExtendedProperty
Creates the complex property.
override
elementAt(int index) ExtendedProperty
Returns the indexth element.
inherited
every(bool test(ExtendedProperty element)) bool
Checks whether every element of this iterable satisfies test.
inherited
expand<T>(Iterable<T> toElements(ExtendedProperty element)) Iterable<T>
Expands each element of this Iterable into zero or more elements.
inherited
firstWhere(bool test(ExtendedProperty element), {ExtendedProperty orElse()?}) ExtendedProperty
The first element that satisfies the given predicate test.
inherited
fold<T>(T initialValue, T combine(T previousValue, ExtendedProperty element)) → T
Reduces a collection to a single value by iteratively combining each element of the collection with an existing value
inherited
followedBy(Iterable<ExtendedProperty> other) Iterable<ExtendedProperty>
Creates the lazy concatenation of this iterable and other.
inherited
forEach(void action(ExtendedProperty element)) → void
Invokes action on each element of this iterable in iteration order.
inherited
GetCollectionItemXmlElementName(ExtendedProperty complexProperty) String?
Gets the name of the collection item XML element.
override
IndexOf(ExtendedProperty complexProperty) int
Searches for a specific property and return its zero-based index within the collection.
inherited
InternalAdd(ExtendedProperty complexProperty, [bool loading = false]) → void
Add complex property.
inherited
InternalClear() → void
Clear collection.
inherited
InternalRemove(ExtendedProperty? complexProperty) bool
Remove specified complex property.
inherited
InternalRemoveAt(int index) → void
Remote entry at index.
inherited
InternalValidate() → void
Validates this instance.
inherited
ItemChanged(ComplexProperty complexProperty) → void
Item changed.
inherited
join([String separator = ""]) String
Converts each element to a String and concatenates the strings.
inherited
lastWhere(bool test(ExtendedProperty element), {ExtendedProperty orElse()?}) ExtendedProperty
The last element that satisfies the given predicate test.
inherited
LoadFromXml(EwsServiceXmlReader reader, String? localElementName) Future<void>
Loads from XML.
override
LoadFromXmlWithNamespace(EwsServiceXmlReader reader, XmlNamespace xmlNamespace, String? localElementName) Future<void>
Loads from XML.
inherited
map<T>(T toElement(ExtendedProperty e)) Iterable<T>
The current elements of this iterable modified by toElement.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
ReadAttributesFromXml(EwsServiceXmlReader reader) → void
Reads the attributes from XML.
inherited
ReadTextValueFromXml(EwsServiceXmlReader reader) Future<void>
Reads the text value from XML.
inherited
reduce(ExtendedProperty combine(ExtendedProperty value, ExtendedProperty element)) ExtendedProperty
Reduces a collection to a single value by iteratively combining elements of the collection using the provided function.
inherited
removeChangeEvent(IComplexPropertyChangedDelegate change) → void
inherited
RemoveExtendedProperty(ExtendedPropertyDefinition propertyDefinition) bool
Removes a specific extended property definition from the collection.
RemoveFromChangeLog(ExtendedProperty? complexProperty) → void
Removes from change log.
inherited
SetExtendedProperty(ExtendedPropertyDefinition propertyDefinition, Object value) → void
Sets an extended property.
ShouldWriteToRequest() bool
Determine whether we should write collection to XML or not.
inherited
singleWhere(bool test(ExtendedProperty element), {ExtendedProperty orElse()?}) ExtendedProperty
The single element that satisfies test.
inherited
skip(int count) Iterable<ExtendedProperty>
Creates an Iterable that provides all but the first count elements.
inherited
skipWhile(bool test(ExtendedProperty value)) Iterable<ExtendedProperty>
Creates an Iterable that skips leading elements while test is satisfied.
inherited
take(int count) Iterable<ExtendedProperty>
Creates a lazy iterable of the count first elements of this iterable.
inherited
takeWhile(bool test(ExtendedProperty value)) Iterable<ExtendedProperty>
Creates a lazy iterable of the leading elements satisfying test.
inherited
toList({bool growable = true}) List<ExtendedProperty>
Creates a List containing the elements of this Iterable.
inherited
toSet() Set<ExtendedProperty>
Creates a Set containing the same elements as this iterable.
inherited
toString() String
Returns a string representation of (some of) the elements of this.
inherited
TryGetValue<T>(ExtendedPropertyDefinition propertyDefinition, OutParam<T> propertyValueOut) bool
Tries to get property value.
TryReadElementFromXml(EwsServiceXmlReader reader) Future<bool>
Tries to read element from XML.
inherited
TryReadElementFromXmlToPatch(EwsServiceXmlReader reader) Future<bool>
Tries to read element from XML to patch this property.
inherited
UpdateFromXml(EwsServiceXmlReader reader, String xmlElementName) Future<void>
Loads from XML to update this property.
inherited
UpdateFromXmlWithNamespace(EwsServiceXmlReader reader, XmlNamespace xmlNamespace, String xmlElementName) Future<void>
Loads from XML to update itself.
inherited
Validate() → void
Implements ISelfValidate.Validate. Validates this instance.
inherited
where(bool test(ExtendedProperty element)) Iterable<ExtendedProperty>
Creates a new lazy Iterable with all elements that satisfy the predicate test.
inherited
whereType<T>() Iterable<T>
Creates a new lazy Iterable with all elements that have type T.
inherited
WriteAttributesToXml(EwsServiceXmlWriter writer) → void
Writes the attributes to XML.
inherited
WriteDeleteUpdateToXml(EwsServiceXmlWriter writer, ServiceObject? ewsObject) bool
Writes the deletion update to XML.
override
WriteElementsToXml(EwsServiceXmlWriter writer) → void
Writes elements to XML.
inherited
WriteSetUpdateToXml(EwsServiceXmlWriter writer, ServiceObject? ewsObject, PropertyDefinition propertyDefinition) bool
Writes the update to XML.
override
WriteToXml(EwsServiceXmlWriter writer, String? xmlElementName) → void
Writes to XML.
override
WriteToXmlWithNamespace(EwsServiceXmlWriter writer, XmlNamespace xmlNamespace, String? xmlElementName) → void
Writes to XML.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited
operator [](int index) ExtendedProperty
Gets the property at the specified index.
inherited