Class AccessorKind
Constrains the signature of a property accessor.
Inheritance
System.Object
AccessorKind
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Flame
Assembly: Flame.dll
Syntax
public abstract class AccessorKind
Fields
| Improve this Doc View SourceGet
The accessor kind for 'get' accessors.
Declaration
public static readonly AccessorKind Get
Field Value
Type | Description |
---|---|
AccessorKind |
Other
The accessor kind for 'other' accessors.
Declaration
public static readonly AccessorKind Other
Field Value
Type | Description |
---|---|
AccessorKind |
Set
The accessor kind for 'set' accessors.
Declaration
public static readonly AccessorKind Set
Field Value
Type | Description |
---|---|
AccessorKind |
Methods
| Improve this Doc View SourceIsLegalAccessor(IAccessor)
Checks if an accessor matches the constraints imposed by this accessor kind.
Declaration
public abstract bool IsLegalAccessor(IAccessor accessor)
Parameters
Type | Name | Description |
---|---|---|
IAccessor | accessor | The accessor to examine. |
Returns
Type | Description |
---|---|
System.Boolean |
|