Click or drag to resize

ConnectionLink Method

Adds a 'link' reference.

Namespace:  Demo3D.Net
Assembly:  Demo3D.IO (in Demo3D.IO.dll) Version: 15.0.2.11458
Syntax
C#
public void Link(
	Object owner
)

Parameters

owner
Type: SystemObject
The owner of the reference.
Remarks
Connections are designed not to require IDispose. You can Close your connection and let your reference float away, and then on the next Reset (which calls Close(ConnectionIRegistry, CloseFlags, Protocol)) any orphaned Connections are cleared out of the cache. Use Link and Unlink if you want to manage the lifetime of your Connection. A Connection with Links won't be closed on Reset.
See Also