Właściwość IDTSName.ID
Zwraca unikatowy identyfikator przypisany do obiektu.Zazwyczaj jest identyfikatorem GUID.Ta właściwość jest tylko do odczytu.
Przestrzeń nazw: Microsoft.SqlServer.Dts.Runtime
Zestaw: Microsoft.SqlServer.ManagedDTS (w Microsoft.SqlServer.ManagedDTS.dll)
Składnia
'Deklaracja
ReadOnly Property ID As String
Get
'Użycie
Dim instance As IDTSName
Dim value As String
value = instance.ID
string ID { get; }
property String^ ID {
String^ get ();
}
abstract ID : string
function get ID () : String
Wartość właściwości
Typ: System.String
A ciąg zawiera unikatowy identyfikator zazwyczaj GUID.
Przykłady
IDTSName Klasy jest dziedziczona przez wiele klas, łącznie z Package klasy za pomocą DtsContainer klasy i do EventsProvider klasy, która stamtąd jest dziedziczona do Package klasy i większość innych klas.Następujący kod przykładowy pokazuje IDTSName Właściwości wykorzystywane przez Package klasy
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SqlServer.Dts.Runtime;
namespace Microsoft.SqlServer.SSIS.Samples
{
class Program
{
static void Main(string[] args)
{
Package pkg = new Package();
// Display the properties inherited from IDTSName.
Console.WriteLine("CreationName: {0}", pkg.CreationName);
Console.WriteLine("Name: {0}", pkg.Name);
Console.WriteLine("Description: {0}", pkg.Description);
Console.WriteLine("ID: {0}", pkg.ID);
}
}
}
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports Microsoft.SqlServer.Dts.Runtime
Namespace Microsoft.SqlServer.SSIS.Samples
Class Program
Shared Sub Main(ByVal args() As String)
Dim pkg As Package = New Package()
' Display the properties inherited from IDTSName.
Console.WriteLine("CreationName: {0}", pkg.CreationName)
Console.WriteLine("Name: {0}", pkg.Name)
Console.WriteLine("Description: {0}", pkg.Description)
Console.WriteLine("ID: {0}", pkg.ID)
End Sub
End Class
End Namespace
Przykładowe dane wyjściowe:
CreationName: SSIS.Package.2
Name: {8E2F8EC1-A6E8-4114-8760-0C1A72277B8C}
Description:
ID: {8E2F8EC1-A6E8-4114-8760-0C1A72277B8C}