Discuss this help topic in SecureBlackbox Forum

TElWebDAVPrincipalBackend.AddPrincipal

TElWebDAVPrincipalBackend     See also     


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


Adds a principal to be managed by this backend object.

Declaration

[C#]
    long AddPrincipal(TElWebDAVPrincipal Principal);

[VB.NET]
    Function AddPrincipal(ByVal Principal As TElWebDAVPrincipal) As Long

[Pascal]
    function AddPrincipal(Principal : TElWebDAVPrincipal) : int64; virtual;

[C++]
    int64_t AddPrincipal(SBWebDAVServer_TElWebDAVPrincipal &Principal);
    int64_t AddPrincipal(SBWebDAVServer_TElWebDAVPrincipal *Principal);

[PHP]
    integer AddPrincipal(SBWebDAVServer_TElWebDAVPrincipal $Principal)

[Java]
    long addPrincipal(TElWebDAVPrincipal Principal);

Parameters

  • Principal - the principal to be added.

Return value

    Returns

Description

    Use this method to add a principal to the internal storage of the backend object. This new principal then can be managed by the backend object. The specific realization of the storage and addition/removal procedures depends on the type of the backend object.

See also:     RemovePrincipal    

Discuss this help topic in SecureBlackbox Forum