Cilador.Fody.Config.InterfaceMixinMapType.GetMixinType C# (CSharp) Method

GetMixinType() public method

Gets the mixin implementation type.
public GetMixinType ( IWeavingContext weavingContext ) : Mono.Cecil.TypeDefinition
weavingContext IWeavingContext Context to use for resolving the type.
return Mono.Cecil.TypeDefinition
        public TypeDefinition GetMixinType(IWeavingContext weavingContext)
        {
            Contract.Requires(weavingContext != null);
            return weavingContext.GetTypeDefinition(this.Mixin);
        }