IDTSManagedHelper100.VerifyDocument 方法
此 API 支持 SQL Server 2012 基础结构,但不能通过代码直接使用。
Indicates whether the document is verified.
命名空间: Microsoft.SqlServer.Dts.Runtime.Wrapper
程序集: Microsoft.SqlServer.DTSRuntimeWrap(在 Microsoft.SqlServer.DTSRuntimeWrap.dll 中)
语法
声明
Function VerifyDocument ( _
bstrDocument As String, _
<OutAttribute> ByRef ppsaRawCertData As Byte(), _
<OutAttribute> ByRef ppsaSignerPublicKeyBlob As Byte() _
) As Boolean
用法
Dim instance As IDTSManagedHelper100
Dim bstrDocument As String
Dim ppsaRawCertData As Byte()
Dim ppsaSignerPublicKeyBlob As Byte()
Dim returnValue As Boolean
returnValue = instance.VerifyDocument(bstrDocument, _
ppsaRawCertData, ppsaSignerPublicKeyBlob)
bool VerifyDocument(
string bstrDocument,
out byte[] ppsaRawCertData,
out byte[] ppsaSignerPublicKeyBlob
)
bool VerifyDocument(
[InAttribute] String^ bstrDocument,
[OutAttribute] array<unsigned char>^% ppsaRawCertData,
[OutAttribute] array<unsigned char>^% ppsaSignerPublicKeyBlob
)
abstract VerifyDocument :
bstrDocument:string *
ppsaRawCertData:byte[] byref *
ppsaSignerPublicKeyBlob:byte[] byref -> bool
function VerifyDocument(
bstrDocument : String,
ppsaRawCertData : byte[],
ppsaSignerPublicKeyBlob : byte[]
) : boolean
参数
- bstrDocument
类型:System.String
The document to verify.
- ppsaRawCertData
类型:array<System.Byte[]%
The raw data certificate.
- ppsaSignerPublicKeyBlob
类型:array<System.Byte[]%
The signer public key.
返回值
类型:System.Boolean
true if the document is verified; otherwise, false.
注释
For more information, see ManagedHelper.