PropertyName Class

IT Hit WebDAV for .NET

WebDAV property name.

For a list of all members of this type, see PropertyName Members.

System.Object
   ITHit.WebDAV.Client.PropertyName

[Visual Basic]
NotInheritable Public Class PropertyName
[C#]
public sealed class PropertyName

Thread Safety

Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

Remarks

Represents WebDAV item custom property name.

Example

 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);
 }
 

Requirements

Namespace: ITHit.WebDAV.Client

Assembly: ITHit.WebDAV.Client (in ITHit.WebDAV.Client.dll)

See Also

PropertyName Members | ITHit.WebDAV.Client Namespace