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

When overriden in derived class gets a value indicating whether the ListWithEvents<(Of <(<'T>)>)> is read-only (always false).

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

Syntax

C#
public abstract bool IsReadOnly { get; }
Visual Basic
Public MustOverride ReadOnly Property IsReadOnly As Boolean
	Get
Visual C++
public:
virtual property bool IsReadOnly {
	bool get () abstract;
}
F#
abstract IsReadOnly : bool
JScript
abstract function get IsReadOnly () : boolean

Return Value

Always false because ListWithEvents<(Of <(<'T>)>)> is not read-only

Implements

IList..::..IsReadOnly

See Also