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
)
Public Function GetChangesAsync (
folder As Uri,
propNames As PropertyName(),
syncToken As String,
deep As Boolean,
Optional limit As Nullable(Of Long) = Nothing,
Optional headers As IDictionary(Of String, String) = Nothing,
Optional cancellationToken As CancellationToken = Nothing
) As Task(Of IChanges)
public:
Task<IChanges^>^ GetChangesAsync(
Uri^ folder,
array<PropertyName^>^ propNames,
String^ syncToken,
bool deep,
Nullable<long long> limit = nullptr,
IDictionary<String^, String^>^ headers = nullptr,
CancellationToken cancellationToken = nullptr
)
member GetChangesAsync :
folder : Uri *
propNames : PropertyName[] *
syncToken : string *
deep : bool *
?limit : Nullable<int64> *
?headers : IDictionary<string, string> *
?cancellationToken : CancellationToken
(* Defaults:
let _limit = defaultArg limit null
let _headers = defaultArg headers null
let _cancellationToken = defaultArg cancellationToken null
*)
-> Task<IChanges>
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