Sequence.Properties Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Возвращает коллекцию объектов DtsProperty, которая содержит свойства, связанные с контейнером последовательности.
public:
property Microsoft::SqlServer::Dts::Runtime::DtsProperties ^ Properties { Microsoft::SqlServer::Dts::Runtime::DtsProperties ^ get(); };
public Microsoft.SqlServer.Dts.Runtime.DtsProperties Properties { get; }
member this.Properties : Microsoft.SqlServer.Dts.Runtime.DtsProperties
Public ReadOnly Property Properties As DtsProperties
Значение свойства
Коллекция DtsProperties.
Реализации
Примеры
В следующем примере кода создается Sequence объект, а затем извлекается Properties коллекция, итерация и отображение имен и типов свойств, найденных в коллекции.
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 package = new Package();
Sequence seq = (Sequence)package.Executables.Add("STOCK:SEQUENCE");
DtsProperties seqProps = seq.Properties;
foreach (DtsProperty pc in seqProps)
{
Console.WriteLine("Name: {0}, Property Kind {1}", pc.Name, pc.PropertyKind);
}
}
}
}
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 package As Package = New Package()
Dim seq As Sequence = CType(package.Executables.Add("STOCK:SEQUENCE"), Sequence)
Dim seqProps As DtsProperties = seq.Properties
Dim pc As DtsProperty
For Each pc In seqProps
Console.WriteLine("Name: {0}, Property Kind {1}", pc.Name, pc.PropertyKind)
Next
End Sub
End Class
End Namespace
Образец вывода:
Имя: CreationName, Свойство Kind Other
Имя: DelayValidation, тип свойства Other
Имя: Description, Property Kind Other
Имя: Disable, Property Kind Other
Имя: DisableEventHandlers, Свойство Kind Other
Имя: EventHandlers, тип свойства Other
Имя: EventInfos, тип свойства Other
Имя: исполняемые файлы, тип свойств другого типа
Имя: ExecutionDuration, тип свойства Other
Имя: ExecutionResult, тип свойства Other
Имя: ExecutionStatus, тип свойства Other
Имя: FailPackageOnFailure, тип свойства Other
Имя: FailParentOnFailure, Свойство Kind Other
Имя: ForcedExecutionValue, Тип свойства Other
Имя: ForceExecutionResult, тип свойства Other
Имя: ForceExecutionValue, Свойство Kind Other
Имя: id, property kind other
Name: IsDefaultLocaleID, Property Kind Other
Имя: IsolationLevel, тип свойства Other
Имя: LocaleID, тип свойства Other
Имя: LogEntryInfos, Тип свойства Other
Имя: LoggingMode, тип свойства Other
Имя: LoggingOptions, тип свойства Other
Имя: MaximumErrorCount, тип свойства Other
Имя: Name, Property Kind Other
Имя: Parent, Property Kind Other
Имя: PrecedenceConstraints, Свойство Kind Other
Имя: StartTime, Тип свойства Other
Имя: StopTime, Тип свойства Other
Имя: TransactionOption, тип свойства Other
Имя: VariableDispenser, тип свойства Other
Имя: переменные, тип свойства Другое