Click or drag to resize

WebDavSessionGetChangesAsync Method

IT Hit WebDAV Classes Reference
Returns a list of changes that correspond to a synchronization request.

Namespace:  ITHit.WebDAV.Client
Assembly:  ITHit.WebDAV.Client (in ITHit.WebDAV.Client.dll) Version: 6.0.4052-Beta
Syntax
public Task<IChanges> GetChangesAsync(
	Uri folder,
	PropertyName[] propNames,
	string syncToken,
	bool deep,
	Nullable<long> limit = null,
	IDictionary<string, string> headers = null,
	CancellationToken cancellationToken = null
)

Parameters

folder
Type: SystemUri
Folder to enumerate children.
propNames
Type: ITHit.WebDAV.ClientPropertyName
Array of properties to retrieve with the children. They will be queried by the engine later.
syncToken
Type: SystemString
The synchronization token provided by the server and returned by the client.
deep
Type: SystemBoolean
Indicates the "scope" of the synchronization report request, false - immediate children and true - all children at any depth.
limit (Optional)
Type: SystemNullableInt64
Limits the number of member URLs in a response.
headers (Optional)
Type: System.Collections.GenericIDictionaryString, String
Request headers.
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
Propagates notification that operations should be canceled.

Return Value

Type: TaskIChanges

[Missing <returns> documentation for "M:ITHit.WebDAV.Client.WebDavSession.GetChangesAsync(System.Uri,ITHit.WebDAV.Client.PropertyName[],System.String,System.Boolean,System.Nullable{System.Int64},System.Collections.Generic.IDictionary{System.String,System.String},System.Threading.CancellationToken)"]

See Also