Custom Property CollectionItem(String) Property
Collection indexer
Definition
Namespace: EWSoftware.PDI.Properties
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
C#
public CustomProperty? this[
string propertyName
] { get; set; }VB
Public Default Property Item (
propertyName As String
) As CustomProperty
Get
SetC++
public:
property CustomProperty^ default[String^ propertyName] {
CustomProperty^ get (String^ propertyName);
void set (String^ propertyName, CustomProperty^ value);
}F#
member Item : CustomProperty with get, setParameters
- propertyName String
- The name of the item to get or set. When retrieving an item, null is returned if it does not exist in the collection.
Property Value
CustomPropertyRemarks
The property name is case-insensitive
Exceptions
| ArgumentException | This is thrown if an attempt is made to set an item using a name that does not exist in the collection. |