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
Public MustOverride ReadOnly Property SignedDataBlocks As SignedDataBlockCollection
Get
'Usage
Dim instance As XmlForm
Dim value As SignedDataBlockCollection
value = instance.SignedDataBlocks
public abstract SignedDataBlockCollection SignedDataBlocks { get; }
Property Value
Type: Microsoft.Office.InfoPath.SignedDataBlockCollection
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 InfoPath Filler.
Examples
In the following code 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)