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