_XDocument3.IsSigned 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取一个值,该值指示 Microsoft Office InfoPath 表单是否已使用数字签名进行数字签名。
public:
property bool IsSigned { bool get(); };
public bool IsSigned { get; }
member this.IsSigned : bool
Public ReadOnly Property IsSigned As Boolean
属性值
如果表单已进行数字签名,则为 true;否则为 false。
实现
示例
在以下示例中,对象的 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 文档处于只读状态。