Discuss this help topic in SecureBlackbox Forum

TElPGPSignature.RemoveExtension

TElPGPSignature     See also     


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


This method removes the extension.

Declaration

[C#]
    bool RemoveExtension(TSBPGPSignatureExtension ExtType, int Index);
    bool RemoveExtension(int Index);

[VB.NET]
    Function RemoveExtension(ByVal ExtType As TSBPGPSignatureExtension, ByVal Index As Integer) As Boolean
    Function RemoveExtension(ByVal Index As Integer) As Boolean

[Pascal]
    function RemoveExtension(ExtType : TSBPGPSignatureExtension; Index : integer = 0) : boolean;
    function RemoveExtension(Index : integer) : boolean;

[C++]
    bool RemoveExtension(TSBPGPSignatureExtension ExtType, int32_t Index);
    bool RemoveExtension(int32_t Index);

[PHP]
    bool RemoveExtension(integer $ExtType, integer $Index)
    bool RemoveExtension(integer $Index)

[Java]
    boolean removeExtension(TSBPGPSignatureExtension ExtType, int Index);
    boolean removeExtension(int Index);

Parameters

  • ExtType - type of the extension to be deleted.
  • Index - index of item in list

Possible types

Return value

    True if the extension was removed successfully.
    False otherwise.

Description

    Use this method to remove the extension. If extension type is specified, then Index parameter means an index among extensions of this type. Otherwise it means an index among all extensions.

See also:     AddExtension     ClearExtensions     GetExtensionByType     GetExtensionCount    

Discuss this help topic in SecureBlackbox Forum