6 references to Method
Microsoft.Analyzers.Local (6)
ApiLifecycle\ApiLifecycleAnalyzer.cs (1)
87
foreach (
var
method in assemblyAnalysis.MissingMethods.Where(x => x.Stage != Stage.Experimental))
ApiLifecycle\AssemblyAnalysis.cs (3)
19
public HashSet<
Method
> MissingMethods { get; } = [];
112
foreach (
var
method in type.Methods)
221
var
method = typeDef.Methods.FirstOrDefault(x => x.Member == methodSignature);
ApiLifecycle\Model\TypeDef.cs (2)
15
public
Method
[] Methods { get; }
27
Methods = value.GetValueArray<
Method
>(nameof(Methods));