Name プロパティ
オブジェクトに割り当てられた名前を取得します。値の設定も可能です。
名前空間: Microsoft.SqlServer.Dts.Runtime
アセンブリ: Microsoft.SqlServer.ManagedDTS (Microsoft.SqlServer.ManagedDTS.dll)
構文
'宣言
Property Name As String
Get
Set
'使用
Dim instance As IDTSName
Dim value As String
value = instance.Name
instance.Name = value
string Name { get; set; }
property String^ Name {
String^ get ();
void set (String^ value);
}
abstract Name : string with get, set
function get Name () : String
function set Name (value : String)
プロパティ値
型: System. . :: . .String
オブジェクトの名前を表す String です。
説明
この名前は、CreationName と異なる場合があります。IDTSName を継承する複数のランタイム オブジェクトでは、Name プロパティの値がグラフィカル ユーザー インターフェイスに表示されます。
使用例
IDTSName クラスは、Package クラスや、DtsContainer クラスを介した EventsProvider クラスなど、多数のクラスによって継承されます。さらにこれらのクラスを介して、Package クラスを含む他のほとんどのクラスに継承されます。次のコード サンプルは、Package クラスによって使用される IDTSName プロパティを示しています。
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: SSIS.Package.2
Name: {8E2F8EC1-A6E8-4114-8760-0C1A72277B8C}
Description:
ID: {8E2F8EC1-A6E8-4114-8760-0C1A72277B8C}