pipe class : Release() method

Description

Releases the unmanaged resources that are used in the pipe.

Syntax

pipeInstance.Release()

Arguments

None.

Return value

None.

Sample code

1:

pipe p = new pipe("newchannel"); // Channel open.

2:

... // Communication.

3:

p.Release(); // Channel close.

Notes

If calling the Release() method, the channel will be closed and the instance will return to uninitialized state.

Links for reference

None.

Copyright © Cooker All rights reserved.