Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Annotations.cs « Linker « ref « linker « src - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4490ffbf4319c6a6f5c5a0ab49d132c41cfd1bc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System.Collections.Generic;
using Mono.Cecil;

namespace Mono.Linker
{

	public partial class AnnotationStore
	{
		internal AnnotationStore () { }

		public IEnumerable<OverrideInformation> GetOverrides (MethodDefinition method) { throw null; }

		public void Mark (IMetadataTokenProvider provider) { throw null; }
		public void Mark (CustomAttribute attribute) { throw null; }

		public bool IsMarked (IMetadataTokenProvider provider) { throw null; }
		public bool IsMarked (CustomAttribute attribute) { throw null; }

		public void AddPreservedMethod (MethodDefinition key, MethodDefinition method) { throw null; }
		public void AddPreservedMethod (TypeDefinition type, MethodDefinition method) { throw null; }
		public void SetPreserve (TypeDefinition type, TypePreserve preserve) { throw null; }

		public void SetAction (MethodDefinition method, MethodAction action) { throw null; }
		public void SetStubValue (MethodDefinition method, object value) { throw null; }

		public AssemblyAction GetAction (AssemblyDefinition assembly) { throw null; }
		public void SetAction (AssemblyDefinition assembly, AssemblyAction action) { throw null; }
		public bool HasAction (AssemblyDefinition assembly) { throw null; }

		public object GetCustomAnnotation (object key, IMetadataTokenProvider item) { throw null; }
		public void SetCustomAnnotation (object key, IMetadataTokenProvider item, object value) { throw null; }
	}
}