Mono.Cecil.TypeDefinitionProjection.TypeDefinitionProjection C# (CSharp) 메소드

TypeDefinitionProjection() 공개 메소드

public TypeDefinitionProjection ( Mono.Cecil.TypeDefinition type, TypeDefinitionTreatment treatment, Collection redirectedMethods, InterfaceImplementation>.Collection redirectedInterfaces ) : System
type Mono.Cecil.TypeDefinition
treatment TypeDefinitionTreatment
redirectedMethods Collection
redirectedInterfaces InterfaceImplementation>.Collection
리턴 System
        public TypeDefinitionProjection(TypeDefinition type, TypeDefinitionTreatment treatment, Collection<MethodDefinition> redirectedMethods, Collection<KeyValuePair<InterfaceImplementation, InterfaceImplementation>> redirectedInterfaces)
        {
            Attributes = type.Attributes;
            Name = type.Name;
            Treatment = treatment;
            RedirectedMethods = redirectedMethods;
            RedirectedInterfaces = redirectedInterfaces;
        }
TypeDefinitionProjection