Edit

Share via


XmlForm.SignedDataBlocks Property

Definition

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

public:
 abstract property Microsoft::Office::InfoPath::SignedDataBlockCollection ^ SignedDataBlocks { Microsoft::Office::InfoPath::SignedDataBlockCollection ^ get(); };
public abstract Microsoft.Office.InfoPath.SignedDataBlockCollection SignedDataBlocks { get; }
member this.SignedDataBlocks : Microsoft.Office.InfoPath.SignedDataBlockCollection
Public MustOverride ReadOnly Property SignedDataBlocks As SignedDataBlockCollection

Property Value

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

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)

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.

Applies to