Ownership enumeration

Indicates whether an object takes ownership of an item.

public enum Ownership

Values

name value description
None 0 The object does not own this item.
Owns 1 The object owns this item, and is responsible for releasing it.

See Also