[This is preliminary documentation and is subject to change.]

Custom property wher owner of the list can be stored to provide bi-directional reference

Namespace: Tools.CollectionsT.GenericT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public override sealed Object Owner { get; set; }
Visual Basic
Public Overrides NotOverridable Property Owner As Object
	Get
	Set
Visual C++
public:
virtual property Object^ Owner {
	Object^ get () override sealed;
	void set (Object^ value) override sealed;
}
F#
abstract Owner : Object with get, set
override Owner : Object with get, set
JScript
override final function get Owner () : Object
override final function set Owner (value : Object)

Remarks

Change of this property is reported through Changed.

This property is here for convenience, ListWithEvents<(Of <(<'T>)>)> does not utilize it.

Change of this property is reported via PropertyChanged and Changed.

See Also