Class: PropertyList

PropertyList Class

Namespace

ITHit.WebDAV.Client
List of WebDAV properties.

Extends

  • Array

Methods

Find(oPropName, bIgnoreCase) → {string|null}

Find
Gets property value found by property name and namespace. Returns null if property with such name does not exist.
Name Type Description
oPropName ITHit.WebDAV.Client.PropertyName Property name to search for.
bIgnoreCase boolean optional Specifies if the search is case sensitive or case insensitive.
Returns:
string | null String representing property value or null if property with such name does not exist.

Has(oPropName, bIgnoreCase) → {boolean}

Has
Returns true if the with the specified property name and namespace exists in property list. Returns false if does not exist.
Name Type Description
oPropName ITHit.WebDAV.Client.PropertyName Property name to search for.
bIgnoreCase boolean optional Specifies if the search is case sensitive or case insensitive.
Returns:
boolean