Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
Get
Set
'Usage
Dim instance As DtsLogProviderAttribute
Dim value As String
value = instance.LogProviderType
instance.LogProviderType = value
public string LogProviderType { get; set; }
public:
property String^ LogProviderType {
String^ get ();
void set (String^ value);
}
member LogProviderType : string with get, set
function get LogProviderType () : String
function set LogProviderType (value : String)
Property Value
Type: System.String
The type of the log provider.
Examples
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