Freigeben über


DtsForEachEnumeratorAttribute.ForEachEnumeratorContact Eigenschaft

Definition

Ruft die Kontaktinformationen für das Foreach-Aufzählungsobjekt ab oder legt diese fest.

public:
 property System::String ^ ForEachEnumeratorContact { System::String ^ get(); void set(System::String ^ value); };
public string ForEachEnumeratorContact { get; set; }
member this.ForEachEnumeratorContact : string with get, set
Public Property ForEachEnumeratorContact As String

Eigenschaftswert

Die Kontaktinformationen für das Foreach-Aufzählungsobjekt.

Beispiele

Das folgende Codebeispiel zeigt das Attribut, das auf eine neue Klasse angewendet wird, wobei mehrere Eigenschaften definiert sind, einschließlich der DisplayName, DescriptionForEachEnumeratorContact, und UITypeName.

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  

Hinweise

Diese optionale Eigenschaft wird verwendet, um Kontaktinformationen für das Foreach Aufzählungsobjekt anzugeben.

Gilt für: