Namespace: ITHit.WebDAV.Client
Task<Property[]> GetPropertyValuesAsync( PropertyName[] names, IDictionary<string, string> headers = null, CancellationToken cancellationToken = null )
[Missing <param name="names"/> documentation for "M:ITHit.WebDAV.Client.IHierarchyItem.GetPropertyValuesAsync(ITHit.WebDAV.Client.PropertyName[],System.Collections.Generic.IDictionary{System.String,System.String},System.Threading.CancellationToken)"]
Exception | Condition |
---|---|
NotFoundException | This item doesn't exist on the server. |
PropertyForbiddenException | User has not enough rights to obtain one of requested properties. |
PropertyNotFoundException | If one of requested properties was not found. |
PropertyException | Server returned unknown error for specific property. |
WebDavHttpException | Server returned unknown error. |
WebDavException | Unexpected error occurred. |
string license = "<?xml version='1.0' encoding='utf... WebDavSession session = new WebDavSession(license); session.Credentials = new NetworkCredential("User1", "pwd", "DOMAIN"); IHierarchyItem item = await session.GetFileAsync(new Uri("https://server/Library/doc.txt")); PropertyName[] propNames = new PropertyName[2]; propNames[0] = new PropertyName("ManagerApproved", "Sales"); propNames[1] = new PropertyName("Branch", "Sales"); Property[] properties = await item.GetPropertyValuesAsync(propNames); foreach(Property prop in properties) { Console.WriteLine(prop.Name.NamespaceUri + ":" + prop.Name.Name + " " + prop.StringValue); }