Gets the element key for a specified configuration element when overridden in a derived class.

Namespace: SSIS.Test.Configuration
Assembly: SSIS.Test (in SSIS.Test.dll) Version: 3.0.0.236 (3.0.0.236)

Syntax

C#
protected override Object GetElementKey(
	ConfigurationElement element
)
Visual Basic
Protected Overrides Function GetElementKey ( _
	element As ConfigurationElement _
) As Object
Visual C++
protected:
virtual Object^ GetElementKey(
	ConfigurationElement^ element
) override

Parameters

element
Type: System.Configuration..::..ConfigurationElement
The ConfigurationElement to return the key for.

Return Value

An Object that acts as the key for the specified ConfigurationElement.

See Also