Поделиться через


Variable.Properties Property

Returns a collection of DtsProperty objects. This property is read-only.

Пространство имен: Microsoft.SqlServer.Dts.Runtime
Сборка: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)

Синтаксис

'Декларация
Public ReadOnly Property Properties As DtsProperties
public DtsProperties Properties { get; }
public:
virtual property DtsProperties^ Properties {
    DtsProperties^ get () sealed;
}
/** @property */
public final DtsProperties get_Properties ()
public final function get Properties () : DtsProperties

Значение свойства

A DtsProperties collection.

Пример

The following example creates a package and adds a variable to the Variables collection. It then loops through the DtsProperties collection and displays the name of each property in the collection.

static void Main(string[] args)
            {
                Package p = new Package();
                Variable v = p.Variables.Add("x", false, "", 1);
                int vCount =  v.Properties.Count;
                Console.WriteLine("Number of properties in a variable = {0}", vCount);
                DtsProperties vProps = v.Properties;
                foreach (DtsProperty vProp in vProps)
                    Console.WriteLine(vProp.Name);
            }
Shared  Sub Main(ByVal args() As String)
                Dim p As Package =  New Package() 
                Dim v As Variable =  p.Variables.Add("x",False,"",1) 
                Dim vCount As Integer =  v.Properties.Count 
                Console.WriteLine("Number of properties in a variable = {0}", vCount)
                Dim vProps As DtsProperties =  v.Properties 
                Dim vProp As DtsProperty
                For Each vProp In vProps
                    Console.WriteLine(vProp.Name)
                Next
End Sub

Sample Output:

Number of properties in a variable = 12

CreationName

DataType

Description

EvaluateAsExpression

ID

Name

Namespace

QualifiedName

RaiseChangedEvent

ReadOnly

SystemVariable

Value

Синхронизация потоков

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.

См. также

Справочник

Variable Class
Variable Members
Microsoft.SqlServer.Dts.Runtime Namespace