TypeDeclGetAccessRights Method |
Get the IsPrivate access right for the specified usage, and if not private then also get the IsProtected and IsInternal rights.
Namespace:
Nova.CodeDOM
Assembly:
Nova.CodeDOM (in Nova.CodeDOM.dll) Version: 7.44.8391.13415
Syntax public void GetAccessRights(
bool isTargetOfAssignment,
out bool isPrivate,
out bool isProtected,
out bool isInternal
)
Parameters
- isTargetOfAssignment
- Type: SystemBoolean
Usage - true if the target of an assignment ('lvalue'), otherwise false. - isPrivate
- Type: SystemBoolean
True if the access is private. - isProtected
- Type: SystemBoolean
True if the access is protected. - isInternal
- Type: SystemBoolean
True if the access is internal.
Implements
IModifiersGetAccessRights(Boolean, Boolean, Boolean, Boolean)See Also