Discuss this help topic in SecureBlackbox Forum

TElWebDAVPrincipalBackend.GetGroupMemberSet

TElWebDAVPrincipalBackend     See also     


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


Fetches the list of the specified group members.

Declaration

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

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

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

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

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

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

Parameters

  • URL - URL of the group for which the members are requested.
  • List - returns the list of URLs of this group's members.

Return value

    Returns true is the operation completed successfully, and false otherwise.

Description

    Use this method to fetch all members of the given group.

See also:     GetGroupMembership    

Discuss this help topic in SecureBlackbox Forum