uri class : Fitted getter
Description
Gets a value that indicates whether this instance was already initialized.
Syntax
uriInstance.Fitted
Arguments
None.
Return value
Class | Description |
bool | A value that indicates whether this instance was already initialized. |
Sample code
1: | uri u = new uri("http://www.example.com/aaa/bbb.html"); |
2: | bool init = u.Fitted; // true. |
1: | u = new uri(); |
2: | init = u.Fitted; // false. |
Notes
Instance that is created by declaration is still uninitialized.
Links for reference
None.