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

When overriden in derived class represents 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 abstract Object Owner { get; set; }
Visual Basic
Public MustOverride Property Owner As Object
	Get
	Set
Visual C++
public:
virtual property Object^ Owner {
	Object^ get () abstract;
	void set (Object^ value) abstract;
}
F#
abstract Owner : Object with get, set
JScript
abstract function get Owner () : Object
abstract 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