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

GetInterfaceType() public method

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