PostLogMessage-Methode
Writes an entry in a package log.
Namespace: Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly: Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)
Syntax
'Declaration
Sub PostLogMessage ( _
bstrEventName As String, _
bstrSourceName As String, _
bstrMessageText As String, _
dateStartTime As DateTime, _
dateEndTime As DateTime, _
lDataCode As Integer, _
ByRef psaDataBytes As Byte() _
)
'Usage
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[]
)
Parameter
- bstrEventName
Typ: System. . :: . .String
The name of the log entry.
- bstrSourceName
Typ: System. . :: . .String
The name of the component that creates the log entry.
- bstrMessageText
Typ: System. . :: . .String
The message included in the log text.
- dateStartTime
Typ: System. . :: . .DateTime
The beginning time of the event.
- dateEndTime
Typ: System. . :: . .DateTime
The end time of the event.
- lDataCode
Typ: System. . :: . .Int32
The data code of the log entry.
- psaDataBytes
Typ: array<System. . :: . .Byte> [] () [] []%
An array of bytes included with the log entry.
Hinweise
This method is used to write entries into the package execution log.