- signatureUID
- Character string that contains the Digital Signature UID of the Digital Signature for which to search.
Visual Basic (Declaration) | |
---|---|
Public Function FindSignature( _ ByVal signatureUID As String _ ) As DicomElement |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
public DicomElement FindSignature( string signatureUID ) |
C++/CLI | |
---|---|
public: DicomElement^ FindSignature( String^ signatureUID ) |
Parameters
- signatureUID
- Character string that contains the Digital Signature UID of the Digital Signature for which to search.
Return Value
The Digital Signatures Sequence Item that corresponds to the Digital Signature with the specified Digital Signature UID, or a null reference (Nothing in Visual Basic) if no such Digital Signature was found in the Data Set.This example will locate (find) a digital signature inside a DICOM dataset by searching for its UID.
Visual Basic | Copy Code |
---|---|
Public Sub FindSignature() |
C# | Copy Code |
---|---|
public void FindSignature() |
Each Digital Signature should be uniquely identified by a UID specified by the Digital
Signature UID (0400,0100) under the corresponding Digital Signatures Sequence Item.
Call this method to search the whole Data Set for a Digital Signature by its Digital
Signature UID.
Once the Digital Signatures Sequence Item is obtained, the following methods can be used to verify, delete, or get information about the Digital Signature:
Call the GetSignaturesCount and GetSignature methods to enumerate the Digital Signatures in the main Data Set or in an item of a Sequence of Items.
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
Reference
DicomDataSet ClassDicomDataSet Members
GetSignaturesCount Method
GetSignature Method
VerifySignature Method
DeleteSignature Method
GetSignatureUID Method
GetSignatureDateTime Method
GetSignedElementsCount Method
GetSignedElement Method
GetMacTransferSyntax Method
GetMacAlgorithm Method
SaveCertificate Method
CreateSignature Method