Cilador.Fody.Core.WeaveContract.Weave C# (CSharp) Метод

Weave() публичный Метод

Contracts for IWeave.Weave
public Weave ( IWeavingContext weavingContext, Mono.Cecil.TypeDefinition target, CustomAttribute weaveAttribute ) : void
weavingContext IWeavingContext Context data for weaving.
target Mono.Cecil.TypeDefinition The type to which the weave will be applied/
weaveAttribute Mono.Cecil.CustomAttribute Attribute that may contain arguments for the weave invocation.
Результат void
        public void Weave(IWeavingContext weavingContext, TypeDefinition target, CustomAttribute weaveAttribute)
        {
            Contract.Requires(weavingContext != null);
            Contract.Requires(target != null);
            Contract.Requires(weaveAttribute != null);
            Contract.Requires(this.IsInitialized);

            throw new NotSupportedException();
        }
WeaveContract