ManagedHelper.VerifyDocument 方法
此 API 支持 SQL Server 2012 基础结构,但不能通过代码直接使用。
Verifies the document associated with the helper.
命名空间: Microsoft.SqlServer.Dts.Runtime
程序集: Microsoft.SqlServer.ManagedDTS(在 Microsoft.SqlServer.ManagedDTS.dll 中)
语法
声明
Public Function VerifyDocument ( _
document As String, _
<OutAttribute> ByRef rawCertData As Byte(), _
<OutAttribute> ByRef signerPublicKeyBlob As Byte() _
) As Boolean
用法
Dim instance As ManagedHelper
Dim document As String
Dim rawCertData As Byte()
Dim signerPublicKeyBlob As Byte()
Dim returnValue As Boolean
returnValue = instance.VerifyDocument(document, _
rawCertData, signerPublicKeyBlob)
public bool VerifyDocument(
string document,
out byte[] rawCertData,
out byte[] signerPublicKeyBlob
)
public:
virtual bool VerifyDocument(
String^ document,
[OutAttribute] array<unsigned char>^% rawCertData,
[OutAttribute] array<unsigned char>^% signerPublicKeyBlob
) sealed
abstract VerifyDocument :
document:string *
rawCertData:byte[] byref *
signerPublicKeyBlob:byte[] byref -> bool
override VerifyDocument :
document:string *
rawCertData:byte[] byref *
signerPublicKeyBlob:byte[] byref -> bool
public final function VerifyDocument(
document : String,
rawCertData : byte[],
signerPublicKeyBlob : byte[]
) : boolean
参数
- document
类型:System.String
The document to be verified.
- rawCertData
类型:array<System.Byte[]%
The raw certificate data.
- signerPublicKeyBlob
类型:array<System.Byte[]%
The signer.
返回值
类型:System.Boolean
The verified document.
实现
IDTSManagedHelper100.VerifyDocument(String, array<Byte[]%, array<Byte[]%)
注释
Example