Click or drag to resize

IHierarchyItemGetAllProperties Method

IT Hit WebDAV Classes Reference
Retrieves all custom properties exposed by the item.

Namespace:  ITHit.WebDAV.Client
Assembly:  ITHit.WebDAV.Client (in ITHit.WebDAV.Client.dll) Version: 2.0.420.0
Syntax
Property[] GetAllProperties()

Return Value

Type: Property

[Missing <returns> documentation for "M:ITHit.WebDAV.Client.IHierarchyItem.GetAllProperties"]

Exceptions
ExceptionCondition
NotFoundExceptionThis item doesn't exist on the server.
WebDavHttpExceptionServer returned unknown error.
WebDavExceptionUnexpected error occurred.
Remarks
This method returns the array of custom properties exposed by the item.
Examples
string license = "<?xml version='1.0' encoding='utf...
WebDavSession session = new WebDavSession(license);
session.Credentials = new NetworkCredential("User1", "pwd");
IFile file = session.OpenFile(new Uri("https://server/Library/doc.txt"));

Property[] properties = file.GetAllProperties();
foreach(Property prop in properties)
{
   Console.WriteLine(prop.Name.NamespaceUri + ":" + prop.Name.Name + " " + prop.StringValue);
}
See Also