HandleCodes class

HandleCodes class

Handles codes

The HandleCodes type exposes the following members:

Constructors

ConstructorDescription
initInitializes a new instance of the HandleCodes class.

Properties

PropertyDescription
soft_ownership_referenceSoft ownership reference: the owner does not need the owned object. The owned object
cannot exist by itself. Code - 2
hard_ownership_referenceHard ownership reference: the owner needs the owned object. The owned object cannot exist
by itself. Code - 3
soft_pointer_referenceSoft pointer reference: the referencing object does not need the referenced object and vice
versa. Code - 4
hard_pointer_referenceHard pointer reference: the referencing object needs the referenced object, but both are
owned by another object. Code - 5
handle_plus_one_referenceThe handle plus one reference. Code - 6
handle_minus_one_referenceThe handle minus one reference. Code - 8
handle_plus_offset_referenceThe handle plus offset reference. Code - 10 (0xA)
handle_minus_offset_referenceThe handle minus offset reference. Code - 12 (0xC)

See Also