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

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

namespace Mono.Linker.Tests.Cases.Expectations.Assertions
{
	[AttributeUsage (AttributeTargets.Class | AttributeTargets.Delegate | AttributeTargets.Enum, AllowMultiple = false, Inherited = false)]
	public sealed class KeptBaseTypeAttribute : KeptAttribute
	{
		public KeptBaseTypeAttribute (Type baseType)
		{
			if (baseType == null)
				throw new ArgumentNullException (nameof (baseType));
		}

		public KeptBaseTypeAttribute (Type baseType, params object[] typeArguments)
		{
			if (baseType == null)
				throw new ArgumentNullException (nameof (baseType));
			if (typeArguments == null)
				throw new ArgumentNullException (nameof (typeArguments));
		}
	}
}