This enumeration represents access mode of a configuration parameter.
| C# | Visual Basic | Managed C++ |
[FlagsAttribute] public enum ParameterAccess
<FlagsAttribute> _ Public Enumeration ParameterAccess
[FlagsAttribute] public enum class ParameterAccess
| Member | Description |
|---|---|
| None |
The value of the parameter is not accessible.
|
| Readable |
The value of the parameter can be read.
|
| Writable |
The value of the parameter can be modified.
|
| Unrestricted |
The value of the parameter can be read or modified.
|