SPUsageProvider.CreateTable method
Creates a table in the logging store.
Namespace: Microsoft.SharePoint.Administration
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Overridable Sub CreateTable ( _
tableName As String, _
columnDefs As IList(Of SPColumnDefinition) _
)
'Usage
Dim instance As SPUsageProvider
Dim tableName As String
Dim columnDefs As IList(Of SPColumnDefinition)
instance.CreateTable(tableName, columnDefs)
public virtual void CreateTable(
string tableName,
IList<SPColumnDefinition> columnDefs
)
Parameters
tableName
Type: System.StringThe name of the table to create.
columnDefs
Type: System.Collections.Generic.IList<SPColumnDefinition>Definitions of the columns on the table to create.
Implements
ILoggingProvider.CreateTable(String, IList<SPColumnDefinition>)