MemberAccessKind Enum
Specifies the kind of a member access.
public enum MemberAccessKind
Fields
Name | Description |
---|---|
BaseType | The member is on the current instance's base type, and overridden/shadowed members in derived classes are ignored.
In C#: |
Default | The standard type of access. When used on VB's XML elements, this also indicates element access. |
Dictionary | Dictionary. In VB: |
Global | Accesses the root global namespace. In VB: |
NullConditional | A null-conditional check is made on the target expression, and if it passes, a standard type of access is used. |
PointerDereference | Pointer dereference (C# only). |
ThisType | The member is on the current instance's type, and overridden/shadowed members in derived classes are ignored.
In VB: |
XmlAttribute | XML attribute access. In VB: |
XmlDescendant | XML descendant access. In VB: |