Metodo IDTSComponentMetaData100.PostLogMessage
Writes an entry in a package log.
Spazio dei nomi Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly: Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)
Sintassi
'Dichiarazione
Sub PostLogMessage ( _
bstrEventName As String, _
bstrSourceName As String, _
bstrMessageText As String, _
dateStartTime As DateTime, _
dateEndTime As DateTime, _
lDataCode As Integer, _
ByRef psaDataBytes As Byte() _
)
'Utilizzo
Dim instance As IDTSComponentMetaData100
Dim bstrEventName As String
Dim bstrSourceName As String
Dim bstrMessageText As String
Dim dateStartTime As DateTime
Dim dateEndTime As DateTime
Dim lDataCode As Integer
Dim psaDataBytes As Byte()
instance.PostLogMessage(bstrEventName, _
bstrSourceName, bstrMessageText, _
dateStartTime, dateEndTime, lDataCode, _
psaDataBytes)
void PostLogMessage(
string bstrEventName,
string bstrSourceName,
string bstrMessageText,
DateTime dateStartTime,
DateTime dateEndTime,
int lDataCode,
ref byte[] psaDataBytes
)
void PostLogMessage(
[InAttribute] String^ bstrEventName,
[InAttribute] String^ bstrSourceName,
[InAttribute] String^ bstrMessageText,
[InAttribute] DateTime dateStartTime,
[InAttribute] DateTime dateEndTime,
[InAttribute] int lDataCode,
[InAttribute] array<unsigned char>^% psaDataBytes
)
abstract PostLogMessage :
bstrEventName:string *
bstrSourceName:string *
bstrMessageText:string *
dateStartTime:DateTime *
dateEndTime:DateTime *
lDataCode:int *
psaDataBytes:byte[] byref -> unit
function PostLogMessage(
bstrEventName : String,
bstrSourceName : String,
bstrMessageText : String,
dateStartTime : DateTime,
dateEndTime : DateTime,
lDataCode : int,
psaDataBytes : byte[]
)
Parametri
- bstrEventName
Tipo: System.String
The name of the log entry.
- bstrSourceName
Tipo: System.String
The name of the component that creates the log entry.
- bstrMessageText
Tipo: System.String
The message included in the log text.
- dateStartTime
Tipo: System.DateTime
The beginning time of the event.
- dateEndTime
Tipo: System.DateTime
The end time of the event.
- lDataCode
Tipo: System.Int32
The data code of the log entry.
- psaDataBytes
Tipo: array<System.Byte[]%
An array of bytes included with the log entry.
Osservazioni
This method is used to write entries into the package execution log.