[This is preliminary documentation and is subject to change.]

Gets object identified by handle

Namespace: Tools.TotalCommanderT
Assembly: Tools.TotalCommander (in Tools.TotalCommander.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
[EditorBrowsableAttribute(EditorBrowsableState.Advanced)]
protected Object HandleGet(
	int handle
)
Visual Basic
<EditorBrowsableAttribute(EditorBrowsableState.Advanced)> _
Protected Function HandleGet ( _
	handle As Integer _
) As Object
Visual C++
[EditorBrowsableAttribute(EditorBrowsableState::Advanced)]
protected:
Object^ HandleGet(
	int handle
)
F#
[<EditorBrowsableAttribute(EditorBrowsableState.Advanced)>]
member HandleGet : 
        handle:int -> Object 
JScript
protected function HandleGet(
	handle : int
) : Object

Parameters

handle
Type: System..::..Int32
Handle to get object for

Return Value

The object stored in HandleDictionary under key handle; null where handle is nod defined.

Remarks

In case you store null objects in HandleDictionary this function returns null either when handle is invalid or objects stored under the handle is null. So, do not store null objects in .

Thread Safety

This function is tread-safe

See Also