Specifies a view as read-only.

Namespace:  C1.LiveLinq
Assembly:  C1.LiveLinq (in C1.LiveLinq.dll)

Syntax

C#
public static View<T> AsNonUpdatable<T>(
	this View<T> view
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function AsNonUpdatable(Of T) ( _
	view As View(Of T) _
) As View(Of T)

Parameters

view
Type: C1.LiveLinq.LiveViews..::..View<(Of <(<'T>)>)>
The view to specify as read-only.

Type Parameters

T
The type of the elements in the view.

Return Value

The same view.

See Also