ILoggingProvider.WriteDataRowToServer method
Writes a row of data into a table in the logging store. The table should have been created with [CreateTable].
Namespace: Microsoft.SharePoint.Administration
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Sub WriteDataRowToServer ( _
tableName As String, _
columns As IList(Of SPColumnDefinition), _
logTime As DateTime, _
machineName As String, _
ParamArray row As Object() _
)
'Usage
Dim instance As ILoggingProvider
Dim tableName As String
Dim columns As IList(Of SPColumnDefinition)
Dim logTime As DateTime
Dim machineName As String
Dim row As Object()
instance.WriteDataRowToServer(tableName, _
columns, logTime, machineName, row)
void WriteDataRowToServer(
string tableName,
IList<SPColumnDefinition> columns,
DateTime logTime,
string machineName,
params Object[] row
)
Parameters
- tableName
Type: System.String
- columns
Type: System.Collections.Generic.IList<SPColumnDefinition>
- logTime
Type: System.DateTime
- machineName
Type: System.String
- row
Type: []