Partager via


Application.LogProviderInfos Property

Returns a LogProviderInfos collection that contains LogProviderInfo objects. This property is read-only.

Espace de noms: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)

Syntaxe

'Déclaration
Public ReadOnly Property LogProviderInfos As LogProviderInfos
public LogProviderInfos LogProviderInfos { get; }
public:
property LogProviderInfos^ LogProviderInfos {
    LogProviderInfos^ get ();
}
/** @property */
public LogProviderInfos get_LogProviderInfos ()
public function get LogProviderInfos () : LogProviderInfos

Valeur de propriété

A LogProviderInfos collection that contains all the LogProviderInfo objects for the application.

Notes

Exemple de code mis à jour :17 juillet 2006

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 Implémentation de la journalisation dans les packages.

Exemple

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 Générateur de profils SQL Server

DTS Log Provider for SQL Server

DTS Log Provider for Windows Event Log

DTS Log Provider for XML Files

Sécurité des threads

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Plateformes

Plateformes de développement

Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.

Plateformes cibles

Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.

Voir aussi

Référence

Application Class
Application Members
Microsoft.SqlServer.Dts.Runtime Namespace