次の方法で共有


_XDocument4.IsSigned プロパティ

定義

Microsoft InfoPath フォームがデジタル署名を使用してデジタル署名されているかどうかを示す値を取得します。

public:
 property bool IsSigned { bool get(); };
public bool IsSigned { get; }
member this.IsSigned : bool
Public ReadOnly Property IsSigned As Boolean

プロパティ値

Boolean を返します。

実装

次の例では、 オブジェクトの IsSigned プロパティを XDocument 使用して、フォームがデジタル署名されているかどうかを判断します。

if (thisXDocument.<span class="label">IsSigned</span>)
{
 thisXDocument.UI.Alert("This form contains digital signatures.");
}

次の例では、 オブジェクトの IsSigned プロパティを XDocument 使用して、フォームがデジタル署名されているかどうかを判断します。

if (thisXDocument.<span class="label">IsSigned</span>)
{
 thisXDocument.UI.Alert("This form contains digital signatures.");
}

注釈

IsSigned プロパティが true の場合は、フォームがデジタル署名されています。 false の場合はデジタル署名されていません。

InfoPath は、XML 署名を使用してフォームにデジタル署名します。

: フォームがデジタル署名されている場合、基になる XML ドキュメントは読み取り専用の状態になります。

適用対象