8 types derived from TypeSpecification
AssemblyStripper (8)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\ArrayType.cs (1)
35 internal sealed class ArrayType : TypeSpecification {
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\FunctionPointerType.cs (1)
34 internal sealed class FunctionPointerType : TypeSpecification, IMethodSignature {
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\GenericInstanceType.cs (1)
34 internal sealed class GenericInstanceType : TypeSpecification, IGenericInstance {
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\Modifiers.cs (1)
31 internal abstract class ModType : TypeSpecification {
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\PinnedType.cs (1)
31 internal sealed class PinnedType : TypeSpecification {
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\PointerType.cs (1)
31 internal sealed class PointerType : TypeSpecification {
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\ReferenceType.cs (1)
31 internal sealed class ReferenceType : TypeSpecification {
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\SentinelType.cs (1)
31 internal sealed class SentinelType : TypeSpecification {
17 references to TypeSpecification
AssemblyStripper (17)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\DefaultImporter.cs (5)
69 TypeSpecification GetTypeSpec (TypeSpecification original, ImportContext context) 71 TypeSpecification typeSpec; 147 if (t is TypeSpecification) 148 return GetTypeSpec (t as TypeSpecification, context);
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\MetadataResolver.cs (6)
178 static bool AreSame (TypeSpecification a, TypeSpecification b) 214 if (a is TypeSpecification || b is TypeSpecification) { 218 return AreSame ((TypeSpecification) a, (TypeSpecification) b);
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\ReflectionWriter.cs (6)
176 return type is TypeSpecification || type is GenericParameter; 1152 } else if (type is TypeSpecification) { 1153 return GetSigType ((type as TypeSpecification).ElementType); 1265 TypeSpecification ts = type as TypeSpecification; 1269 ts = ts.ElementType as TypeSpecification;