Discuss this help topic in SecureBlackbox Forum

TElOneDriveDataStorage.Search

TElOneDriveDataStorage     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Performs search in OneDrive.

Declaration

[C#]
    void Search(string Query, TElDataStorageObjectList Objects);

[VB.NET]
    Sub Search(ByVal Query As String, ByVal Objects As TElDataStorageObjectList)

[Pascal]
    procedure Search(const Query: string; Objects: TElDataStorageObjectList);

[C++]
    void Search(const std::string &Query, TElDataStorageObjectList &Objects);
    void Search(const std::string &Query, TElDataStorageObjectList *Objects);

[PHP]
    void Search(string $Query, TElDataStorageObjectList $Objects)

[Java]
    void search(String Query, TElDataStorageObjectList Objects);

Parameters

  • Query - the search query which is sent to the OneDrive.
  • Objects - the list of objects returned by OneDrive as a result.

Description

    Use this method to perform search in the remote storage.

See also:     List    

Discuss this help topic in SecureBlackbox Forum