Click or drag to resize
ConnectionIsOpen Property

Gets the state of the OIV.RemoteViz.Rendering.Connection: open or closed.

Namespace: OIV.RemoteViz.Rendering
Assembly: OIV.RemoteViz (in OIV.RemoteViz.dll) Version: 2024.1.0.0 (2024.1.0)
Syntax
public bool IsOpen { get; }

Return Value

Type: Boolean

true if the connection is open or false if the connection is closed.

Remarks

RemoteViz does not keep a reference to the OIV.RemoteViz.Rendering.Connection object after the connection is closed. If the application kept a reference to the object, this method can be used to query its state. If the application did not keep a reference, then the OIV.RemoteViz.Rendering.Connection object will be disposed after the connection is closed.

The state "closed" will be set just before triggering the listener OIV.RemoteViz.Rendering.RenderAreaListener.OnClosedConnection(OIV.RemoteViz.Rendering.RenderArea, System.String, System.Boolean).

See Also