TaskInfos.Item[Object] Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Récupère un TaskInfo dans la collection.
public:
property Microsoft::SqlServer::Dts::Runtime::TaskInfo ^ default[System::Object ^] { Microsoft::SqlServer::Dts::Runtime::TaskInfo ^ get(System::Object ^ index); };
public Microsoft.SqlServer.Dts.Runtime.TaskInfo this[object index] { get; }
member this.Item(obj) : Microsoft.SqlServer.Dts.Runtime.TaskInfo
Default Public ReadOnly Property Item(index As Object) As TaskInfo
Paramètres
Valeur de propriété
Objet TaskInfo.
Exemples
L’exemple de code suivant permet de récupérer un élément de la collection en utilisant deux méthodes. La première méthode utilise la tInfos[0] syntaxe pour récupérer l’objet entier situé à la première position de la collection et le placer dans l’objet tInfo . Vous pouvez désormais récupérer toutes les propriétés de l’objet tInfo comme d’habitude. La seconde méthode démontre comment récupérer une propriété spécifique à partir du premier objet de la collection.
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SqlServer.Dts.Runtime;
namespace TaskInfos_Item
{
class Program
{
static void Main(string[] args)
{
Application app = new Application();
TaskInfos tInfos = app.TaskInfos;
//Using the Item method syntax of [x], obtain the first
//entry.
TaskInfo tInfo = tInfos[0];
String nameOfFirstItem = tInfos[0].Name;
//This could also be done using the Name property, as
//demonstrated by this next line of commented code.
//TaskInfo tInfo = tInfos["Execute Package Task"];
//You can also use the ID property.
// TaskInfo tInfo = tInfos["{8FE4A9F8-D077-436B-9B00-C1EEAEFAFE55}"];
//Print the name of the task object located at position [0].
Console.WriteLine("The task ID of the first provider is: {0}", tInfo.ID);
Console.WriteLine("The Name of the first task is: {0}", nameOfFirstItem);
}
}
}
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports Microsoft.SqlServer.Dts.Runtime
Namespace TaskInfos_Item
Class Program
Shared Sub Main(ByVal args() As String)
Dim app As Application = New Application()
Dim tInfos As TaskInfos = app.TaskInfos
'Using the Item method syntax of [x], obtain the first
'entry.
Dim tInfo As TaskInfo = tInfos(0)
Dim nameOfFirstItem As String = tInfos(0).Name
'This could also be done using the Name property, as
'demonstrated by this next line of commented code.
'TaskInfo tInfo = tInfos["Execute Package Task"];
'You can also use the ID property.
' TaskInfo tInfo = tInfos["{8FE4A9F8-D077-436B-9B00-C1EEAEFAFE55}"];
'Print the name of the task object located at position [0].
Console.WriteLine("The task ID of the first provider is: {0}", tInfo.ID)
Console.WriteLine("The Name of the first task is: {0}", nameOfFirstItem)
End Sub
End Class
End Namespace
Exemple de sortie :
L’identifiant de tâche du premier fournisseur est : {8FE4A9F8-D077-436B-9B00-C1EEAEFAFE55}
Le nom de la première tâche est : Exécuter la tâche de package
Remarques
Si l’appel à la Contains méthode retourne true, vous pouvez accéder à l’élément spécifié dans la collection en utilisant la syntaxe TaskInfos[index]. Cependant, si l’appel à Contains la méthode retourne false, cette propriété lance une exception. En C#, cette propriété est l’indexeur de la TaskInfos classe.