/// <summary>
 ///     Standard constructor
 /// </summary>
 public WebDavProperty()
 {
     Namespace = string.Empty;
     Name = string.Empty;
     Value = string.Empty;
     Extended = "";
     StoreItemType = StoreItemTypeFlag.Any;
 }
 /// <summary>
 ///     Constructor for the WebDAVProperty class with "DAV:" as namespace
 /// </summary>
 /// <param name="name">The name of the WebDAV property</param>
 /// <param name="value">The value of the WebDAV property</param>
 /// <param name="type"></param>
 public WebDavProperty(string name, string value, StoreItemTypeFlag? type = null)
 {
     Name = name;
     Value = value;
     Namespace = "DAV:";
     Extended = "";
     StoreItemType = type ?? StoreItemTypeFlag.Any;
 }
 public WebDavProperty(string name, string value, string ns, string extended, StoreItemTypeFlag? type = null)
 {
     Name = name;
     Value = value;
     Namespace = ns;
     Extended = extended;
     StoreItemType = type ?? StoreItemTypeFlag.Any;
 }