Freigeben über


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)

Eigenschaftswert

The type of the log provider.

Hinweise

Aktualisierter Beispielcode:15. September 2007

Aktualisierter Text:14. April 2006

Beispiel

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

Threadsicherheit

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.

Plattformen

Entwicklungsplattformen

Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.

Zielplattforme

Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.

Siehe auch

Verweis

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