IDTSCustomProperty100.Value Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the object value of an IDTSCustomProperty100 object.

Namespace:   Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly:  Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)

Syntax

[DispIdAttribute(101)]
object Value {
    [DispIdAttribute(101)]
    get;
    [DispIdAttribute(101)]
    set;
}
[DispIdAttribute(101)]
property Object^ Value {
    [DispIdAttribute(101)]
    Object^ get();
    [DispIdAttribute(101)]
    void set(Object^ value);
}
[<DispIdAttribute(101)>]
abstract Value : Object with get, set
<DispIdAttribute(101)>
Property Value As Object

Property Value

Type: System.Object

The value of the IDTSCustomProperty100 object.

Remarks

Custom properties contain variants or objects that allow them to store object values for all types of objects. When retrieving the value of a custom property, the object is then cast to the expected type.

Note

The IDTSCustomProperty100 interface has limited support for property values of type Object. The only object that you can store as the value of a custom property is an array of simple types such as strings or integers.

See Also

IDTSCustomProperty100 Interface
Microsoft.SqlServer.Dts.Pipeline.Wrapper Namespace

Return to top