DtsProperty.PropertyKind 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
속성에 대한 사용자 지정 특성의 정보를 포함하는 DTSPropertyKind 열거형을 가져옵니다. 이 정보는 디자이너에서 사용됩니다.
public:
property Microsoft::SqlServer::Dts::Runtime::DTSPropertyKind PropertyKind { Microsoft::SqlServer::Dts::Runtime::DTSPropertyKind get(); };
public Microsoft.SqlServer.Dts.Runtime.DTSPropertyKind PropertyKind { get; }
member this.PropertyKind : Microsoft.SqlServer.Dts.Runtime.DTSPropertyKind
Public ReadOnly Property PropertyKind As DTSPropertyKind
속성 값
DTSPropertyKind 열거형입니다.
예제
이 개체는 개체를 DtsProperties 포함하여 Package 구현되는 다양한 개체의 각 속성에 대한 정보를 포함하는 컬렉션에서 사용됩니다. 아래 예제에서는 패키지에 대한 컬렉션을 반환 DtsProperties 한 다음 패키지 속성을 반복하여 여러 값을 PropertyKind표시합니다.
// other Using statements here...
using Microsoft.SqlServer.Dts.Runtime;
namespace DtsPropertiesTesting
{
class Program
{
static void Main(string[] args)
{
// The variable pkg points to the location
// of the ExecuteProcess package sample
// that is installed with the samples.
string packageFile = @"C:\Program Files\Microsoft SQL Server\100\Samples\Integration Services\Package Samples\ExecuteProcess Sample\ExecuteProcess\UsingExecuteProcess.dtsx";
Application application = new Application();
Package package = application.LoadPackage(packageFile, null);
// Retrieve the information from the Properties collection.
// Each item in the collection represents a property on the
// Package object.
DtsProperties properties = package.Properties;
String propertyName;
DTSPropertyKind propertyKind;
String packagePath;
TypeCode propertyType;
foreach (DtsProperty property in properties)
{
propertyType = property.Type;
propertyName = property.Name;
propertyKind = property.PropertyKind;
packagePath = property.GetPackagePath(package);
Console.WriteLine("Property Type: {0}, Property Name: {1}, Property Kind: {2}, Package Path: {3} ", propertyType, propertyName, propertyKind, packagePath);
}
}
}
}
' other Using statements here...
Imports Microsoft.SqlServer.Dts.Runtime
Namespace DtsPropertiesTesting
Class Program
Shared Sub Main(ByVal args() As String)
' The variable pkg points to the location
' of the ExecuteProcess package sample
' that is installed with the samples.
Dim packageFile As String = "C:\Program Files\Microsoft SQL Server\100\Samples\Integration Services\Package Samples\ExecuteProcess Sample\ExecuteProcess\UsingExecuteProcess.dtsx"
Dim application As Application = New Application()
Dim package As Package = application.LoadPackage(packageFile,Nothing)
' Retrieve the information from the Properties collection.
' Each item in the collection represents a property on the
' Package object.
Dim properties As DtsProperties = package.Properties
Dim propertyName As String
Dim propertyKind As DTSPropertyKind
Dim packagePath As String
Dim propertyType As TypeCode
Dim property As DtsProperty
For Each property In properties
propertyType = property.Type
propertyName = property.Name
propertyKind = property.PropertyKind
packagePath = property.GetPackagePath(package)
Console.WriteLine("Property Type: {0}, Property Name: {1}, Property Kind: {2}, Package Path: {3} ", propertyType, propertyName, propertyKind, packagePath)
Next
End Sub
End Class
End Namespace
샘플 출력:
Property Type Int64, name CertificateContext, Property Kind Other, Package path \Package.CertificateContext
Property Type Object, name CertificateObject, Property Kind Other, Package path \Package.CertificateObject
Property Type String, name CheckpointFileName, Property Kind Other, Package path \Package.CheckpointFileName
Property Type Object, name CheckpointUsage, Property Kind Other, Package path \Package.CheckpointUsage
Property Type Boolean, name CheckSignatureOnLoad, Property Kind Other, Package path \Package.CheckSignatureOnLoad
Property Type Object, name Configurations, Property Kind Other, Package path \Package.Configurations
Property Type Object, name Connections, Property Kind Other, Package path \Package.Connections
Property Type DateTime, name CreationDate, Property Kind Other, Package path \Package.CreationDate
Property Type String, name CreationName, Property Kind Other, Package path \Package.CreationName