DtsLogProviderAttribute.LogProviderType Property
Gets or sets the type of the log provider. This property is required.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)
Syntax
'Declaration
Public Property LogProviderType As String
public string LogProviderType { get; set; }
public:
property String^ LogProviderType {
String^ get ();
void set (String^ value);
}
/** @property */
public String get_LogProviderType ()
/** @property */
public void set_LogProviderType (String value)
public function get LogProviderType () : String
public function set LogProviderType (value : String)
Property Value
The type of the log provider.
Remarks
Updated sample code:15 September 2007
Updated text:14 April 2006
Example
The following example shows a class implementing this attribute and setting the LogProviderType.
using System;
using Microsoft.SqlServer.Dts.Runtime;
namespace Microsoft.Samples.SqlServer.Dts
{
[DtsLogProvider(LogProviderType = "MyLOG",
DisplayName = "MyCustomLogProvider ",
Description = "Custom Log Provider")]
public class MyCustomLogProvider : LogProviderBase
{
// Your custom log provider code here.
}
}
Imports System
Imports Microsoft.SqlServer.Dts.Runtime
<DtsLogProvider(LogProviderType:="MyLOG", _
DisplayName:="MyCustomLogProvider ", _
Description:="Custom Log Provider")> _
Public Class MyCustomLogProvider
Inherits LogProviderBase
' Your custom log provider code here.
End Class
Thread Safety
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.
Platforms
Development Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.
Target Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.
See Also
Reference
DtsLogProviderAttribute Class
DtsLogProviderAttribute Members
Microsoft.SqlServer.Dts.Runtime Namespace
Change History
Release |
History |
15 September 2007 |
Changed content:
|
14 April 2006 |
Changed content:
|