DtsProperty Class
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.
Contains properties and methods used by several containers on their properties. This class cannot be inherited.
public ref class DtsProperty sealed : Microsoft::SqlServer::Dts::Runtime::DtsObject
public sealed class DtsProperty : Microsoft.SqlServer.Dts.Runtime.DtsObject
type DtsProperty = class
inherit DtsObject
Public NotInheritable Class DtsProperty
Inherits DtsObject
- Inheritance
Remarks
Several containers implement the IDTSPropertiesProvider interface. It provides the inheritors acess to Properties collection, which is a collection of the properties that the container has. It's useful to iterate over this Properties collection instead of accessing each property individually. The Properties collection returns a DtsProperties object, and each individual object in the collection is a DtsProperty object. Because the collection of DtsProperty objects is stored in a DtsProperties collection, you can iterate over the collection using the foreach
(For Each
in Microsoft Visual Basic) syntax or the PropertyEnumerator and view the properties that this class has.
Properties
ConnectionType |
Returns the name of the connection manager used to create the connection. This field is read-only. |
Get |
Returns a Boolean that indicates whether a property value can be read. This field is read-only. |
Name |
Returns the name of the property. This field is read-only. |
PropertyKind |
Gets the DTSPropertyKind enumeration that contains information about the custom attributes on a property. This information is used by the designer. |
Set |
Returns a Boolean that indicates whether the referenced object property is changeable. This field is read-only. |
Type |
Returns the data type of the parameter. This field is read-only. |
TypeConverter |
Returns the assembly-qualified type name of the type converter object for the property. |
UITypeEditor |
Returns the assembly-qualified type name of the graphical editor for the property. This type is read-only. |
Methods
Equals(Object) |
Determines whether two object instances are equal. (Inherited from DtsObject) |
GetExport(Object) |
Returns the export flag for the specified object. |
GetExpression(Object) |
Returns a String that contains the expression for the specified object. Null means no expression is assigned. |
GetHashCode() |
Returns the hash code for this instance. (Inherited from DtsObject) |
GetPackagePath(Object) |
Returns a String that contains the relative path to the location of the specified package. |
GetValue(Object) |
Returns the value of the property. |
SetExport(Object, Boolean) |
Sets the export flag for the specified object. |
SetExpression(Object, String) |
Assigns the specified expression to the object. Specify null to remove an existing expression from the property. |
SetValue(Object, Object) |
Sets the value of the property. |