Discuss this help topic in SecureBlackbox Forum

TElWebDAVPrincipalBackend.GetGroupMembership

TElWebDAVPrincipalBackend     See also     


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


Checks the membership of this group.

Declaration

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

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

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

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

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

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

Parameters

  • URL - URL of the group under question.
  • List - the list of groups which this group is a member of.

Return value

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

Description

    If given group is a member of any other groups, this method returns the list of those groups via the List parameter.

See also:     GetGroupMemberSet    

Discuss this help topic in SecureBlackbox Forum