PropertyStringValue Property
IT Hit WebDAV Classes Reference
String value of the custom property.
Namespace:
ITHit.WebDAV.Client
Assembly:
ITHit.WebDAV.Client (in ITHit.WebDAV.Client.dll) Version: 6.0.4052-Beta
Syntax public string StringValue { get; set; }
Public Property StringValue As String
Get
Set
public:
property String^ StringValue {
String^ get ();
void set (String^ value);
}
member StringValue : string with get, set
Property Value
Type:
StringRemarks String value of the custom property.
Examples string license = "<?xml version='1.0' encoding='utf...
WebDavSession session = new WebDavSession(license);
session.Credentials = new NetworkCredential("User1", "pwd");
IFile file = await session.GetFileAsync(new Uri("https://server/Library/doc.txt"));
Property[] properties = await file.GetAllPropertiesAsync();
foreach(Property prop in properties)
{
Console.WriteLine(prop.Name.NamespaceUri + ":" + prop.Name.Name + " " + prop.StringValue);
}
See Also