Mono.Cecil.TypeDefinitionProjection.TypeDefinitionProjection C# (CSharp) Method

TypeDefinitionProjection() public method

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
return 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