SignedDataBlockObject interface

Represents a set of data in a Microsoft InfoPath form which can be signed.

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

Syntax

'Declaration
<GuidAttribute("096cd714-0786-11d1-95fa-0080c78ee3bb")> _
Public Interface SignedDataBlockObject _
    Inherits SignedDataBlock
'Usage
Dim instance As SignedDataBlockObject
[GuidAttribute("096cd714-0786-11d1-95fa-0080c78ee3bb")]
public interface SignedDataBlockObject : SignedDataBlock

Remarks

This type is a wrapper for a coclass that is required by managed code for COM interoperability. Use this type to access the members of the COM interface implemented by this coclass. For information about the COM interface, including a link to descriptions of its members, seeSignedDataBlock.

The SignedDataBlockObject object provides a number of properties and one method that can be used to programmatically interact with a set of data which can be signed. It is accessible through the SignedDataBlocks property of the XDocument object.

Examples

The following example returns the first set of data in the form which can be signed, or, if only the entire form can be signed, the entire form:

SignedDataBlock sdb = thisXDocument.SignedDataBlocks[0];

See also

Reference

SignedDataBlockObject members

Microsoft.Office.Interop.InfoPath.SemiTrust namespace