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

RemovedMemberInAssemblyAttribute.cs « Assertions « Mono.Linker.Tests.Cases.Expectations « Tests « linker - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3bcd63b9d5e7f793932be411a31916babb252bb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;

namespace Mono.Linker.Tests.Cases.Expectations.Assertions {
	[AttributeUsage (AttributeTargets.Class | AttributeTargets.Delegate, AllowMultiple = true, Inherited = false)]
	public class RemovedMemberInAssemblyAttribute : BaseExpectedLinkedBehaviorAttribute {
		public readonly string AssemblyFileName;
		public readonly Type Type;
		public readonly string [] MemberNames;

		public RemovedMemberInAssemblyAttribute (string assemblyFileName, Type type, params string [] memberNames)
		{
			AssemblyFileName = assemblyFileName;
			Type = type;
			MemberNames = memberNames;
		}
	}
}