IHierarchyItemBaseAsyncPath Property
IT Hit WebDAV Classes Reference
Unique item path in the repository relative to storage root.
Namespace:
ITHit.Server
Assembly:
ITHit.Server (in ITHit.Server.dll) Version: 11.3.10719
Syntax string Path { get; }
string Path { get; }
ReadOnly Property Path As String
Get
ReadOnly Property Path As String
Get
property String^ Path {
String^ get ();
}
property String^ Path {
String^ get ();
}
abstract Path : string with get
abstract Path : string with get
Property Value
Type:
StringString representing relative item path in the repository.
Remarks
The URL returned by this property is relative to storage root.
If your server root is located at http://example.webdavsystem.com:8080/myserver/ and the item URL is
http://example.webdavsystem.com:8080/myserver/myfolder/myitem.doc this property implementation must
return myfolder/myitem.doc. To calculate the entire item URL the engine will
call ApplicationPath property and attach it to url returned by
Path property.
Examples:
- File: myfolder/my%20doc.docx
- Folder: myfolder/folder/
- History item: myfolder/mydoc.docx?history
- Version: myfolder/mydoc.docx?version=5
Examples The code below is part of 'WebDAVServer.FileSystemStorage.AspNet' C# & VB samples provided with the SDK.
public string Path { get; private set; }
Public Property Path As String Implements IHierarchyItemBaseAsync.Path
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also