_XDocument4.SignedDataBlocks Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a reference to the SignedDataBlocksCollection collection that is associated with an XDocument object.
public:
property Microsoft::Office::Interop::InfoPath::SignedDataBlocksCollection ^ SignedDataBlocks { Microsoft::Office::Interop::InfoPath::SignedDataBlocksCollection ^ get(); };
public Microsoft.Office.Interop.InfoPath.SignedDataBlocksCollection SignedDataBlocks { get; }
member this.SignedDataBlocks : Microsoft.Office.Interop.InfoPath.SignedDataBlocksCollection
Public ReadOnly Property SignedDataBlocks As SignedDataBlocksCollection
Property Value
Implements
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.<span class="label">SignedDataBlocks</span>;
SignedDataBlockObject sdblock = sblocks[0];
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.<span class="label">SignedDataBlocks</span>;
SignedDataBlockObject sdblock = sblocks[0];