Variable.Properties Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a collection of DtsProperty objects. This property is read-only.
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
Property Value
A DtsProperties collection.
Implements
Examples
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