IDTSManagedHelper100.VerifyDocument-Methode
Diese API unterstützt die SQL Server 2012-Infrastruktur und ist nicht zur direkten Verwendung im Code bestimmt.
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
Parameter
- bstrDocument
Typ: System.String
The document to verify.
- ppsaRawCertData
Typ: array<System.Byte[]%
The raw data certificate.
- ppsaSignerPublicKeyBlob
Typ: array<System.Byte[]%
The signer public key.
Rückgabewert
Typ: System.Boolean
true if the document is verified; otherwise, false.
Hinweise
For more information, see ManagedHelper.