Remarque
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de vous connecter ou de modifier des répertoires.
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de modifier des répertoires.
Cette API prend en charge l'infrastructure SQL Server 2012 et n'est pas destinée à être utilisée directement à partir de votre code.
Indicates whether the document is verified.
Espace de noms : Microsoft.SqlServer.Dts.Runtime.Wrapper
Assembly : Microsoft.SqlServer.DTSRuntimeWrap (en Microsoft.SqlServer.DTSRuntimeWrap.dll)
Syntaxe
'Déclaration
Function VerifyDocument ( _
bstrDocument As String, _
<OutAttribute> ByRef ppsaRawCertData As Byte(), _
<OutAttribute> ByRef ppsaSignerPublicKeyBlob As Byte() _
) As Boolean
'Utilisation
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
Paramètres
- 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.
Valeur de retour
Type : System.Boolean
true if the document is verified; otherwise, false.
Notes
For more information, see ManagedHelper.