Linker.Steps\MarkStep.cs (7)
1969MarkMethodsIf(type.Methods, IsSpecialSerializationConstructor, new DependencyInfo(DependencyKind.SerializationMethodForType, type), origin);
1972MarkMethodsIf(type.Methods, HasOnSerializeOrDeserializeAttribute, new DependencyInfo(DependencyKind.SerializationMethodForType, type), origin);
2074MarkMethodsIf(property.OtherMethods, m => true, reason, origin);
2086MarkMethodsIf(@event.OtherMethods, m => true, reason, origin);
2343if (MarkMethodsIf(type.Methods, MethodDefinitionExtensions.IsPublicInstancePropertyMethod, new DependencyInfo(DependencyKind.ReferencedBySpecialAttribute, type), origin))
2801MarkMethodsIf(tdef.Methods, m => !m.IsStatic, reason, origin);
2877MarkMethodsIf(type.Methods, m => m.Name == ".ctor" || m.Name == "Invoke", new DependencyInfo(DependencyKind.MethodForSpecialType, type), origin);