ScriptComponent.Log 方法

Writes a log entry.

命名空间:  Microsoft.SqlServer.Dts.Pipeline
程序集:  Microsoft.SqlServer.TxScript(在 Microsoft.SqlServer.TxScript.dll 中)

语法

声明
Public Sub Log ( _
    messageText As String, _
    dataCode As Integer, _
    dataBytes As Byte() _
)
用法
Dim instance As ScriptComponent 
Dim messageText As String 
Dim dataCode As Integer 
Dim dataBytes As Byte()

instance.Log(messageText, dataCode, dataBytes)
public void Log(
    string messageText,
    int dataCode,
    byte[] dataBytes
)
public:
void Log(
    String^ messageText, 
    int dataCode, 
    array<unsigned char>^ dataBytes
)
member Log : 
        messageText:string * 
        dataCode:int * 
        dataBytes:byte[] -> unit
public function Log(
    messageText : String, 
    dataCode : int, 
    dataBytes : byte[]
)

参数

  • messageText
    类型:System.String
    The text of the logging entry.
  • dataCode
    类型:System.Int32
    A field available for numeric data to be logged.
  • dataBytes
    类型:array<System.Byte[]
    A field available for binary data to be logged.

注释

The Script component developer does not use the ScriptComponent class directly, but indirectly, by coding the methods and properties of the ScriptMain class, which inherits from ScriptComponent through the UserComponent class.

The developer can use the Log method of the ScriptMain class to log user-defined data to enabled log providers.

示例

The following code sample demonstrates how the Script component developer might log information from the component by using the Log method. For more information, see 脚本组件中的日志记录.

Dim bt(0) As Byte
Me.Log("Test Log Event", _
  0, _
  bt)

请参阅

参考

ScriptComponent 类

Microsoft.SqlServer.Dts.Pipeline 命名空间