The AccessSpecificatorKind enumeration contains the list of access modifiers available in the Fore language.
It is used by the following properties and methods:
Value | Brief description |
0 | Private_. Construction is available only in within class/interface where it is declared. |
1 | Protected_. Construction is available inside class/interface and in all classes/interfaces derived from the current. |
2 | Public_. Construction is available in any place of the current code in all assembly units/forms and also in where the current assembly is connected by link. |
3 | Friend_. Construction is available in any code place of the current assembly. Constructions with the Friend modifier will be unavailable in external assemblies. |
4 | ProtectedFriend. Construction is available in the current assembly and also from the class/interface derived from the current, but located in another assembly. |
See also: