IContentEtag Property
IT Hit WebDAV Classes Reference
Gets entity tag - string that identifies current state of resource's content.
Namespace:
ITHit.Server
Assembly:
ITHit.Server (in ITHit.Server.dll) Version: 13.3.13068
Syntax ReadOnly Property Etag As String
Get
property String^ Etag {
String^ get ();
}
abstract Etag : string with get
Property Value
Type:
StringRemarks
This property shall return different value if content changes. Typically you will return either file content cheksum or hash or counter which increases with every modification.
Change ETag every time a file content is updated in WriteAsync(Stream, String, Int64, Int64) method, together with a modification date. Do NOT change ETag when locking/unlocking a file.
Return null to indicate that server doesn't support ETags. Note that many client applications, including Microsoft Office, require ETag for correct functioning.
More information about ETags could be found here: http://en.wikipedia.org/wiki/HTTP_ETag.
Examples The code below is part of 'WebDAVServer.FileSystemStorage.AspNet' C# & VB samples provided with the SDK.
public string Etag
{
get { return string.Format("{0}-{1}", Modified.ToBinary(), this.serialNumber); }
}
Public ReadOnly Property Etag As String Implements IContent.Etag
Get
Return String.Format("{0}-{1}", Modified.ToBinary(), Me.serialNumber)
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