IDTSName.CreationName 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回运行时用于创建对象实例的名称,如果存在该对象的集合,则将该对象添加到集合。 此属性为只读。
public:
property System::String ^ CreationName { System::String ^ get(); };
public string CreationName { get; }
member this.CreationName : string
Public ReadOnly Property CreationName As String
属性值
包含名称的字符串。 此名称可能是托管程序集的完全限定程序集名称,也可能是 COM DLL 的 PROGID 或 CLSID。
示例
该 IDTSName 类由许多类(包括 Package 类)继承,通过 DtsContainer 类和类继承到 EventsProvider 类中,从该类继承到 Package 类和其他大多数类中。 下面的代码示例显示 IDTSName 类使用 Package 的属性。
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
示例输出:
CreationName:MSDTS。Package.1
名称: {8E2F8EC1-A6E8-4114-8760-0C1A72277B8C}
说明:
ID: {8E2F8EC1-A6E8-4114-8760-0C1A72277B8C}