Share via


_XDocument3.SignedDataBlocks Property

Gets a reference to the SignedDataBlocksCollection collection that is associated with an XDocument object.

Namespace:  Microsoft.Office.Interop.InfoPath
Assembly:  Microsoft.Office.Interop.InfoPath (in Microsoft.Office.Interop.InfoPath.dll)

Syntax

'Declaration
ReadOnly Property SignedDataBlocks As SignedDataBlocksCollection
    Get
'Usage
Dim instance As _XDocument3
Dim value As SignedDataBlocksCollection

value = instance.SignedDataBlocks
SignedDataBlocksCollection SignedDataBlocks { get; }

Property Value

Type: Microsoft.Office.Interop.InfoPath.SignedDataBlocksCollection
A reference to the SignedDataBlocksCollection collection that is associated with an XDocument object.

Implements

_XDocument2.SignedDataBlocks

Examples

In the following example, the SignedDataBlocks property of the XDocument object is used to get a reference to the SignedDataBlocksCollection collection. An individual SignedDataBlockObject object is then accessed using array indexing:

SignedDataBlocksCollection sblocks = thisXDocument.SignedDataBlocks;
SignedDataBlockObject sdblock = sblocks[0];

See Also

Reference

_XDocument3 Interface

_XDocument3 Members

SignedDataBlocks Overload

Microsoft.Office.Interop.InfoPath Namespace