次の方法で共有


DtsLogProviderAttribute.IconResource プロパティ

ログ プロバイダーに関連付けられたアイコンを取得します。値の設定も可能です。

名前空間:  Microsoft.SqlServer.Dts.Runtime
アセンブリ:  Microsoft.SqlServer.ManagedDTS (Microsoft.SqlServer.ManagedDTS.dll)

構文

'宣言
Public Property IconResource As String 
    Get 
    Set
'使用
Dim instance As DtsLogProviderAttribute 
Dim value As String 

value = instance.IconResource

instance.IconResource = value
public string IconResource { get; set; }
public:
property String^ IconResource {
    String^ get ();
    void set (String^ value);
}
member IconResource : string with get, set
function get IconResource () : String 
function set IconResource (value : String)

プロパティ値

型: System.String
ログ プロバイダーのアイコン リソースを識別する文字列です。

説明

指定すると、ログ プロバイダーが表示される際に SQL Server データ ツール (SSDT) に表示されるアイコンがこのプロパティで識別されます。

この文字列には、アセンブリとアイコン ファイルの名前が含まれます。 Visual Studio .NET を使用してアイコン ファイルをリソースとしてアセンブリに埋め込むには、アイコン ファイルの [ビルド アクション] 属性を [埋め込まれたリソース] に設定します。

使用例

次の例は、アイコン リソースを提供するログ プロバイダー クラスを示します。 この例では、アイコン ファイルの名前が MyLogProviderIcon.ico で、アセンブリ名が MyLogProvider です。

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

関連項目

参照

DtsLogProviderAttribute クラス

Microsoft.SqlServer.Dts.Runtime 名前空間