Discuss this help topic in SecureBlackbox Forum

TElWebDAVClient.PrincipalPropertySearchNext

TElWebDAVClient     See also     


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


Returns next principal matching the specified property values.

Declaration

[C#]
    bool PrincipalPropertySearchNext(Object Ctx, TElWebDAVPropertyInfoList Properties);

[VB.NET]
    Function PrincipalPropertySearchNext(ByVal Ctx As Object, ByVal Properties As TElWebDAVPropertyInfoList) As Boolean

[Pascal]
    function PrincipalPropertySearchNext(Ctx : Pointer; Properties : TElWebDAVPropertyInfoList) : boolean;

[C++]
    bool PrincipalPropertySearchNext(void * Ctx, TElWebDAVPropertyInfoList &Properties);
    bool PrincipalPropertySearchNext(void * Ctx, TElWebDAVPropertyInfoList *Properties);

[PHP]
    bool PrincipalPropertySearchNext(TSBPointer|array of byte|string|NULL $Ctx, TElWebDAVPropertyInfoList $Properties)

[Java]
    not available

Parameters

  • Ctx - the search handle returned by PrincipalPropertySearchFirst.
  • Properties - properties which need to be returned for the matching principals.

Description

    Use this method to obtain the information about next matching principal. This method should be called after PrincipalPropertySearchFirst, as many times as needed, or until it returns false.

Discuss this help topic in SecureBlackbox Forum