IDTSManagedHelper100.VerifyDocument Method
This API supports the SQL Server 2012 infrastructure and is not intended to be used directly from your code.
Indicates whether the document is verified.
Namespace: Microsoft.SqlServer.Dts.Runtime.Wrapper
Assembly: Microsoft.SqlServer.DTSRuntimeWrap (in Microsoft.SqlServer.DTSRuntimeWrap.dll)
Syntax
'Declaration
Function VerifyDocument ( _
bstrDocument As String, _
<OutAttribute> ByRef ppsaRawCertData As Byte(), _
<OutAttribute> ByRef ppsaSignerPublicKeyBlob As Byte() _
) As Boolean
'Usage
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
Parameters
- bstrDocument
Type: System.String
The document to verify.
- ppsaRawCertData
Type: array<System.Byte[]%
The raw data certificate.
- ppsaSignerPublicKeyBlob
Type: array<System.Byte[]%
The signer public key.
Return Value
Type: System.Boolean
true if the document is verified; otherwise, false.
Remarks
For more information, see ManagedHelper.