Partager via


Signature.Sign - Méthode

Écrit le bloc de signature numérique XML et calcule le hachage cryptographique des données signées.

Espace de noms :  Microsoft.Office.Interop.InfoPath
Assembly :  Microsoft.Office.Interop.InfoPath (dans Microsoft.Office.Interop.InfoPath.dll)

Syntaxe

'Déclaration
Sub Sign
'Utilisation
Dim instance As Signature

instance.Sign()
void Sign()

Remarques

La méthode Sign peut être appelée uniquement à partir de l'événement OnSign . L'appel de cette méthode avance l' Assistant Signatures numériques pour la deuxième étape dans le processus de signature, sélectionner un certificat.

Exemples

Dans l'exemple suivant, créé en ajoutant l'événement OnSign au formulaire en sélectionnant la programmation dans le menu Outils dans l'interface utilisateur du Concepteur InfoPath, une signature numérique est ajoutée au formulaire en utilisant la méthode Sign de l'objet SignatureObject :

public void OnSign(SignEvent e)
{
// The OnSign handler can be customized only in fully trusted form templates.
Signature thisSignature = e.SignedDataBlock.Signatures.Create();

// You can add other pieces of information to sign by modifying the signature
// template in thisSignature.SignatureBlockXmlNode.
thisSignature.Sign();
e.ReturnStatus = true;
}

Voir aussi

Référence

Signature interface

Signature - Membres

Microsoft.Office.Interop.InfoPath - Espace de noms