Discuss this help topic in SecureBlackbox Forum

TElOfficeOpenXMLBaseSignatureHandler.IsPartSigned

TElOfficeOpenXMLBaseSignatureHandler     See also     


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


Checks whether the package part is signed or not.

Declaration

[C#]
    bool IsPartSigned(TElOfficePackagePart Part);
    bool IsPartSigned(string URI);

[VB.NET]
    Function IsPartSigned(ByVal Part As TElOfficePackagePart) As Boolean
    Function IsPartSigned(ByVal URI As String) As Boolean

[Pascal]
    function IsPartSigned(Part : TElOfficePackagePart) : Boolean; overload;
    function IsPartSigned(const URI : string) : Boolean; overload;

[C++]
    bool IsPartSigned(TElOfficePackagePart &Part);
    bool IsPartSigned(TElOfficePackagePart *Part);
    bool IsPartSigned(const std::string &URI);

[PHP]
    bool IsPartSigned(TElOfficePackagePart $Part)
    bool IsPartSigned(string $URI)

[Java]
    boolean isPartSigned(TElOfficePackagePart Part);
    boolean isPartSigned(String URI);

Parameters

  • Part - the package part
  • URI - the part's URI

Return value

    Returns True if the package part is signed, and False otherwise.

Description

    Use this method to check if certain package part is signed or not.

See also:     IsCorePropertiesSigned     IsDocumentSigned    

Discuss this help topic in SecureBlackbox Forum