String value of the custom property.
String value of the custom property.
string license = "<?xml version='1.0' encoding='utf...
WebDavSession session = new WebDavSession(license);
session.Credentials = new NetworkCredential("User1", "pwd");
IResource resource = session.OpenResource(new Uri("https://server/Library/doc.txt"));
Property[] properties = resource.GetAllProperties();
foreach(Property prop in properties)
{
Console.WriteLine(prop.Name.NamespaceUri + ":" + prop.Name.Name + " " + prop.StringValue);
}
Property Class | ITHit.WebDAV.Client Namespace