Discuss this help topic in SecureBlackbox Forum

TElXMLCustomDecryptionTransform.Add

TElXMLCustomDecryptionTransform     See also     


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


Adds a dcrpt:Except element to the list.

Declaration

[C#]
    int Add(TElXMLDecryptionExcept AExcept);
    int Add(string ExceptID, string ExceptURI);

[VB.NET]
    Function Add(ByVal AExcept As TElXMLDecryptionExcept) As Integer
    Function Add(ByVal ExceptID As String, ByVal ExceptURI As String) As Integer

[Pascal]
    function Add(AExcept : TElXMLDecryptionExcept) : integer;
    function Add(ExceptID, ExceptURI : WideString) : integer;

[C++]
    int32_t Add(TElXMLDecryptionExcept &AExcept);
    int32_t Add(TElXMLDecryptionExcept *AExcept);
    int32_t Add(const sb_u16string &ExceptID, const sb_u16string &ExceptURI);
    int32_t Add(const std::wstring &ExceptID, const std::wstring &ExceptURI);

[PHP]
    integer Add(TElXMLDecryptionExcept $AExcept)
    integer Add(string $ExceptID, string $ExceptURI)

[Java]
    int add(String ExceptID, String ExceptURI);
    int add(TElXMLDecryptionExcept AExcept);

Parameters

  • AExcept - The element to be added
  • ExceptID - ID of the element to be added
  • ExceptURI - URI of the element to be added

Return value

    Index of the added item.

Description

    Use this method to add a new dcrpt:Except element to the list.

See also:     Clear     Delete     Insert    

Discuss this help topic in SecureBlackbox Forum