PipelineComponent.SetOutputProperty(Int32, String, Object) Method
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.
Important
This API is not CLS-compliant.
Sets the value of an IDTSCustomProperty100 on an IDTSOutput100 object.
public:
virtual Microsoft::SqlServer::Dts::Pipeline::Wrapper::IDTSCustomProperty100 ^ SetOutputProperty(int outputID, System::String ^ propertyName, System::Object ^ propertyValue);
[System.CLSCompliant(false)]
public virtual Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSCustomProperty100 SetOutputProperty (int outputID, string propertyName, object propertyValue);
[<System.CLSCompliant(false)>]
abstract member SetOutputProperty : int * string * obj -> Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSCustomProperty100
override this.SetOutputProperty : int * string * obj -> Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSCustomProperty100
Public Overridable Function SetOutputProperty (outputID As Integer, propertyName As String, propertyValue As Object) As IDTSCustomProperty100
Parameters
- outputID
- Int32
The ID of the IDTSOutput100 whose IDTSCustomProperty100 is set.
- propertyName
- String
The name of the IDTSCustomProperty100 to set.
- propertyValue
- Object
The value assigned to the IDTSCustomProperty100.
Returns
The IDTSCustomProperty100 object whose value was set.
- Attributes
Remarks
This method is called by the SSIS designer when the custom property is edited in the designer. Override this method to control or prevent modifications to a custom property of the output.