IDTSName.CreationName Property
Returns the name that is used by the runtime to create an instance of the object and add it to its collection, if there is a collection for the object. This property is read-only.
Пространство имен: Microsoft.SqlServer.Dts.Runtime
Сборка: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)
Синтаксис
'Декларация
ReadOnly Property CreationName As String
string CreationName { get; }
property String^ CreationName {
String^ get ();
}
/** @property */
String get_CreationName ()
function get CreationName () : String
Значение свойства
A String that contains the name. The name may be the fully qualified assembly name (for managed assemblies), or it may be the PROGID or CLSID (for COM DLLs).
Пример
The IDTSName class is inherited by many classes, including the Package class, through the DtsContainer class and into the EventsProvider class, which from there, it is inherited into the Package class and most other classes. The following code sample shows the IDTSName properties as used by the Package class.
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
Sample Output:
CreationName: MSDTS.Package.1
Name: {8E2F8EC1-A6E8-4114-8760-0C1A72277B8C}
Description:
ID: {8E2F8EC1-A6E8-4114-8760-0C1A72277B8C}
Синхронизация потоков
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Платформы
Платформы разработки
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
Целевые платформы
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
См. также
Справочник
IDTSName Interface
IDTSName Members
Microsoft.SqlServer.Dts.Runtime Namespace