次の方法で共有


DtsForEachEnumeratorAttribute Class

ForEachEnumerator オブジェクトに関するデザイン時の情報を提供します。このクラスは継承できません。

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

構文

'宣言
<AttributeUsageAttribute(AttributeTargets.Class, Inherited:=False, AllowMultiple:=False)> _
Public NotInheritable Class DtsForEachEnumeratorAttribute
    Inherits DtsLocalizableAttribute
[AttributeUsageAttribute(AttributeTargets.Class, Inherited=false, AllowMultiple=false)] 
public sealed class DtsForEachEnumeratorAttribute : DtsLocalizableAttribute
[AttributeUsageAttribute(AttributeTargets::Class, Inherited=false, AllowMultiple=false)] 
public ref class DtsForEachEnumeratorAttribute sealed : public DtsLocalizableAttribute
/** @attribute AttributeUsageAttribute(AttributeTargets.Class, Inherited=false, AllowMultiple=false) */ 
public final class DtsForEachEnumeratorAttribute extends DtsLocalizableAttribute
AttributeUsageAttribute(AttributeTargets.Class, Inherited=false, AllowMultiple=false) 
public final class DtsForEachEnumeratorAttribute extends DtsLocalizableAttribute

解説

更新されたサンプル コード :2007 年 9 月 15 日

この属性は、すべてのマネージ Foreach 列挙子クラスに適用され、そのクラスを SQL Server (SSIS) ランタイム エンジンへのマネージ Foreach 列挙子として識別します。この属性は、プロパティを通じて、デザイナがオブジェクトを表示したりオブジェクトと対話する方法を制御するための情報を提供します。すべてのマネージ列挙子は ForEachEnumerator 基本クラスから派生するため、カスタム列挙子を作成する際は、クラス ライブラリ プロジェクトを作成し、基本クラスから継承することが最初のステップとなります。次に、DtsForEachEnumeratorAttribute をクラスに適用します。この属性は、デザイナに名前、説明、およびユーザー インターフェイスのデザイン時の情報を提供します。UITypeName プロパティは、ForEachLoop エディタで表示される列挙子のユーザー インターフェイスを実装する Type を識別します。DisplayName プロパティは、SQL Server Business Intelligence Development Studio のツールボックスで表示されます。

クラスへの属性の適用の詳細については、『.NET Framework 開発者ガイド』の「属性の適用」を参照してください。

属性は、UITypeNameForEachEnumeratorContact などの DtsForEachEnumeratorAttribute で宣言される他の属性に加えて、Attributes クラスからの次の要素を含むことができるコンマ区切り文字列として書式設定されます。

  • 種類名

  • アセンブリ名

  • ファイル バージョン

  • カルチャ

  • パブリック キー トークン

次の文字列では、文字列の書式設定方法の一例を示します。

[DtsForEachEnumerator(DisplayName="MyEnumerator",UITypeName="MyNamespace.MyEnumeratorClassName,MyAssemblyName",Version="1.00.000.00",Culture="neutral",PublicKeyToken="")]

グローバル アセンブリ キャッシュ (GAC) のアセンブリのプロパティを調べると、アセンブリに Culture パラメータおよび PublicKeyToken パラメータの値が見つかります。

継承階層

System.Object
   System.Attribute
     Microsoft.SqlServer.Dts.Runtime.Localization.DtsLocalizableAttribute
      Microsoft.SqlServer.Dts.Runtime.DtsForEachEnumeratorAttribute

使用例

次のコード サンプルでは、DisplayNameDescriptionForEachEnumeratorContactUITypeName などの、定義されたいくつかのプロパティと共に新しいクラスに適用される属性を示します。

using System;
using Microsoft.SqlServer.Dts.Runtime;

namespace Microsoft.Samples.SqlServer.Dts
{
// This attribute marks the class as a managed ForEachEnumerator.
    [DtsForEachEnumerator(DisplayName = "MyEnumerator",
      Description="A managed enumerator",
      UITypeName="<FullyQualifiedTypeName>",
      ForEachEnumeratorContact="Name of company to contact")]
    public class MyEnumerator : ForEachEnumerator
    {
        // Insert your enumerator code here.
    }
}
Imports System
Imports Microsoft.SqlServer.Dts.Runtime

Namespace Microsoft.Samples.SqlServer.Dts
  ' This attribute marks the class as a managed ForEachEnumerator.
  <DtsForEachEnumerator(DisplayName:="MyEnumerator", _
    Description:="A managed enumerator", _
    UITypeName:="<FullyQualifiedTypeName>", _
    ForEachEnumeratorContact:="Name of company to contact")> _
  Public Class MyEnumerator
    Inherits ForEachEnumerator
    ' Insert your enumerator code here.
  End Class
End Namespace

スレッド セーフ

この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。

プラットフォーム

開発プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

対象プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

参照

関連項目

DtsForEachEnumeratorAttribute Members
Microsoft.SqlServer.Dts.Runtime Namespace

変更履歴

リリース

履歴

2007 年 9 月 15 日

変更内容 :
  • コード例を修正しました。