Share via


Package.LogProviders Property

Gets the collection of log providers associated with the package.

Namespace:  Microsoft.SqlServer.Dts.Runtime
Assembly:  Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)

Syntax

'Declaration
Public ReadOnly Property LogProviders As LogProviders 
    Get
'Usage
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

Property Value

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

Remarks

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

Examples

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")

See Also

Reference

Package Class

Microsoft.SqlServer.Dts.Runtime Namespace