Enum CsMethodType
Enumeration of the type of methods that are supported in C#.
Namespace: CodeFactory.DotNet.CSharp
Assembly: CodeFactory.DotNet.dll
Syntax
public enum CsMethodType
Fields
| Name | Description |
|---|---|
| Add | The method is a add method that adds subscription to a event. |
| Constructor | The method is a constructor for a supporting class or structure. |
| Destructor | The method is a destructor for a supporting class. |
| Get | The method supports the get functionality from a property. |
| Init | The method supports the init functionality from a property or an indexer. |
| Invoke | The method supports the Invoke functionality from a delegate. |
| Local | The method is a local method and imbedded in another method |
| Member | The method is a member of a supporting interface, class or structure. |
| PartialDefinition | This method is the definition for a partial method. |
| PartialImplementation | This method is the implementation for a partial method. |
| Raise | The method supports the raise functionality from an event. |
| Remove | The method is a remove method that removes subscription from an event. |
| Set | The method supports the set functionality from a property. |
| Unknown | The type of method is unknown |