Linker.Steps\MarkStep.cs (7)
1965MarkMethodsIf(type.Methods, IsSpecialSerializationConstructor, new DependencyInfo(DependencyKind.SerializationMethodForType, type), origin);
1968MarkMethodsIf(type.Methods, HasOnSerializeOrDeserializeAttribute, new DependencyInfo(DependencyKind.SerializationMethodForType, type), origin);
2053MarkMethodsIf(property.OtherMethods, m => true, reason, origin);
2065MarkMethodsIf(@event.OtherMethods, m => true, reason, origin);
2332if (MarkMethodsIf(type.Methods, MethodDefinitionExtensions.IsPublicInstancePropertyMethod, new DependencyInfo(DependencyKind.ReferencedBySpecialAttribute, type), origin))
2790MarkMethodsIf(tdef.Methods, m => !m.IsStatic, reason, origin);
2866MarkMethodsIf(type.Methods, m => m.Name == ".ctor" || m.Name == "Invoke", new DependencyInfo(DependencyKind.MethodForSpecialType, type), origin);