Discuss this help topic in SecureBlackbox Forum

TElWebDAVClient.AclPrincipalPropSetFirst

TElWebDAVClient     See also     


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


Initiates a DAV:acl-principal-prop-set request.

Declaration

[C#]
    bool AclPrincipalPropSetFirst(ref Object Ctx, string URL, TElWebDAVPropertyInfoList Properties);

[VB.NET]
    Function AclPrincipalPropSetFirst(ByRef Ctx As Object, ByVal URL As String, ByVal Properties As TElWebDAVPropertyInfoList) As Boolean

[Pascal]
    function AclPrincipalPropSetFirst(var Ctx : Pointer; const URL : string; Properties : TElWebDAVPropertyInfoList) : boolean;

[C++]
    bool AclPrincipalPropSetFirst(void * &Ctx, const std::string &URL, TElWebDAVPropertyInfoList &Properties);
    bool AclPrincipalPropSetFirst(void * &Ctx, const std::string &URL, TElWebDAVPropertyInfoList *Properties);

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

[Java]
    not available

Parameters

  • Ctx - the request handle is returned via this parameter. This handle should be passed to AclPrincipalPropSetNext.
  • URL - URL of the resource.
  • Properties - the list initialized with a set of properties for which the values are needed.

Description

    Call this method to request the values of properties of all principals in the DAV:acl property. After the request has been initiated, call AclPrincipalPropSetNext until it returns false, to get the property values for all principals. When information about all principals has been processed, call AclPrincipalPropSetClose.

See also:     AclPrincipalPropSetClose     AclPrincipalPropSetNext    

Discuss this help topic in SecureBlackbox Forum