Discuss this help topic in SecureBlackbox Forum

TElWebDAVPrincipalBackend.GetPrincipalCollectionSet

TElWebDAVPrincipalBackend     See also     


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


Returns principal-collection-set for the given resource.

Declaration

[C#]
    bool GetPrincipalCollectionSet(string URL, TElStringList List);

[VB.NET]
    Function GetPrincipalCollectionSet(ByVal URL As String, ByVal List As TElStringList) As Boolean

[Pascal]
    function GetPrincipalCollectionSet(const URL : string; List : TElStringList) : boolean; virtual;

[C++]
    bool GetPrincipalCollectionSet(const std::string &URL, TElStringList &List);
    bool GetPrincipalCollectionSet(const std::string &URL, TElStringList *List);

[PHP]
    bool GetPrincipalCollectionSet(string $URL, TElStringList $List)

[Java]
    boolean getPrincipalCollectionSet(String URL, TElStringList List);

Parameters

  • URL - specifies the URL of the resource under question.
  • List - contains the URLs of the root collections that contain the principals that are available on the server that implements this resource.

Return value

    Returns true is the operation completed successfully.

Description

    This method returns, via its List parameter, a set of URLs that identify the root collections that contain the principals that are available on the server that implements the resource specified by the URL parameter.

Discuss this help topic in SecureBlackbox Forum