IsPropertyLoaded method
Determines whether specified property is loaded. This also includes
properties that were requested when the property bag was loaded but
were not returned by the server. In this case, the property value
will be null.
The property definition.
Implementation
bool IsPropertyLoaded(PropertyDefinition propertyDefinition) {
// Is the property loaded?
if (this._loadedProperties.contains(propertyDefinition)) {
return true;
} else {
// Was the property requested?
return this._IsRequestedProperty(propertyDefinition);
}
}