Cloud Storage Integrator 2016 .NET Edition
Cloud Storage Integrator 2016 .NET Edition
Questions / Feedback?

SearchResult Event

Fired for each search result.

Syntax

[VB.NET]
Public Event OnSearchResult As OnSearchResultHandler
[C#]
public event OnSearchResultHandler OnSearchResult;

public delegate void OnSearchResultHandler(object sender, DropboxSearchResultEventArgs e);

class DropboxSearchResultEventArgs : EventArgs {
  string Path {get;}
  string Name {get;}
  string Id {get;}
  string ModifiedDate {get;}
  string Revision {get;}
  long Size {get;}
  int ResourceType {get;}
  string MatchType {get;}
}

Remarks

This event fires with information about each resource listed when calling ListResources, GetResourceInfo, and Search.

Path is the absolute path to the resource.

Name is the name of the resource.

Id is the Id of the resource.

ModifiedDate is the modified date of the resource.

Revision is the revision of the file.

Size is the size of the file in bytes.

ResourceType indicates whether the resource is a file or folder. Possible value are:

0File
1Folder

MatchType

Indicates how the match was made. Possible values are:

0Filename matched
1Content matched
2Filename and Content matched

 
 
Copyright (c) 2019 /n software inc. - All rights reserved.
Cloud Storage Integrator 2016 .NET Edition - Version 16.0 [Build 7239]