IContentContentLength Property
IT Hit WebDAV Classes Reference
Gets the size of the file content in bytes.
Namespace:
ITHit.Server
Assembly:
ITHit.Server (in ITHit.Server.dll) Version: 13.3.13068
Syntax long ContentLength { get; }
ReadOnly Property ContentLength As Long
Get
property long long ContentLength {
long long get ();
}
abstract ContentLength : int64 with get
Property Value
Type:
Int64Length of the file content in bytes.
Remarks A value of this property is used when listing folder content (in PROPFIND request) as well as when reading file content (in GET request and HEAD requests).
A value returned by this property must exacly match the ammount of bytes returned by method. Otherwise the file content will be truncated or the GET request will never finish writing output.
Examples The code below is part of 'WebDAVServer.FileSystemStorage.AspNet' C# & VB samples provided with the SDK.
public long ContentLength
{
get { return fileInfo.Length; }
}
Public ReadOnly Property ContentLength As Long Implements IContent.ContentLength
Get
Return fileInfo.Length
End Get
End Property
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