Поделиться через


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