IDTSPath100 Interface

Définition

public interface class IDTSPath100 : Microsoft::SqlServer::Dts::Pipeline::Wrapper::Sql2014::IDTSObject100
[System.Runtime.InteropServices.Guid("7BD99105-F435-4265-83DA-BC0023CC293C")]
[System.Runtime.InteropServices.TypeLibType(System.Runtime.InteropServices.TypeLibTypeFlags.FDispatchable | System.Runtime.InteropServices.TypeLibTypeFlags.FDual)]
public interface IDTSPath100 : Microsoft.SqlServer.Dts.Pipeline.Wrapper.Sql2014.IDTSObject100
[<System.Runtime.InteropServices.Guid("7BD99105-F435-4265-83DA-BC0023CC293C")>]
[<System.Runtime.InteropServices.TypeLibType(System.Runtime.InteropServices.TypeLibTypeFlags.FDispatchable | System.Runtime.InteropServices.TypeLibTypeFlags.FDual)>]
type IDTSPath100 = interface
    interface IDTSObject100
Public Interface IDTSPath100
Implements IDTSObject100
Attributs
Implémente

Exemples

L’exemple de code suivant montre comment créer un objet IDTSPath100 , puis attacher la sortie du composant en amont à l’entrée du composant en aval.

public IDTSPath100 EstablishPath( MainPipe mp , IDTSOutput100 start , IDTSInput100 end )  
{  
IDTSPath100 path = mp.PathCollection.New();  
path.AttachPathAndPropagateNotifications( start, end );  
return path;  
}  
Public Function EstablishPath(ByVal mp As MainPipe, ByVal start As IDTSOutput100, ByVal end As IDTSInput100) As IDTSPath100   
 Dim path As IDTSPath100 = mp.PathCollection.New   
 path.AttachPathAndPropagateNotifications(start, end)   
 Return path   
End Function  

Remarques

Les objets de chemin d’accès sont créés pour établir le flux de données entre le IDTSOutput100 composant en amont et l’autre IDTSInput100 composant. Un chemin d’accès contient un objet de sortie unique représenté sous la StartPointforme , et une seule entrée, qui est le EndPoint chemin d’accès. Un chemin d’accès entre deux composants est établi dans un processus en deux étapes. Tout d’abord, créez le chemin d’accès en appelant New la collection de chemins de l’objet IDTSComponentMetaData100 . Ensuite, établissez le chemin en appelant AttachPathAndPropagateNotifications le chemin lui-même. Cette méthode établit le chemin d’accès et avertit les composants affectés de son existence.

Les colonnes du fichier StartPoint sont ensuite mappées à l’appel EndPointSetUsageType.

Propriétés

Description
EndPoint
ID
IdentificationString
Name
ObjectType
StartPoint
Visualized

Méthodes

AttachPathAndPropagateNotifications(IDTSOutput100, IDTSInput100)

S’applique à