| File: Symbols\MethodKind.cs | Web Access |
| Project: src\roslyn\src\Compilers\Core\Portable\Microsoft.CodeAnalysis.csproj (Microsoft.CodeAnalysis) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using Microsoft.CodeAnalysis.Text; namespace Microsoft.CodeAnalysis { /// <summary> /// Enumeration for possible kinds of method symbols. /// </summary> public enum MethodKind { /// <summary> /// An anonymous method or lambda expression /// </summary> AnonymousFunction = 0, /// <summary> /// <inheritdoc cref="AnonymousFunction"/> /// </summary> LambdaMethod = 0, // VB term /// <summary> /// Method is a constructor. /// </summary> Constructor = 1, /// <summary> /// Method is a conversion. /// </summary> Conversion = 2, /// <summary> /// Method is a delegate invoke. /// </summary> DelegateInvoke = 3, /// <summary> /// Method is a destructor. /// </summary> Destructor = 4, /// <summary> /// Method is an event add. /// </summary> EventAdd = 5, /// <summary> /// Method is an event raise. /// </summary> EventRaise = 6, /// <summary> /// Method is an event remove. /// </summary> EventRemove = 7, /// <summary> /// Method is an explicit interface implementation. /// </summary> ExplicitInterfaceImplementation = 8, /// <summary> /// Method is an operator. /// </summary> UserDefinedOperator = 9, /// <summary> /// Method is an ordinary method. /// </summary> Ordinary = 10, /// <summary> /// Method is a property get. /// </summary> PropertyGet = 11, /// <summary> /// Method is a property set. /// </summary> PropertySet = 12, /// <summary> /// An extension method with the "this" parameter removed. /// </summary> ReducedExtension = 13, /// <summary> /// Method is a static constructor. /// </summary> StaticConstructor = 14, /// <summary> /// <inheritdoc cref="StaticConstructor"/> /// </summary> SharedConstructor = 14, // VB Term /// <summary> /// A built-in operator. /// </summary> BuiltinOperator = 15, /// <summary> /// Declare Sub or Function. /// </summary> DeclareMethod = 16, /// <summary> /// Method is declared inside of another method. /// </summary> LocalFunction = 17, /// <summary> /// Method represents the signature of a function pointer type. /// </summary> FunctionPointerSignature = 18, } }