pipeclient class : Fitted getter
Description
Gets a value that indicates whether this instance was already initialized.
Syntax
pipeclientInstance.Fitted
Arguments
None
Return value
| Class | Description |
| bool | A value that indicates whether this instance was already initialized. |
Sample code
| 1: | pipeclient pClient; |
| 2: | bool init = pClient.Fitted; // false. |
| 3: | pClient = new pipeclient(); |
| 4: | init = pClient.Fitted; // false. |
| 5: | pClient = new pipeclient("newchannel"); |
| 6: | init = pClient.Fitted; // true. |
Notes
Instance that is created by declaration is still uninitialized.
Links for reference
None.


