XmlForm.SignedDataBlocks Property

Gets a reference to the SignedDataBlockCollection collection that is associated with a form.

Namespace: Microsoft.Office.InfoPath
Assembly: Microsoft.Office.InfoPath (in microsoft.office.infopath.dll)

Syntax

'Declaration
'Usage

Property Value

A SignedDataBlockCollection that contains any SignedDataBlock objects associated with the form.

Remarks

This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.

This type or member can be accessed only from code running in forms opened in Microsoft Office InfoPath 2007.

Example

In the following example, the SignedDataBlocks property of the XmlForm class is used to get a reference to the SignedDataBlockCollection for the form. The first SignedDataBlock object is then accessed from the collection.

SignedDataBlockCollection sblocks = this.SignedDataBlocks;
SignedDataBlock sdblock = sblocks[0];
Dim sblocks As SignedDataBlockCollection = Me.SignedDataBlocks
Dim sdblock As SignedDataBlock = sblocks(0)

See Also

Reference

XmlForm Class
XmlForm Members
Microsoft.Office.InfoPath Namespace