Package.LogProviders 属性

Gets the collection of log providers associated with the package.

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

语法

声明
Public ReadOnly Property LogProviders As LogProviders 
    Get
用法
Dim instance As Package 
Dim value As LogProviders 

value = instance.LogProviders
public LogProviders LogProviders { get; }
public:
property LogProviders^ LogProviders {
    LogProviders^ get ();
}
member LogProviders : LogProviders
function get LogProviders () : LogProviders

属性值

类型:Microsoft.SqlServer.Dts.Runtime.LogProviders
The collection of log providers associated with the package.

注释

For more information about log providers, see Integration Services (SSIS) 日志记录. For more information about using log providers in the graphical user interface, see Integration Services (SSIS) 日志记录.

示例

The following code sample shows how to add the XML File log provider to the log provider collection in the package.

Package pkg = new Package();
// Add a log provider to the package.
LogProvider logProvs = pkg.LogProviders.Add("DTS.LogProvider.XMLFile.1");
Dim pkg As Package =  New Package() 
' Add a log provider to the package.
Dim logProvs As LogProvider =  pkg.LogProviders.Add("DTS.LogProvider.XMLFile.1")

请参阅

参考

Package 类

Microsoft.SqlServer.Dts.Runtime 命名空间