Метод 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