ExtendedProperties.Add(String, String, Object) Method

Definition

Adds a new, empty ExtendedProperty object to the end of the collection.

public:
 Microsoft::SqlServer::Dts::Runtime::ExtendedProperty ^ Add(System::String ^ name, System::String ^ nameSpace, System::Object ^ val);
public Microsoft.SqlServer.Dts.Runtime.ExtendedProperty Add (string name, string nameSpace, object val);
member this.Add : string * string * obj -> Microsoft.SqlServer.Dts.Runtime.ExtendedProperty
Public Function Add (name As String, nameSpace As String, val As Object) As ExtendedProperty

Parameters

name
String

The name of the extended property to add.

nameSpace
String

The namespace that the extended property belongs to.

val
Object

The value to assign to the extended property.

Returns

A new, empty ExtendedProperty object.

Applies to