Application.LogProviderInfos Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a LogProviderInfos collection that contains LogProviderInfo objects. This property is read-only.
public:
property Microsoft::SqlServer::Dts::Runtime::LogProviderInfos ^ LogProviderInfos { Microsoft::SqlServer::Dts::Runtime::LogProviderInfos ^ get(); };
public Microsoft.SqlServer.Dts.Runtime.LogProviderInfos LogProviderInfos { get; }
member this.LogProviderInfos : Microsoft.SqlServer.Dts.Runtime.LogProviderInfos
Public ReadOnly Property LogProviderInfos As LogProviderInfos
Property Value
A LogProviderInfos collection that contains all the LogProviderInfo objects for the application.
Examples
The following code example shows how to enumerate over the log providers available to Integration Services.
class ApplicationTests
{
static void Main(string[] args)
{
Application app = new Application();
LogProviderInfos lpis = app.LogProviderInfos;
foreach (LogProviderInfo x in lpis)
Console.WriteLine(x.Name);
}
}
class ApplicationTests
Sub Main(ByVal args() As String)
Dim app As Application = New Application()
Dim lpis As LogProviderInfos = app.LogProviderInfos
For Each x As LogProviderInfo In lpis
Console.WriteLine(x.Name)
Next
End Sub
End Class
Sample Output:
DTS Log Provider for Text Files
DTS Log Provider for SQL Server Profiler
DTS Log Provider for SQL Server
DTS Log Provider for Windows Event Log
DTS Log Provider for XML Files
Remarks
A Package container includes a collection of log providers that a package and its tasks and containers use to log information when the package runs. Only the Package container includes log providers, but the tasks and containers that the package includes can log information to any of the package log providers. For more information, see Integration Services (SSIS) Logging.